Wait for command prompt - Enter-PSSession

Enter-PSSession -ComputerName ServerName
Restart-Service DNS -PassThru
Exit-PSSession
I am trying to restart the DNS Server service on several remote machines using a foreach loop.  The problem is the the script does not wait until the command prompt shows up after executing the "Enter-PSSession -ComputerName ServerName". 
I have not been able to fine a way to tell the script to wait for the prompt before continuing the script.   Thank you for any assistance that can be provided.

You can use
Invoke-Command rather than entering a PS-Session.
Something like this may do what you need:
$servers = @("Server1.fqdn.example.com","Server2.fqdn.example.com","Server3.fqdn.example.com")
$scriptblock = "Restart-Service DNS"
foreach ($server in $servers) {
Invoke-Command -ScriptBlock $scriptblock -ComputerName $server
Replace the server names in $servers with your actual server names. This assumes of course you have PSRemoting enabled which you would need for the PSSessions.
Jason Warren
@jaspnwarren
jasonwarren.ca
habaneroconsulting.com/Insights

Similar Messages

  • Issue with KeyEvent for Command Prompt

    Using below code, when Event keys like “F7” are executed on the application to test while running from openscript it works fine.
    Whereas if the same script is executed using command line as below, then “F7” is executed for command prompt itself instead of application to test. 
    “C:\OracleATS\openScript\runScript.bat \\10.184.82.45\SharedRepository\Mysharedscript\Mysharedscript.jwg -delayPercentage 1”
    Code =>
    ft.typeKeyCode(KeyEvent.VK_F7);

    Try using
    ft.keyDown(KeyEvent.VK_F7)
    ft.keyUp(KeyEvent.VK_F7)

  • My iPhone is stuck in restore mode - waiting for iPhone prompt... help!

    My iPhone randomly crashed, and when I plug it in it says "device in recovery mode, restore and update." So I do, but then it extracts software of the phone and goes to a "waiting for iPhone" prompt for hours. Can someone please help me....

    Double click home button to show recently opened apps bar, slide to right, unlock portrait orientation lock on left.

  • Replacement for command prompt

    Hai all,
    I would like to create a replacement for dos command prompt so that all outputs(System.out ) is redirected to this window and all input (System.in) is recieved form this window. I would like to have your suggestions and helps for this.
    Thanks,
    joe

    Replacing System.in, System.err (don't forget that one) and System.out is relatively easy (see java.lang.System) - methods are provided for implementing these. Simply implement your own java.io.InputStream and java.io.PrintStream - these take and get bytes/chars/Strings from your UI component. The UI component will probably have to be a custom widget where you can have full control of it (either that or use a text area for the PrintStream(s) and a text box to feed the InputStream. Note that Java will have problems shelling batch files and legacy text mode applications (e.g. MS-DOS Edit); if you plan to do this, concentrate here first (even with the current console).

  • Bash: Don't wait for command to exit

    I asked this question in an earlier post but it was in the wrong section, my post was...
    How would I script the following commands below?
    WAM$ nc 127.0.0.1 4271
    STREAM #KeyboardInput
    PORT 2043 #Result of typing STREAM , would like to PORT="2043" as variable
    ^C #Exit KeyBoardInput
    WAM$
    In between these two posts, I came up with a partial solution such as
    PORT=`echo 'STREAM' | nc 127.0.0.1 4271 | awk '{print $2}'`
    but this command never exits so...
    How do I exit this comand once I have the PORT variable set?

    Do you have a process listening to port 4271 on your system?
    You might need to arrange for nc to be interrupted after some short time. Maybe
    (echo STREAM | nc 127.0.0.1 4271 & sleep 10 && kill %1) | awk...

  • Leopard slow after entering username/password, waiting for what?

    Hello,
    Leopards Server seems to be stuck or waiting for something after entering the username and password, the letters are in gray and leopards seems to do nothing for a minute or more, then it continues to wake up.
    I am installing this machine today, It is a new and fresh installation, 7gb ram, 3tb hard disks, raid stripped.
    any idea bout why every time that after entering the correct username-password leopard waits for a minute to continue booting?
    thanks a lot

    Thanks,
    when I set the DHCP in the basic configuration of Leopard Server, Leopard inserted a 127.0.0.1 before the address I entered. Now I moved the 127.0.0.1 after the other address and it works now.
    thanks a lot

  • Issue with Enter-PSSession when running from the shell and via script

    Hello
    Can someone please help me with the following issue
    If I open the PowerShell console and do the following
    Enter-PSSession -computername Server1
    "This is a test" > C:\Log.txt
    Exit-PSSession
    It works e.g. the Log.txt file is create as expected on Server1
    However if I put the exact same command in a script and execute the script.
    ./TestScript.ps1
    The Log.txt file is created on my Client (e.g. PC) and not the Server1
    I also tried using $Session = New-PSSession -ComputerName Server1 etc.....
    then Enter-PSSession -Session $Session
    I also tried Enter-PSSession etc....
    Start-Sleep -seconds 60
    "This is a test" > C:\Log.txt
    Exit-PSSession
    Again no luck when running from shell all OK, then executing as a script (again from the command line) files is created on client
    Any ideas why this is happening please and how to resolve, I am using PowerShell v4 on the client and PowerShell v2 on the Server
    Thanks
    AAnotherUser__
    AAnotherUser__

    No, the command is explicitly designed for interactive use, not within a script. If you see
    http://technet.microsoft.com/en-us/library/hh849707.aspx you'll even see it clearly state that it "Starts an interactive session with a remote computer".
    There are quite a few threads elsewhere on the same subject, all of which say the same thing, for instance
    http://powershell.com/cs/blogs/tips/archive/2010/11/15/enter-pssession-do-s-and-don-ts.aspx and
    http://powershell.org/wp/forums/topic/running-multiple-remote-commands-with-enter-pssession/ and
    http://blogs.technet.com/b/heyscriptingguy/archive/2009/10/29/hey-scripting-guy-october-29-2009.aspx and
    http://social.technet.microsoft.com/Forums/scriptcenter/en-US/7e89b957-ff5b-42c4-b107-d7e18752fcf1/enterpssession-within-a-script
    So when you run it interactively, you've started the interactive connection to the remote computer and are now running the relevant commands on that machine. When you run it from the script it starts the remote connection, but crucially it doesn't use that
    new connection, the script is still being run in the current local session.
    When you think about it makes sense. Using the Invoke-command method you're connecting to a remote machine, sending the script block to the remote machine, and then running that block of code on the remote machine. The remote machine only knows about the
    code you send it, not the rest of the script (which is why if you use variables you have to pass them to invoke-command otherwise they won't be available to the script block on the remote machine. Conversely, when you use the Enter-PSSession method, you've
    connected to the remote machine, but you haven't passed any code to it. At that point you're on the remote machine, but it has no way to know what you want it to do since your script code is on the local machine. It can then either return to the local
    machine and run the next line of code locally (which it does), or sit there connected to the remote machine waiting input that will never come (which would be even less useful).

  • Command Prompt Tricks

    In the Command Prompt Shortcut, how can I change
    C:\Users\Lucky>
    into
    C:\
    Please Help
    Amanda

    When you open a Command Prompt window (CMD.EXE), it defaults
    to your user profile home directory. If you wish to change the
    default startup directory for Command Prompt, use the steps listed
    in this article at
    http://windowsxp.mvps.org/autoruncmd.htm

  • Command prompt is not opening

    Hi,
    i tried to open 'COMMAND PROMPT'. but not able to open. what is the problem and where should i need to change the settings for command prompt.
    Regards,
    venkat.

    I'm going to assume you are on Windoze and are talking about a Windows Command prompt. If so, click on the Start button, then click on Run and type cmd and then click OK.

  • AppleScript: Waiting for a user to enter user name and password

    I'm currently working on an AppleScript designed to automate binding a computer to Active Directory and another script to install a login certificate. While you can create a UNIX shell script for the Active Directory binding, I found that you have to have your user name and password in the script itself and this system will be deployed by multiple people.
    So instead I'm doing an GUI Automation AppleScript of Directory Utility. What I'd like to do is have the script to wait for the admin user (who will be remoting in by ARD) to enter their Network user and password, click okay and then continue the script to quit the program and then run a self-destruct (which I'd also appreciate any advice about doing in AppleScript)
    Here's the script so far, which I've set up successfully:
    activate application "Directory Utility"
    tell application "System Events"
      click text field 1 of row 1 of table 1 of scroll area 1 of group 1 of group 1 of window "Directory Utility" of application process "Directory Utility"
      click button 1 of group 1 of group 1 of window "Directory Utility" of application process "Directory Utility"
      click text field 2 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "EXAMPLE.COMPANY.com"
      click UI element 3 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click radio button "Administrative" of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click checkbox "Allow administration by:" of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 1 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExamplePS NA"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 2 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleNA"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 3 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleNATemps"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 4 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleTeam 1"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 5 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleTeam 2"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 6 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleTeam 3"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 7 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleDesktop Admins"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 8 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleDomain Admins"
      click button "Bind…" of sheet 1 of window "Directory Utility" of application process "Directory Utility
    <<WAIT LINE HERE FOR NETWORK ADMIN AND AND PASS, THEN USER WILL CLICK OKAY, THEN CONTINUE SCRIPT>>
    <<QUIT ACTIVE DIRECTORY>>
    <<SELF-DESTRUCT>>
    end tell
    It isn't a real command prompt like if you're changing System Preferences or something. It's a specialized prompt specifically for Directory Utility. However, I do need to know how to make AppleScript wait for a password for a standard Password Prompt for adding a certificate to the login keychain through Keychain Access. I've also done pretty much the same thing as above for that script.
    Any tips would be GREATLY appreciated.

    Yeah, I know GUI Scripting is not the best way, but I couldn't find a successful variable system for the following script. The other issue is that I'd prefer to send this by ARD and have ARD ask for a User Name and Password, but I've found there's no way to do that. Then again, I can't send the AppleScript purely remotely either.
    What I mean by self-destruct is simply I only want the Active Directory binding script to run once upon login to the primary admin user and then delete itself so it doesn't get run again. The login certificate script I want to run once on each new user who logs in (so I'll likely be putting it in the "User Template") and then delete itself so it doesn't run the next time they log in. I can't figure out any way to hit those buttons through a shell script.
    Here's the original UNIX shell script: (This is what I'm using temporarily until I figure out a solution that doesn't require my user name and password to be embedded)
    #! /bin/bash
    MACNAME=$(scutil --get ComputerName)
    dsconfigad -add "CORP.DOMAIN.NET" \
    -username USER \
    -password PASS \
    -computer $MACNAME \
    -mobile disable \
    -mobileconfirm disable \
    -localhome enable \
    -useuncpath enable \
    -shell /bin/bash \
    -ou OU=Macs,CN=Computers,DC=corp,DC=DOMAIN,DC=net \
    -force \
    -localpassword "PASSWORD" \
    -groups "GROUPS"
    And here is the Certificate Installation AppleScript
    activate application "Keychain Access"
    tell application "Finder" to open POSIX file "/FolderName/Certificate.crt"
    delay (3)
    tell application "System Events" to tell process "Keychain Access"
      click button "Add" of window "Add Certificates"
      click button "Always Trust" of group 3 of sheet 1 of window "Keychain Access"
    end tell
    Thanks for the help. I really appreciate it. This is a rather new field for me and most of my knowledge comes from Google Searches and about a billion tabs trying to find answers.

  • Silent installation for FMW products command prompt stuck!!

    Hi All,
    I am working on silent installation of Oracle FMW components, I am using the response file approach and Oracle Universal Installer. The aim is to integrate these installation commands to continuous integration tools like Jenkins/ControlTier.
    When the installation finishes, the current shell still holds the prompt. I need to press ENTER to get out. The problem If I integrate them with this tools their flow does not end up, as command prompt does not return. In addition to that I need the returned execution status (echo $?) for evaluating the process.
    I have tried launching it in background but did not work, any ideas ?
    They say, silent does not require user interaction still we have to press ENTER to exit the console (silent + GUI).
    Please suggest.
    Thanks in advance,
    Bhaskar
    I am posting one of the application installation output to give a better idea(Oracle Webtier Utilities):
    =========================================================
    bash-3.2$ ./runInstaller -silent -responseFile /sarbackups1/infra_build/response/WebtierSOA_InstallOnly_11.1.1.4.rsp &
    [1] 17055
    -bash-3.2$ Starting Oracle Universal Installer...
    Checking Temp space: must be greater than 80 MB. Actual 3578 MB Passed
    Checking swap space: must be greater than 500 MB. Actual 28991 MB Passed
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2012-02-21_04-40-33PM. Please wait ..../runInstaller: syntax error at line 299: `count1=$' unexpected
    Log: /u01/app/oracle/oraInventory/logs/install2012-02-21_04-40-33PM.log
    Copyright (c) 1999, 2009, Oracle and/or its affiliates. All rights reserved.
    Reading response file..
    Expected result: One of 5.9,5.10
    Actual Result: 5.10
    Check complete. The overall result of this check is: Passed
    CertifiedVersions Check: Success.
    Checking for SUNWarc; found Lint Libraries (usr)(SUNWarc). Passed
    Checking for SUNWbtool; found CCS tools bundled with SunOS(SUNWbtool). Passed
    Checking for SUNWhea; found SunOS Header Files(SUNWhea). Passed
    Checking for SUNWlibC; found Sun Workshop Compilers Bundled libC(SUNWlibC). Passed
    Checking for SUNWlibm; found Math & Microtasking Library Headers & Lint Files (Usr)(SUNWlibm). Passed
    Checking for SUNWlibms; found Math & Microtasking Libraries (Usr)(SUNWlibms). Passed
    Checking for SUNWsprot; found Solaris Bundled tools(SUNWsprot). Passed
    Checking for SUNWtoo; found Programming Tools(SUNWtoo). Passed
    Checking for SUNWi1of; found ISO-8859-1 (Latin-1) Optional Fonts(SUNWi1of). Passed
    Checking for SUNWi1cs; found X11 ISO8859-1 Codeset Support(SUNWi1cs). Passed
    Checking for SUNWi15cs; found X11 ISO8859-15 Codeset Support(SUNWi15cs). Passed
    Checking for SUNWxwfnt; found X Window System platform required fonts(SUNWxwfnt). Passed
    Check complete. The overall result of this check is: Passed
    Packages Check: Success.
    Checking for 127111-02; found 127127-11. Passed
    Checking for 137111-04; found 137137-09. Passed
    Check complete. The overall result of this check is: Passed
    Patches Check: Success.
    Expected result: 1024MB
    Actual Result: 16384MB
    Check complete. The overall result of this check is: Passed
    TotalMemory Check: Success.
    Verifying data......
    Copying Files...
    -----------20%----------40%----------60%----------80%--------100%
    Applying Oneoff Patch...
    [CONFIG] Launching Config Actions....
    Started Configuration:Web Tier Configuration
    [CONFIG]:Create and Start AS Instance (Web_PIT3)
    [CONFIG] [Web Tier Configuration] [Create and Start AS Instance (Web_PIT3)]:Creating Oracle Instance directories...
    [CONFIG] [Web Tier Configuration] [Create and Start AS Instance (Web_PIT3)]:Recording OPMN ports reservations...
    [CONFIG] [Web Tier Configuration] [Create and Start AS Instance (Web_PIT3)]:Bootstrapping OPMN configuration files...
    [CONFIG] [Web Tier Configuration] [Create and Start AS Instance (Web_PIT3)]:Instantiating opmnctl for direct usage...
    [CONFIG] [Web Tier Configuration] [Create and Start AS Instance (Web_PIT3)]:Skipping instance registration
    [CONFIG] SUCCESS:Create and Start AS Instance (Web_PIT3)
    [CONFIG]:Create and Start OHS Component (ohs_PIT3)
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs_PIT3)]:Creating empty component directories...
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs_PIT3)]:Provisioning OHS files for ohs_PIT3
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs_PIT3)]:Copying OHS files from ORACLE_HOME to ORACLE_INSTANCE locations
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs_PIT3)]:Customizing httpd.conf
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs_PIT3)]:Adding component's process control to OPMN...
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs_PIT3)]:Skipping ohs_PIT3 component registration.
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs_PIT3)]:Invoking opmn reload...
    [CONFIG] SUCCESS:Create and Start OHS Component (ohs_PIT3)
    [CONFIG]:Create and Start Web Cache Component (webcache_PIT3)
    [CONFIG] [Web Tier Configuration] [Create and Start Web Cache Component (webcache_PIT3)]:Creating empty component directories...
    [CONFIG] [Web Tier Configuration] [Create and Start Web Cache Component (webcache_PIT3)]:Provisioning WebCache files for webcache_PIT3
    [CONFIG] [Web Tier Configuration] [Create and Start Web Cache Component (webcache_PIT3)]:Copying WebCache files from ORACLE_HOME to ORACLE_INSTANCE locations
    [CONFIG] [Web Tier Configuration] [Create and Start Web Cache Component (webcache_PIT3)]:Customizing webcache.xml
    [CONFIG] [Web Tier Configuration] [Create and Start Web Cache Component (webcache_PIT3)]:Adding component's process control to OPMN...
    [CONFIG] [Web Tier Configuration] [Create and Start Web Cache Component (webcache_PIT3)]:Skipping webcache_PIT3 component registration.
    [CONFIG] [Web Tier Configuration] [Create and Start Web Cache Component (webcache_PIT3)]:Invoking opmn reload...
    [CONFIG] SUCCESS:Create and Start Web Cache Component (webcache_PIT3)
    Configuration:Web Tier Configuration completed successfully
    The installation of Oracle AS Common Toplevel Component, Oracle WebTier and Utilities CD completed successfully.
    Prompt holds here I have to press ENTER to come out
    =========================================================

    Hi All,
    I am working on silent installation of Oracle FMW components, I am using the response file approach and Oracle Universal Installer. The aim is to integrate these installation commands to continuous integration tools like Jenkins/ControlTier.
    When the installation finishes, the current shell still holds the prompt. I need to press ENTER to get out. The problem If I integrate them with this tools their flow does not end up, as command prompt does not return. In addition to that I need the returned execution status (echo $?) for evaluating the process.
    I have tried launching it in background but did not work, any ideas ?
    They say, silent does not require user interaction still we have to press ENTER to exit the console (silent + GUI).
    Please suggest.
    Thanks in advance,
    Bhaskar
    I am posting one of the application installation output to give a better idea(Oracle Webtier Utilities):
    =========================================================
    bash-3.2$ ./runInstaller -silent -responseFile /sarbackups1/infra_build/response/WebtierSOA_InstallOnly_11.1.1.4.rsp &
    [1] 17055
    -bash-3.2$ Starting Oracle Universal Installer...
    Checking Temp space: must be greater than 80 MB. Actual 3578 MB Passed
    Checking swap space: must be greater than 500 MB. Actual 28991 MB Passed
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2012-02-21_04-40-33PM. Please wait ..../runInstaller: syntax error at line 299: `count1=$' unexpected
    Log: /u01/app/oracle/oraInventory/logs/install2012-02-21_04-40-33PM.log
    Copyright (c) 1999, 2009, Oracle and/or its affiliates. All rights reserved.
    Reading response file..
    Expected result: One of 5.9,5.10
    Actual Result: 5.10
    Check complete. The overall result of this check is: Passed
    CertifiedVersions Check: Success.
    Checking for SUNWarc; found Lint Libraries (usr)(SUNWarc). Passed
    Checking for SUNWbtool; found CCS tools bundled with SunOS(SUNWbtool). Passed
    Checking for SUNWhea; found SunOS Header Files(SUNWhea). Passed
    Checking for SUNWlibC; found Sun Workshop Compilers Bundled libC(SUNWlibC). Passed
    Checking for SUNWlibm; found Math & Microtasking Library Headers & Lint Files (Usr)(SUNWlibm). Passed
    Checking for SUNWlibms; found Math & Microtasking Libraries (Usr)(SUNWlibms). Passed
    Checking for SUNWsprot; found Solaris Bundled tools(SUNWsprot). Passed
    Checking for SUNWtoo; found Programming Tools(SUNWtoo). Passed
    Checking for SUNWi1of; found ISO-8859-1 (Latin-1) Optional Fonts(SUNWi1of). Passed
    Checking for SUNWi1cs; found X11 ISO8859-1 Codeset Support(SUNWi1cs). Passed
    Checking for SUNWi15cs; found X11 ISO8859-15 Codeset Support(SUNWi15cs). Passed
    Checking for SUNWxwfnt; found X Window System platform required fonts(SUNWxwfnt). Passed
    Check complete. The overall result of this check is: Passed
    Packages Check: Success.
    Checking for 127111-02; found 127127-11. Passed
    Checking for 137111-04; found 137137-09. Passed
    Check complete. The overall result of this check is: Passed
    Patches Check: Success.
    Expected result: 1024MB
    Actual Result: 16384MB
    Check complete. The overall result of this check is: Passed
    TotalMemory Check: Success.
    Verifying data......
    Copying Files...
    -----------20%----------40%----------60%----------80%--------100%
    Applying Oneoff Patch...
    [CONFIG] Launching Config Actions....
    Started Configuration:Web Tier Configuration
    [CONFIG]:Create and Start AS Instance (Web_PIT3)
    [CONFIG] [Web Tier Configuration] [Create and Start AS Instance (Web_PIT3)]:Creating Oracle Instance directories...
    [CONFIG] [Web Tier Configuration] [Create and Start AS Instance (Web_PIT3)]:Recording OPMN ports reservations...
    [CONFIG] [Web Tier Configuration] [Create and Start AS Instance (Web_PIT3)]:Bootstrapping OPMN configuration files...
    [CONFIG] [Web Tier Configuration] [Create and Start AS Instance (Web_PIT3)]:Instantiating opmnctl for direct usage...
    [CONFIG] [Web Tier Configuration] [Create and Start AS Instance (Web_PIT3)]:Skipping instance registration
    [CONFIG] SUCCESS:Create and Start AS Instance (Web_PIT3)
    [CONFIG]:Create and Start OHS Component (ohs_PIT3)
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs_PIT3)]:Creating empty component directories...
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs_PIT3)]:Provisioning OHS files for ohs_PIT3
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs_PIT3)]:Copying OHS files from ORACLE_HOME to ORACLE_INSTANCE locations
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs_PIT3)]:Customizing httpd.conf
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs_PIT3)]:Adding component's process control to OPMN...
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs_PIT3)]:Skipping ohs_PIT3 component registration.
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs_PIT3)]:Invoking opmn reload...
    [CONFIG] SUCCESS:Create and Start OHS Component (ohs_PIT3)
    [CONFIG]:Create and Start Web Cache Component (webcache_PIT3)
    [CONFIG] [Web Tier Configuration] [Create and Start Web Cache Component (webcache_PIT3)]:Creating empty component directories...
    [CONFIG] [Web Tier Configuration] [Create and Start Web Cache Component (webcache_PIT3)]:Provisioning WebCache files for webcache_PIT3
    [CONFIG] [Web Tier Configuration] [Create and Start Web Cache Component (webcache_PIT3)]:Copying WebCache files from ORACLE_HOME to ORACLE_INSTANCE locations
    [CONFIG] [Web Tier Configuration] [Create and Start Web Cache Component (webcache_PIT3)]:Customizing webcache.xml
    [CONFIG] [Web Tier Configuration] [Create and Start Web Cache Component (webcache_PIT3)]:Adding component's process control to OPMN...
    [CONFIG] [Web Tier Configuration] [Create and Start Web Cache Component (webcache_PIT3)]:Skipping webcache_PIT3 component registration.
    [CONFIG] [Web Tier Configuration] [Create and Start Web Cache Component (webcache_PIT3)]:Invoking opmn reload...
    [CONFIG] SUCCESS:Create and Start Web Cache Component (webcache_PIT3)
    Configuration:Web Tier Configuration completed successfully
    The installation of Oracle AS Common Toplevel Component, Oracle WebTier and Utilities CD completed successfully.
    Prompt holds here I have to press ENTER to come out
    =========================================================

  • Pressing ENTER in Command Prompt to solve hanging

    Hi,
    Does anyone know why sometimes Java hangs, unless you press ENTER in the
    Command Prompt for Windows 2K? After pressing ENTER it continues execution.
    It happens with WebLogic sometimes too. It will not print anything on the
    console until I press ENTER.
    I'm sure lots of Java developers have experienced this weird problem.
    Thanks,
    Duke
    [email protected]

    That is what we call a "feature" of an enterprise-class OS ;-)
    Peace,
    Cameron Purdy
    Tangosol Inc.
    Tangosol Coherence: Clustered Coherent Cache for J2EE
    Information at http://www.tangosol.com/
    "Chad McDaniel" <[email protected]> wrote in message
    news:[email protected]..
    On windows machines be very careful to turn off the "mark" option in
    the shell preferences. It can halt the server.
    Daniel Hoppe <[email protected]> writes:
    Hi,
    because you marked something in the command prompt. Marking stops
    execution. Enter means 'copy' and continues execution...
    Daniel
    -----Original Message-----
    From: Duke Nguyen [mailto:[email protected]]
    Posted At: Thursday, December 13, 2001 3:16 AM
    Posted To: ejb
    Conversation: pressing ENTER in Command Prompt to solve hanging
    Subject: pressing ENTER in Command Prompt to solve hanging
    Hi,
    Does anyone know why sometimes Java hangs, unless you press
    ENTER in the
    Command Prompt for Windows 2K? After pressing ENTER it
    continues execution.
    It happens with WebLogic sometimes too. It will not print
    anything on the
    console until I press ENTER.
    I'm sure lots of Java developers have experienced this weird problem.
    Thanks,
    Duke
    [email protected]

  • New iphone. someone else put in their username and password. time for me to update the iphone. downloaded itunes onto pc. plugged in iphone and waiting for prompt to show phone. pc thinks it is the camera. how do i get itunes/pc to recognize iphone ?

    new iphone. (someone else put in their username and password. so i had lots of apps that i had to eliminate but do NOT wish to compromise the contact list) time for me to update the iphone. downloaded itunes onto pc. plugged in iphone and waiting for prompt to show phone. pc thinks it is the camera. how do i get itunes/pc to recognize iphone ? then, how do i backup contacts and proceed before updating iphone?

    This forum is for questions from those managing sites on iTunes U, Apple's service for colleges and universities to post educational material in the iTunes Store. You'll be most likely to get help with this issue if you ask in the general iTunes or iPhone forums.
    Regards.

  • Bought Premier Elements yesterday. EVERY time I try to open a set of clips with Editor, I am told I have to sign into my Adobe first. I do this and wait for several minutes for the password dialogue box to open, enter my password. then wait and wait until

    Bought Premier Elements 13 yesterday. EVERY time I try to open a set of clips with Editor, I am told I have to sign into my Adobe first. I do this and wait for several minutes for the password dialogue box to open, enter my password. then wait and wait until my pw is recognized. Accept agreement. Agreement screen disappears and I'm back where I started. Try to open video clips with editor again and get the same demand to log in. Please advise asap. thx

    Oldcameraman
    Please do not duplicate a thread. The threads are answered as soon as possible. We are not Adobe. Just user to user.
    I have answered your most recent of the duplicates
    Premier Elements 13 Organizer Works. Editor doesn't. Log in doesn't work
    It is uncertain just how far we can go to help you since you do not appear to have Premiere Elements any
    longer.Seems you demanded a refund from Adobe Chat, got it, and now are left with a non purchased program which I
    am not sure can be used.
    Duplicates tend to confuse the person asking the question as well as those attempting to reply. As I suggested in the
    above mentioned thread, try to sort out your situation with Adobe via its Adobe Chat.
    ATR

  • I bought the adobe photoshop elements 13 and adobe premiere elsements 13 in box in the store for my Mac;  I've entered my 25 character product key - now I have been waiting for nearly an hour for something to happen with no luck. Ron

    I bought the adobe photoshop elements 13 and adobe premiere elsements 13 in box in the store for my Mac; 
    I've entered my 25 character product key - now I have been waiting for nearly an hour for something to happen
    with no luck. Has anyone else had this problem?  I'm using MacBook Pro with Yosemite OS 10.10 etc. Help!
    Ron in Fort Worth, TX

    Also, Elements programs are not part of the Cloud
    Photoshop Elements Forum http://forums.adobe.com/community/photoshop_elements
    Premiere Elements Forum http://forums.adobe.com/community/premiere_elements

Maybe you are looking for