Using rsh within shell script unable to run CONCSUB utility.

I am writing a shell script which will connect to the application server from my DB server.
I am using RSH for the same and it is working. Now I want to submit Active Users Request using CONCSUB but
I am not finding correct syntax for the same.
I am able to execute adstpall.sh using the below combination of commands:
rsh <server> ". <SCRIPT_LOCATION>/adstpall.sh apps/paswd" > /usr/admin/scripts/my_direc
Similarly I want to execute CONCSUB but I am not finding the exact syntax for its execution from rsh.
Thank you very much.

Hi,
Thank for the note IDs. But the issue is I am trying to connect to my application server from the DB server using RSH.
After connecting I am starting the application services using adstrtal.sh and post which I intend to do sanity check
by submitting Active Users from backend using CONCSUB utility.
I am getting the below message when trying to do so:
CONCSUB APPS/****** SYSADMIN "System Administrator" SYSADMIN WAIT=Y CONCURRENT FND FNDSCURS PROGRAM_NAME='"Active Users"'
++ CONCSUB APPS/******* SYSADMIN 'System Administrator' SYSADMIN WAIT=Y CONCURRENT FND FNDSCURS 'PROGRAM_NAME="Active Users"'
/oracle/admin/scripts/U_D/abc123/CONCSUB.sh: line 3: CONCSUB: command not found
I am able to execute CONCSUB within a shell script on my application server though (just placing the CONCSUB command within a file and executing it).
CONCSUB APPS/******* SYSADMIN "System Administrator" SYSADMIN WAIT=Y CONCURRENT FND FNDSCURS PROGRAM_NAME='"Active Users"'
+ CONCSUB APPS/******* SYSADMIN 'System Administrator' SYSADMIN WAIT=Y CONCURRENT FND FNDSCURS 'PROGRAM_NAME="Active Users"'
Submitted request 11897805 for CONCURRENT FND FNDSCURS PROGRAM_NAME="Active Users"
Normal completion
========
Please guide.
Thanks,
Farheen Rasul.

Similar Messages

  • Schedule workbook using with Unix shell script

    Hi,
    Can we schedule workbook using with Unix shell script?
    Thanks,
    Jay

    I can't imagine how.
    1. You can schedule Disco workbooks via Disco itself.
    2. You can schedule Disco workbooks to run and output in different file formats automatically via batch scheduler in Windows running Disco Desktop directly (or can user VBasic).
    3. You can schedule Disco workbooks to run and output in different file formats automatically via a Java program running the Java Command Line interface.
    Moving forward, Oracle has announced that with a further interfacing of Disco with XML Publisher, you'll be able to use Oracle Apps concurrent manager and scheduling. But that's coming supposedly at the end of this year.
    And I think that's about it.
    Russ

  • Intermittent "Power Shell Script failed to run" after installing SQL MP 6.5.4.0

    We recently installed the SQL MP.  One thing I am struggling with is this "Power Shell Script failed to run" that occasionally comes up, but, not always on the same server, and not always at the same time. 
    It says it ran past the configured timeout of 300 seconds. 
    The post that seemed to have me on the right track was
    https://social.technet.microsoft.com/Forums/en-US/c539a55d-dd48-438f-b7d5-06ed2cecf6e9/powershell-script-failed-to-run-alerts-from-sql-management-pack-6410?forum=operationsmanagergeneral
    However, even after getting one of the several scripts that have been generating the error, out of the extract management pack, it has parameters that need to be fed to it that I have no idea what they are....
    Example.  ActiveRequestsDataSource.ps1 requires $computername, $connectionstring, $tcpport, $sql_wmi_namespace, and $servicename. 
    The computername is easy enough...  so is tcpport.  but, the others... not so much. 
    I am fairly certain I will be able to run these manually, if I just knew the parameters...  I am also fairly certain we are getting these because at the time of the check, resources on that server are tied up for one reason or another. 
    Can someone please help?  This is killing me. 

    Hi,
    As this issue happens after you installing SQL MP, so from my point of view, it seems like caused by the runas account for the SQL MP is not configured well, I would like to suggest you follow the article below to configure runas account for the management
    pack:
    Configuring Run As Accounts and Profiles in OpsMgr – A SQL Management Pack Example
    http://blogs.technet.com/b/kevinholman/archive/2010/09/08/configuring-run-as-accounts-and-profiles-in-r2-a-sql-management-pack-example.aspx
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Tracking cpu used by a shell script

    Hi,
    We are on oracle 10.2.0.3 on solaris 8. I want to find how much cpu is used by a shell script. The script is having inside it a command to take full database export and create a log file that records when the activity started and ended also also sets up a few variables like sid oracle home etc. how can i find how much cpu is used by this script?
    here is the script I have (after changing a few actual parameters)
    +!/usr/bin/ksh+
    export LOGFILE=db1_fullexport.log
    export MAIL_LOG=/oracle/tmp/exp_mail.log
    export ORACLE_HOME=/u01
    export ORACLE_SID=db1
    export NLS_LANG=AMERICAN_AMERICA.US7ASCII
    export EXP_DIR=/d01
    export DMP_DIR=/d01
    echo "" > $MAIL_LOG
    echo " ********** `date` LOGICAL BACKUP Log for $ORACLE_SID ON `hostname` *********** " > $MAIL_LOG
    echo "" > $LOGFILE
    echo "`date` Starting full export of $ORACLE_SID on `hostname`." >> $LOGFILE
    echo "" >> $LOGFILE
    echo "starting following is the PID of this script" >> $LOGFILE
    echo $$ >> $LOGFILE
    +$ORACLE_HOME/bin/exp dbauser/dbapwd full=y direct=y rows=n file=$DMP_DIR/db1_fullexp.dmp statistics=none log=$DMP_DIR/db1_fullexp.log >> $LOGFILE+
    retstat=$?
    echo "Export Return Status : $retstat " >> $MAIL_LOG
    +if  [ $retstat == 0 ]+
    then
    echo "For `date` on `hostname` and $ORACLE_SID database the logical backups are completed successfully." >> $MAIL_LOG
    else
    echo "Logical backups for `date` on `hostname` and $ORACLE_SID encountered some problems. Check!!!!!" >> $MAIL_LOG
    fi
    I can find the pid of the script but based on it how to find how much cpu it takes?
    Thanks

    Hi,
    how can i find how much cpu is used by this script?I use a vmstat script. The vmstat utility show both user and system CPU and you can snap it at one scond intervals:
    http://www.dba-oracle.com/t_oracle_unix_linux_vmstat_capture.htm
    I have a book by Oracle Press, The Oracle UNIX adminustratun handbook" that you may find useful, and there is aslo a good book "Oracle Shell scripting" that has working examples in the code depot . . .
    Inside Oracle, you can measure historical CPU, but this will not help your immediate goal . . .
    http://www.dba-oracle.com/t_viewing_cpu_ram_io_costs.htm
    Hope this helps . . .
    Donald K. Burleson
    Oracle Press author
    Author of "Oracle Tuning: The Definitive Reference"
    http://www.rampant-books.com/book_2005_1_awr_proactive_tuning.htm

  • Using a UNIX shell script to run a Java program (packaged in a JAR)

    Hi,
    I have an application (very small) that connects to our database. It needs to run in our UNIX environment so I've been working on a shell script to set the class path and call the JAR file. I'm not making a lot of progress on my own. I've attached the KSH (korn shell script) file code.
    Thanks in advance to anyone who knows how to set the class path and / or call the JAR file.
    loggedinuser="$(whoami)"
    CFG_DIR="`dirname $0`"
    EXIT_STATUS=${SUCCESS}
    export PATH=/opt/java1.3/bin:$PATH
    OLDDIR="`pwd`"
    cd $PLCS_ROOT_DIR
    java -classpath $
    EXIT_STATUS=$?
    cd $OLDDIR
    echo $EXIT_STATUS
    exit $EXIT_STATUS

    Hi,
    I have an application (very small) that connects to
    our database. It needs to run in our UNIX environment
    so I've been working on a shell script to set the
    class path and call the JAR file.
    #!/bin/sh
    exec /your/path/to/java -cp your:class:paths:here -MoreJvmOptionsHere your.package.and.YourClass "$@"Store this is a file of any name, e.g. yuckiduck, and then change the persmissions to executechmod a+x yuckiduckThe exec makes sure the shell used to run the script does not hang around until that java program finishes. While this is only a minor thing, it is nevertheless infinite waste, because it does use some resources but the return on that investment is 0.
    CFG_DIR="`dirname $0`"You would like to fetch the directory of the installation out of $0. This breaks as soon as someone makes a (soft) link in some other directory to this script and calls it by its soft linked name. Your best bet if you don't know a lot of script programming is to hardcode CFG_DIR.
    OLDDIR="`pwd`"
    cd $PLCS_ROOT_DIRVery bad technique in UNIX. UNIX supports the notion of a "current directory". If your user calls this program in a certain directory, you should assume that (s)he does this on purpose. Making your application dependent on a start in a certain directory ignores the very helpful concept of 'current directory' and is therefore a bug.
    cd $OLDDIRThis has no effect at all because it only affects the next two lines of code and nothing else. These two lines, however, don't depend on the current directory. In particular this (as the cd above) does not change the current directory for the interactive shell your user is working in.
    echo $EXIT_STATUS
    exit $EXIT_STATUSEchoing the exit status is an interesting idea, but if you don't do this for a very specific purpose, I recommend not to do this for the simple reason that no other UNIX program does it.
    Harald.

  • Securely deploying and using credentials within a script (not running the script under the credentials)

    Here is my scenario - I have SCOM 2007 R2 and on certain agents I want to execute a script. One of the actions of that script is to access a secured web page using a username and password via integrated authentication (IE pop-up for auth).
    The username and password that I need to use are unrelated to the Windows domain that the servers run in, meaning you can think of the website as if it were a public site (it isn't, but it has no security sharing with the domain where the agents run - no trust,
    no nothing).
    I can easily accomplish this by hard-coding the username and password within the script (powershell), however, I don't want to do this for security reasons. Here's a rough example of the relevant code:
    $targetURL = "https://somehost.somewhere.something/filename.zip"
    $path = "c:\downloads\filname.zip"
    $wclient = New-Object System.Net.WebClient
    $wclient.Credentials = New-Object System.Net.Networkcredential($uname, $pword)
    $wclient.DownloadFile( $url, $path )
    What I want is a way to pass the $uname and $pword variables to this script securely, with the script running on a schedule under SCOM. The SCOM agents run as localsystem and need to remain that way.
    I currently use Run-As accounts and profiles for other functions where the entire script runs under the run-as profile, but I can't figure out how to extract the username and passwords, and doubt it's even possible.
    To be clear, I cannot run the script under the given credentials as a Run-As account as those credentials are not known to the local server. I need to somehow pass the credentials to the script (other than hardcoding) or extract them from the run-as accounts.
    I've looked at the get-runasaccount cmdlet and can see some of the info there, but don't see a way to re-use, pass-through, or extract the password for use in my scenario.
    Any guidance? Can I get there from here?

    Hi, check this
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/ebfc706d-93be-4ca0-83e0-33d9e072fb97/powershell-script-monitor-with-encrypted-password?forum=operationsmanagerauthoring
    But you should not specify runas account for your workflow, just reference Runas Username and Password from Profile and use simple authentication. (The same way as in article above)
    So in the end your script will be executed by default action account but you'll pass username and password securely to your script.

  • Unix shell script should execute (run) webI report.

    Hi
    i am new to BO.
    I have webI reports developed, can any one tell me how  to execute a webI reprot using unix sheel script.

    Hello Vijaya,
    Thatu2019s an interesting question.  BusinessObjects does not supply any native UNIX shell interfaces or scripts for running/executing Webi Reports. Not knowing what it is you are exactly trying to accomplish Iu2019ll give a very general answer.
    I have had several customers who had requirements to have external systems execute, refresh and export reports in BusinessObjects Enterprise before.  These external systems could execute a shell script so what they have ended up doing is creating generic Java applications that use the BusinessObjects BOE Java SDK. Once they had the Java application created their external application could execute a java directory or they created shell wrappers that were called.  So what you could do is create some Java applications that wrap the functionally you need and then execute those from the command line.
    With that said there is a lot of functionally built into BusinessObjects Enterprise.  If I was to know exactly what you were trying to achieve I might be able to point you in the direction of an existing product feature.
    Cheers,
    David.

  • Automator shell script won't run

    Hi,
    I'm putting together a little Automator app that opens whenever I double-click on an .exe file and opens that file with wine. So far, however, I've had little luck. I've created a shell script automator app with the following script:
    for f in "$@"
    do
              /usr/local/bin/wine "$f" &
    done
    Outside of Automator the script works just fine. However, as an Automator app it doesn't work at all; nothing happens, even though Automator tells me that that the workflow was successfully completely. What am I doing wrong?
    Thanks,
    Alex

    Automator uses /bin/bash as the shell.
    Running your script interactive has a different environment from running under Automator.  For one thing, stdin/stdout/stderr are pointing to a tty (actually a pseudo device /dev/pty).  Perhaps this is affecting how Wine us behaving.
    Other issues might be where your current working directory is located, or some environment variable (such as PATH) that is not the same under Automator that exists when running interactively.
    You might try capturing things like
    ( printenv
      pwd
      id -a
      echo "\$# $#"
    ) >/tmp/automator.environment

  • Return codes using rsh (remote shell) on Solaris

    I am executing a Unix script which does a remote shell call (via rsh) to another script on a remote machine (I am actually executing this from a Java app). The remote script sends a return code when run locally, however, how can I get the calling rsh script to get that return code?
    If I do the following in the rsh script:
    rsh -l resdev morph "/dev/bin/remote_script"
    rc=$?
    echo "$rc\n"
    then the return code that I get is not actually the return code from the remote_scrpit, but it is the return code from the rsh command that is 0 (success) because the rsh command actually executed successfully even though the remote_script could've returned something other than success. How can I get the return code from the remote_script passed back to the rsh calling script? I need to ensure that remote_script executed successfully.
    Jan Miller
    [email protected]
    202-237-9584

    Hi,
    If you have control over the remote script then put as the last line :-
    echo "Run OK" >&2
    On calling Script (or Java Process):
    rsh -l resdev morph "/dev/bin/remote_script" 2> rc.file
    (or pipe stderr to your java process call).
    Check the stderr data='Run OK' to see if successful.

  • Ls -l does not show files unless used in a shell script

    Our backup script is generating files called BACKUP.01.04.05 (the 01.04.05 is a generated date). Well the files do not show up when using ls-l at the command line, except for the ones generated in 2000 (e.g. BACKUP.00.01.01). But if I put echo|ls -l in a script then the files do show up in the listing. We are running solaris 2.7. Any ideas? Thanks!

    Hi there,
    The behavior you described sure does not seem to make much sense.
    Is it possible if the 'ls' in your command line is aliased to
    something which might explain the behavior?
    Also, echo|ls -l should not make a difference, I don't think ls takes
    any input from the pipe. I assume that the 'ls' you run from the
    shell script is different than the one you run from your command
    line. The 'which ls' command will show if your ls is aliased.
    Hope this helps.
    Hae
    Sun Technical Developer Support

  • Shell script intermittently not running [AwesomeWM]

    Hi all!
    I'm trying to get my Logitech G13 running on login but intermittently having issues with it.  Most of the time, I'd say maybe 80%, it works however sometimes I believe the shell script to apply permissions does not properly execute.
    I created shell script g13permission  inside /home/milk/startup/ then added /home/milk/startup/ to my ~/.bash_profile
    the script is simply:
    #! /bin/bash
    #Set permissions for G13
    sudo chmod a+rw /dev/uinput
    I then ran
    chmod 755 g13permission
    from inside the startup folder
    I'm using AwesomeWM, so to handle it on boot I added the following to my rc.lua:
    awful.util.spawn_with_shell("g13permission")
    awful.util.spawn_with_shell("g13d")
    awful.util.spawn_with_shell("cat default.bind > /tmp/g13-0")
    So like I said, maybe 80% of the time when I log in it properly executes everything and my G13 shows the linux inside logo and all buttons work
    but then the other 20% of the time my G13 LCD will change colors but not show the logo or respond to button presses, which is also what happens if I, rather than auto starting with awesome, run everything through terminal without first chmod'ing /dev/uinput
    Any help would be appreciated
    Last edited by milkman (2015-04-28 17:30:46)

    Thanks for the reply, I've updated my OP with proper code tags.
    The g13 is a gaming keyboard https://wiki.archlinux.org/index.php/Logitech_G13
    I'm attempting to use the 'g13' outlined section
    I will look into udev rules, thanks again.

  • Using an external shell script rather than a main class

    I've just started to use Creator and I'm like to replace the "Run" function with a call to a shell script. The projects are all libraries (no main class) so the shell script will copy the jar to a another location and perform some other tasks such as starting/stopping services.
    I've tried uncommenting the target tag example in the build.xml file but that had no effect.
    Any ideas?

    I've just started to use Creator and I'm like to replace the "Run" function with a call to a shell script. The projects are all libraries (no main class) so the shell script will copy the jar to a another location and perform some other tasks such as starting/stopping services.
    I've tried uncommenting the target tag example in the build.xml file but that had no effect.
    Any ideas?

  • Shell scripts do not run anymore; problems after 10.7.3?

    Hello all,
    latley all my shell scripts broke and they do  not run anymore. I suspect 10.7.3 to broke all the scripts. My scripts  used to work fine and I had no issues. I guess it started after  updateing to 10.7.3 and now I got a error as following:
    -bash: ./CamSendEmail.sh: /bin/bash: bad interpreter: Operation not permitted
    This is usually as the first line in my script is and ever was #!/bin/bash. If I do just remove the line, I am getting an error as following:
    -bash: ./CamSendEmail.sh: Operation not permitted
    Please  note, that the scripts name is "CamSendEmail.sh" and that this is just  an example. All my scripts are affected. At this point I need to say  again, that the scripts work basicly fine till a short time ago.
    Of  cause, the user who runs the scripts has the permission to run the  script. It is a standard user and it ever was. I did not touch the  scripts nor their permissions. The only change I am aware of is updating  to 10.7.3.
    I did a test and cut'n'pasted the  entire content of a not running script into a blank new file. The new  file did work! The only differences between those 2 files are now some  file system permission, I do actually not know yet:
    -rwxr--r--+ 1 james  staff  265 Feb 13 19:50 CamSendEmail.sh
    -rwxr--r--@ 1 james  staff  265 Feb 13 19:40 CamSendEmail.sh.orig
    Note, that *orig does not work, while *sh does. I could not find an information about the meaning of a + and the @ in the output of ls -al. But whatever it is, I wonder how this can be influenced by 10.7.3 ...(?) Can anyone shade a little light on that?
    I  will keep on searching for information about + an @, but since this is  somehow urgent to me, I decided to first start this posting ...
    Thx for your help on that!

    I did some research and learned the the + and the @ are indicating extented attributes which can be managed using the xattr command. I played a little bit with it, and found out that my scripts had the following extended attribute for some reason
    com.apple.quarantine
    I deleted it using xattr -d com.apple.quarantine script.sh and the script worked again. This is one point.
    What still drives me nuts, is the fact that this attribute was set without any interaction of me. Does anyone know if Apple has build in some new security stuff with 10.7.3? Or is this just accidential and some other action, which I am not aware of, has changed or added the extended attributes?
    I realy would like to have that clarified. My scripts are part of an automated process and it took some days till I noted that this process does not work anymore, which resulted in data loss. I was happy that those days data was not very important. Now I am afraid that this may happen again any time :-(
    Thx again!

  • Using mail in Shell script

    Hey guys,
    I am writing a shell script to parse some data and create a csv file when done.  I want to be able to email the csv file when the script is done.  I cannot seem to figure out how to do this. I am running Mountain Lion and I have tried mail -s,  mailx at the command line in Terminal and in the script and when I go check my gmail account there is no email there.  Its not in the spam folders or the junk folder.  Any help would be appreciated

    Thank you for your reply earlier. Sorry I know that it was an applescript.  I had a suggestion to send it via applescript:  Here is the script that I wrote: It will send an email but the problem is that it fails right now cause the attachment is not working correctly. 
    -- Variables
    set recipientName to "SomeOne"
    set recipientAddress to "[email protected]"
    set theSubject to "CSV File"
    set theContent to "Here is your CSV file created from your website"
    set fileName to "HD:Users:markperryman:GinaApp:gina_20120801.csv"
    -- Mail Tell Block
    tell application "Mail"
        --Create the message
        set theMessage to make new outgoing message with properties {subject:theSubject, content:theContent, visible:true}
        -- Set a recipient
        tell theMessage
            make new to recipient with properties {name:recipientName, address:recipientAddress}
            tell content
                make new attachment with properties {name:fileName as alias} at after the last paragraph
            end tell
            -- Send the Message
            send
        end tell
    end tell
    and here is the error I get now:
    error "Mail got an error: Can’t make {name:alias \"HD:Users:someone:GinaApp:gina_20120801.csv\"} into type properties of attachment." number -1700 from {name:alias "HD:Users:markperryman:GinaApp:gina_20120801.csv"}
    any ideas.  Im at a loss right now.
    I have a shell script written that does most of my process.  Now I just want to write an applescript that can be called by the shell and send the email with the attachment.  So Im not sure what Im doing wrong.  As always any help would be appreciated.
    Thanks

  • Power Shell Script failed to run - GetMGAlertsCount.ps1

    Our SCOM 2012 R2 is getting the following script error every 45 minutes...
    The PowerShell script failed with below exception
    System.Management.Automation.PropertyNotFoundException: The property 'Name' cannot be found on this object. Verify that the property exists.At line:57 char:3
    + $firstLvlClass = Get-SCOMClass -Id $firstLvlMember.Name
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    at CallSite.Target(Closure , CallSite , Object )
    at System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0)
    at CallSite.Target(Closure , CallSite , Object )
    at System.Management.Automation.Interpreter.DynamicInstruction`2.Run(InterpretedFrame frame)
    at System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame frame)
    at System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame frame)
    Script Name: GetMGAlertsCount.ps1
    One or more workflows were affected by this.
    Workflow name: ManagementGroupCollectionAlertsCountRule
    Instance name: All Management Servers Resource Pool
    Instance ID: {4932D8F0-C8E2-2F4B-288E-3ED98A340B9F}
    Management group: NCA2
    On the management server seeing corresponding 22406 errors
    System
    Provider
    [ Name]
    Health Service Modules
    EventID
    22406
    [ Qualifiers]
    49152
    Level
    2
    Task
    0
    Keywords
    0x80000000000000
    TimeCreated
    [ SystemTime]
    2015-04-21T18:44:03.000000000Z
    EventRecordID
    1303964
    Channel
    Operations Manager
    Computer
    PKSWSM001.ad.nca.com
    Security
    EventData
    NCA2
    ManagementGroupCollectionAlertsCountRule
    All Management Servers Resource Pool
    {4932D8F0-C8E2-2F4B-288E-3ED98A340B9F}
    GetMGAlertsCount.ps1
    300
    System.Management.Automation.PropertyNotFoundException: The property 'Name' cannot be found on this object. Verify that the property exists.At line:57 char:3 + $firstLvlClass = Get-SCOMClass -Id $firstLvlMember.Name
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at CallSite.Target(Closure , CallSite , Object ) at System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0) at CallSite.Target(Closure , CallSite , Object ) at System.Management.Automation.Interpreter.DynamicInstruction`2.Run(InterpretedFrame
    frame) at System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame frame) at System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame frame)
    System.Management.Automation.PropertyNotFoundException
    I'm at a bit of a loss to troubleshoot this error.  I cannot find the "GetMGAlertsCount.ps1"  script to execute manually and don't have much else I can find to troubleshoot.
    Thanks for your help!

    1) Please check Event Log on the management server and see if there are any related errors.
    Nothing
    interesting found
    2) On the management server, please ensure the following key exists:
    HKLM:\SOFTWARE\Microsoft\System Center Operations Manager\12\Setup\Powershell\V2
    Two entries found underneath this key;
    (Default) (value not set)
    InstallDirectory C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Powershell\
    3) Action Account has access to the resources used by the PowerShell script.
    is LocalSystem
    4) Make sure that the computer is not over utilized.
    No indication of overutilization
    Thank you for the suggestions!  Do you know of anything else to check?

Maybe you are looking for