Custom cmdlet questions

Hi,
I was looking at a ps1 file someone else wrote. It contains what looks like a custom cmdlet - 'Restart-AXAOS'.
This is to restart a microsoft dynamics service. The question is, how is this defined and created in the first place. I cannot find a reference to it. There is the main ps1 file and a config file but it is in neither. Has someone created this as an assembly
and registered it on this server? How is the functionality if this cmdlet defined?
Thanks a lot.

Hi Damon,
this cmdlet is part of the DynamicAxCommunity Powershell Module (here an
Introduction). Either the module is imported somewhere in the script using Import-Module, or it's used in Powershell 3+ where Modules are loaded automatically as required.
If the script is working that means it's installed somewhere on the executing computer, I'd recommend checking the Module folders ($env:PSModulePath will show you where).
If it's a script-module, you can simply read the function in your favorite script editor. If it's a compiled module, you'll need a library inspector, such as ILSpy, to read just what it's doing.
Cheers,
Fred
There's no place like 127.0.0.1

Similar Messages

  • Oim 11g Custom Challenge questions

    hi,
    does oim 11g allows users to setup custom challenge questions.
    Sun Idm does have this feature..
    any idea on Oracle Idm..
    thank you.

    How to add custom challenge questions in OIM 11g
    Find below link for 11gR2
    http://srini-bellamkonda.blogspot.in/2012/11/adding-custom-challenge-questions-in.html

  • Adding custom challenge questions in OIM 11gR2

    Friends,
    Can you please let me know the process to add new custom challenge questions in OIM 11gR2?
    Thanks

    Detailed steps have been given in my blog at the below url.
    http://srini-bellamkonda.blogspot.com/2012/11/adding-custom-challenge-questions-in.html
    Have a look and let me know if you have any questions.

  • Custom challenge questions in OIM 11gR2

    Hi,
    Please let me know how to add custom challenge questions in OIM 11gR2?

    Follow the steps given in blog to add custom challenge questions.
    http://srini-bellamkonda.blogspot.com/2012/11/adding-custom-challenge-questions-in.html

  • Problem while setting custom Challenge Questions in 11gR2

    Hi all,
    I am trying to add some custom Challenge Questions in 11gr2 but it is throwing error . For this first i added questions in Look up and then in customResources_en.properties and then i restarted OIM server.
    when a user is logging for the first time he has to set his challenge question there i am getting error like:
    JBO-29000: Unexpected exception caught: oracle.iam.ui.platform.exception.OIMRuntimeException, msg=JBO-29000: Unexpected exception caught: java.util.MissingResourceException, msg=Can't find resource for bundle java.util.PropertyResourceBundle, key KEY_WHATTHEHELL
    JBO-29000: Unexpected exception caught: java.util.MissingResourceException, msg=Can't find resource for bundle java.util.PropertyResourceBundle, key KEY_WHATTHEHELL
    Localized message not available. Error returned is: Can't find resource for bundle java.util.PropertyResourceBundle, key KEY_WHATTHEHELL
    Here My custom challenge question is:WHATTHEHELL.
    Its an urgent requirement, so reply ASAP.
    Thanks In Advance.

    If you are going for Localizing Challenge Questions and Responses
    http://docs.oracle.com/cd/E27559_01/admin.1112/e27149/app_localizing.htm#OMADM5054

  • Custom login question

    C:\Program Files\Microsoft SQL Server\MSRS12.MSSQLSERVER\Reporting Services\ReportManager
    C:\Program Files\Microsoft SQL Server\MSRS12.MSSQLSERVER\Reporting Services\ReportServer
    Which of these two folder contains the web.config that must be modified when adding custom login/ forms authentication?
    When and how is the AuthCookie used?  Do I need to add any info to the ssrs auth cookie?
    scott

    Hi scott_m,
    According to your description, you want to add a custom login form authentication and use AuthCookie. Right?
    In Reporting Services, if we want to add custom login form, we need to modify the web.config in ReportServer folder. For the modification in configure files and usage of authcookie, please refer to the links below:
    http://www.codeproject.com/Articles/675943/SSRS-Forms-Authentication
    http://msdn.microsoft.com/en-us/library/ms345241.aspx
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Custom initramfs questions

    Hi, I have been playing around with initramfs and created my own (very, very basic) to learn more about how it works. I am using GRUB 2 and the MSI Wind U100 laptop.
    I have a few questions I haven't been able to found the answer to yet, maybe you could help?
    1. When I pass a wrong pathname to the GRUB 2 initrd line, I get a kernel panic as the file cannot be loaded, which is Ok. But, I can't reboot the computer with the CTRL+ALT+DEL key combination. Is this because the keyboard driver hasn't been loaded by anybody yet? The only thing that works is to power off the computer the hard way with the power button. I guess it works because it is a hardware switch and no driver is necessary?
    2. It seems I must use the 'initrd /boot/initramfs.cpio.gz' GRUB 2 line. But, the https://www.kernel.org/doc/Documentatio … meters.txt site mentions the kernel 'initrd' parameter. When I remove theGRUB line and use the kernel param to point to my ramfs, though, I get a kernel panic. It seems the only way to make it work is to use GRUB 2 to instruct the kernel where the ramfs is. How does this really work?
    3. When my ramfs looks like this:
    bin/busybox
    lib/ld-linux.so.2
    usr/lib/libc.so.6
    init
    and the init code is:
    #!/bin/busybox sh
    exec /bin/busybox sh
    it can actually boot and here is what I get:
    can't access tty; job control turned off
    What does need to be done to have job control? I think the same message is displayed in Arch's rescue shell, I think I've seen it.
    4. I can now see the shell and the command prompt, but I cannot type anything. Is the reason the same as in #1, i.e. no drivers loaded yet?
    Regards.
    Last edited by wujek.srujek (2014-10-01 09:28:54)

    Hi. Thanks for your comment. I read the page you linked and a few others, and I'm getting closer, I think.
    I was able to add the keyboard to early userspace by either adding the 'atkbd' module and its deps, or the 'keyboard' hook. However, I can't make it work in my custom initramfs.
    Here is the contents:
    $ find -type f | sort
    ./bin/busybox
    ./bin/find
    ./bin/kmod
    ./bin/mount
    ./init
    ./lib/ld-linux.so.2
    ./lib/modules/3.16.3-1-ARCH/kernel/atkbd.ko
    ./lib/modules/3.16.3-1-ARCH/kernel/i8042.ko
    ./lib/modules/3.16.3-1-ARCH/kernel/libps2.ko
    ./lib/modules/3.16.3-1-ARCH/kernel/serio.ko
    ./usr/lib/libblkid.so.1
    ./usr/lib/libc.so.6
    ./usr/lib/libm.so.6
    ./usr/lib/libmount.so.1
    ./usr/lib/libuuid.so.1
    ./usr/lib/libz.so.1
    and here is my /init:
    #!/bin/busybox sh
    echo Creating links
    /bin/busybox --install -s /bin
    ln -s /bin/kmod /bin/modprobe
    ln -s /bin/kmod /bin/lsmod
    echo Mounting /proc
    mkdir /proc
    mount -t proc dummy_proc /proc
    echo Mounting /sys
    mkdir /sys
    mount -t sysfs dummy_sys /sys
    echo Mounting /dev
    mkdir /dev
    mount -t devtmpfs dummy_dev /dev
    echo Loading modules
    modprobe serio
    modprobe libps2
    modprobe atkbd
    modprobe i8042
    lsmod
    exec sh
    As you can see, I'm packaging very little and creating all the links to busybox and directories at runtime, in the scrip (is this Ok?).
    The /proc, /dev/ and /sys mounts are populated.
    The script actually executes without error, but the lsmod command near the end results only in the lsmod column headers (i.e. not module has been loaded). But I don't get any error etc.
    Could you give me a pointer what is missing?

  • SampleSales.RPD Customer Dimension Questions

    Hello, I am trying to figure out how SampleSale.rpd was built. I am stepping through data element from the physical layer all the way to the presentation layer and am confused about the following:
    Question for "Sample Sales" section
    - When i expand "H1 Customer Dimension", i see "Total" level and a number of revenue / qty members listed under it. I trace them back to physical layer fact columns and i also see them present in the presentation layer fact section. However, how can i get this attribute (which looks like a fact attribute) to show up under "h1 customer --> Total" level? I see the formula to for each but i am confused how to get this into inside the dimension.
    Any help is greatly appreciated.
    Regards,

    You leave them in place in the Logical Fact.
    What you see at the dimension levels are just UI "pointers" to the Logical Fact columns, you can set level based measures manually in the content tab of that measure if you dont fancy dragging (or scrolling) up to the dimension levels themselves.
    P.s Suggest you use a splitter in the fact table, just like Sample Sales to make it easy on the eye. Typical splits might be :
    -----Measures------
    a
    b
    c
    ---- Time Based----
    a MAGO,
    a YAGO,
    b MAGO,
    b YAGO
    ---- Level Based----
    a (Year)
    a (Channel)
    etc etc.
    --- Derived----
    Profit %
    Profit £
    You can then choose to expose the splitte in the presentation catalog, or use nested Fact tables with appropriate names (see "nesting presentation tables")
    Hope this helps !

  • OIM 11g R2 Custom Challenge Questions

    What is the process in R2 to add new challenge questions
    I have added the new questions to lookup 'Lookup.WebCLient.Questions' and to the adfCommonModel BUndles but it is throwing errors when I access the User Information page.

    Hi,
    The main points are descrobed here.
    http://docs.oracle.com/cd/E27559_01/admin.1112/e27149/app_localizing.htm#CHDJDHCF
    Basically you need to locate the resource-bundle file in this WAR (ear) file:
    OIM_HOME/server/apps/oracle.iam.ui.model.ear
    (unpack it, add your custom questions, and then re-deploy the WAR)
    I know, it's not pretty..
    Regards,
    Henrik

  • OIM 11g R2 PS1 - custom challenge question by user

    Hello.. we have a requirement to let end user create their own challenge question? OOTB I don't see any option to let users enter thier own password challenge question during the time of challenge question registration.
    While I was going through the OIM documentation I came across this property PCQ.USE_DEF_QUES for which the documentations says:
    http://docs.oracle.com/cd/E21764_01/doc.1111/e14308/system_props.htm
    For customers who have customized their UI to allow end-users to set their own challenge questions, this property determines whether the user must select challenge questions from a predefined list in the Web Application, or if users are required to provide their own questions.
    Note: Functionality that allows end-users to set their own challenge questions is not supported in the standard out-of-the-box user interface.
    Any ideas or suggestions on how or where to do the customization for this requirement?

    Check the for duplicacy in OBJ_KEY column of the process defination. If duplicate values exit then set them to 'null'  and commit. Restart OIM if required

  • Customer Agreement question

    I am pasting here a section from the Customer Agreement (in quotes) that I want to know if I'm reading right.  Is this really saying that Verizon expects us to read the terms of service and privacy policy of every website (use of a third party service) that we visit?  Does this really belong in a customer agreement?
    "Many services and applications offered through your device may be provided by third parties. Before you use, link to or download a service or application provided by a third party, you should review the terms of such service or application and applicable privacy policy."

    Maybe I can explain my question better by providing what I think it actually should say (if they have to clutter up the customer agreement at all, that is):  "Many services and applications offered through your device may be provided by third parties.  You are advised to read the applicable third party terms of service, license agreements, and/or privacy policies before using, linking to, or downloading each service or application."

  • Customer master - questions on pricing

    Hi,
    Within the customer master's "Sales Area Data", under the "Sales" tab, there is this "Price List" under the "Pricing/Statistics" section.
    Questions.
    1. How is this price list used for this customer?
    2. How do we create a new price list so that it can be listed here?
    3. Where/what transaction codes can we use to see the existing price list being maintained?
    Thanks

    1. you can define price list types by customer groups (wholesale, retail, and so on) and by currency (price lists for each foreign country you deal with).
    2. You can define price list categories in IMG-BF-Pricing-Maintain price relevant master data fields-Define price list categories for customers.
    Once you define here, you can assign to a customer.
    3. You can display/change/create price lists in transaction VK31 and from prices group select price list.

  • Custom Extension questions

    Hi all,
    I'm working on my first Configurator extension, and I'be got a couple of questions.
    1. I'm following the demonstration from this site http://apps2fusion.com/at/pb/292-oracle-configurator to build and deploy a sample CZ extension. I've got the code compiling in JDeveloper, and I am logged into EBS and on the Configurator Develop page where I'm trying to create a Configurator Extension Archive. While trying to upload the class (in a ZIP file following proper package structure) I get an error message stating "This file type is not allowed. Please choose another file". I've tried as both a .ZIP file and a .JAR file. Can anyone offer some ideas on what might be causing this problem?
    2. The reason for my custom extension is this requirement:
    Several fields in the Configurator UI should be defaulted to specific values based upon the Ship To address of the order line item.
    I've been researching Configurator Extensions, but none of the examples or scenarios described seem to talk about how to do something along these lines. Has anyone done anything similar and be willing to give me some pointers on the best way to accomplish this?
    For reference, this is in an 12.1.3 EBS instance and I'm writing the code in JDeveloper 11.1.2.2.0.
    Thanks,
    -Mike

    Mike,
    1.
    Are you able to open the JAR file using winzip or any other zip utility? If not, then its not correctly formatted. You should build Jar using jdeveloper's Project Deployment settings and then you will not have any issue. Search google/oracle site for this if you don't know its details.
    2.
    For your requirement, I think CX guide and CZ methodologies guide will help you.
    Thanks,
    Pankaj

  • Report based on custom Query - Question about Data Source

    Hello,
    I am trying to create Crystal reports (EBO R3.1, Oracle 11g Database, CR2008) based on custom queries. Tried using different kinds of Data Sources but getting stuck once I export them to Infoview.
    1. Using Oracle Server: This method works fine on my local & Infoview. But since I have lot of reports, I do not want the DB username/password associated to the report. I neither want BO to prompt username/pwd to my user.
    2. Using ODBC(RDO):
    Again, works fine on my local. Once I export to Infoview, it fails with this error: "Failed to open the connection"
    Which makes sense, because the DSN is created on my local machine and not on the server.
    How and what do I create on the server, so that the reports run?
    I do not know if using ODBC(RDO) is even the right way for creating custom SQL reports.
    I have been reading about Business Views, but not clear on how good they work.
    My goal is to create multiple reports, using custom SQL queries which use some kind of connection to the database that can be managed on the
    server in one place, and used by multiple reports.
    Can any of you please help me here
    Thanks,
    Sowmya.
    Edited by: SBat22 on Apr 13, 2011 5:58 PM

    Thanks for moving it to the right forum!!
    But, if I setup in CMC, a default username/password that the report needs....what would happen if my password changes?
    I would need to go to each and every report and update the password.
    I am looking for using one common "connection" for multiple reports. So that, when passwords change, all I update is in one central location.
    Can anyone please help!
    Thanks,
    Sowmya.

  • Creative cloud existing customer offer question

    Hey there,
    Just wondering, if I subscribe to creative cloud using the existing customer discount offer, will I still be able to use my existing CS5, or will that serial number no longer be valid?
    Thanks!
    Ian

    Hi Ian,
    You would be able to access your CS5 even you purchase creative cloud discounted offer.
    It will be valid and your new creative cloud susbcription will not effect your CS5 product or its serial number.
    Let me know if you need more info.
    Thanks!
    Eshant

Maybe you are looking for