Errors in \Windows\Temp\Zenworks\Logs

Is it normal for workstations to continuously write to this folder? I'm seeing lots of msgs here that seem to be continuously getting written. They are filenames like:
1285852455-0000-68144EC060FA44B8B1E9F531D846842E.log
And they vary in their content, but this is an example of one of them:
<Message><MessageId><![CDATA[Thu Sep 30 09:14:15 2010]]></MessageId><Severity><![CDATA[1]]></Severity><ProcessId><![CDATA[3896]]></ProcessId><ProcessName><![CDATA[nzrWinVNC]]></ProcessName><ThreadId><![CDATA[3484]]></ThreadId><Time><![CDATA[1285852455000]]></Time><ComponentName><![CDATA[Remote Management]]></ComponentName><MessageType><![CDATA[0]]></MessageType></Message>
The only thing consistent about them is they seem (at least the ones I've looked at) to have nzrWinVNC in them.

Originally Posted by willmw
Is it normal for workstations to continuously write to this folder? I'm seeing lots of msgs here that seem to be continuously getting written. They are filenames like:
1285852455-0000-68144EC060FA44B8B1E9F531D846842E.log
And they vary in their content, but this is an example of one of them:
<Message><MessageId><![CDATA[Thu Sep 30 09:14:15 2010]]></MessageId><Severity><![CDATA[1]]></Severity><ProcessId><![CDATA[3896]]></ProcessId><ProcessName><![CDATA[nzrWinVNC]]></ProcessName><ThreadId><![CDATA[3484]]></ThreadId><Time><![CDATA[1285852455000]]></Time><ComponentName><![CDATA[Remote Management]]></ComponentName><MessageType><![CDATA[0]]></MessageType></Message>
The only thing consistent about them is they seem (at least the ones I've looked at) to have nzrWinVNC in them.
Can anyone confirm that this is happening in their environment? Or any suggestions about what to do about it if anything? I'm at 10.3.1

Similar Messages

  • Update error - win 7 64 bit, error C:\Windows\TEMP\IXP173.TMP\itunes64.msi not found cannot uninstall

    Tried using control panel to remove older version, then tried to manually erase all directories and files, neither has worked.

    See Troubleshooting issues with iTunes for Windows updates, in particular note 1.
    tt2

  • Windows 8.1 RTM, Windows Temp Filling up with MSI*.LOG files

    I have a machine that seems to be filling up its C: drive by placing a large number of 3MB .LOG files all of the form MSI*.LOG in the C:\Windows\Temp directory. I've tried researching and the closest was kb 223300, however this machine does not
    appear to have the registry setting referenced in that article. The Hotfix also says its not valid for this OS (Windows 8.1). Never seen this before. Can someone help? I've completely turned off Windows Update on this machine and so far that seems to be working.
    Also, I couldn't figure out for a while why where the disk space was going. Nothing was reporting anywhere close to the full disk utilization. I had to use ROBOCOPY /MIR /L to essentially get a full view of what's on the drive.

    I'm getting the same problem too, with 3MB MSI*.LOG files filling up c:\windows\temp. It puts so many on, that it completely fills C: drive. It does it randomly, sometimes going for weeks without problem, sometimes doing it every couple of days, but has
    done so since the OS was reinstalled from scratch on an SSD several months ago.
    It has been doing it pretty much since I did a complete fresh reinstall. I don't get the problem on any of my other machines, only this one - but this is my only 64 bit machine, so that may have something to do with it. 
    I first discovered the problem basically while I was installing the basics for the first time.  I did a clean OS install, ran the updates, installed Office, and then when I was installing Visual Studio, it failed with an out of disc space error. That's
    when I discovered the C:\WINDOWS\TEMP was full of log files.
    Unfortunately I've just deleted them again, so can't upload one. But last time I had a look in one, there was something that pointed to Visual Studio possibly being the culprit but I can't remember what it was. I uninstalled and reinstalled Visual Studio,
    and thought it had fixed it, as it went for a couple of months without the problem, but has done it three times in the last week.
    The files are about 3MB each - I'm new on the forums, so what would be the best way of uploading one so that someone might be able to have a look at it?

  • Access denied. Error in File C:\WINDOWS\TEMP\

    I have searched on Google and all over this forum and none of the solutions have fixed my problem.
    Crystal Version: Crsytal.Net for Visual Studio.Net 2005
    Server: Windows Server 2003
    Error:
    Access denied. Error in File C:\WINDOWS\TEMP\JuryDutyReport {D6296178-3E72-483E-B876-2DFC03D00841}.rpt: Access to report file denied. Another program may be using it.
    When I run my app locally through the Web Server that comes with ASP.Net, everything is fine, it is only when I deploy the application to the Windows 2003 Server that I get the error.
    I'm using impersonation in my ASP.Net application.  I have given that domain user full access to 'C:\Windows\Temp'', the export folder and even the folder where the Crystal Report resides on the Server.  When I run the application on the Web Server, I actually see the ".rpt" get created in the "C:\Windows\Temp" folder but yet it still says there is a permissions error.
    What is bizarre is that the code below that just sends the file to the printer automatically works:
      private void PrintJuryDutyReport(DataSet ds)
            //create report document
            ReportDocument crDoc = new ReportDocument();
            //load, set datasource and print options
            crDoc.Load(Server.MapPath("~/Reports/JuryDutyReport.rpt"));
            crDoc.SetDataSource(ds); //set datasource
            crDoc.PrintOptions.PrinterName = ddlPrinters.SelectedValue.ToString(); //set printername
            crDoc.PrintOptions.PaperOrientation = PaperOrientation.Portrait; //set paper orientation
            crDoc.SetParameterValue("ParamUsername", User.Identity.Name); //set parameter
            crDoc.PrintToPrinter(1, false, 0, 0); //send to printer
    I have to change the code to export to a PDF and this code doesn't work:
        private void PrintJuryDutyReport(DataSet ds)
            //report document
            ReportDocument crDoc = new ReportDocument();
            string myfile = @"G:\COPFS\COPFSPROD\ReportsTemp\MyPDF.pdf";
            //load, set datasource and print options
            crDoc.Load(Server.MapPath("~/Reports/JuryDutyReport.rpt"));
            crDoc.SetDataSource(ds); //set datasource
            crDoc.SetParameterValue("ParamUsername", User.Identity.Name); //set parameter
            //export through http
            crDoc.ExportToDisk(ExportFormatType.PortableDocFormat, myfile);
            crDoc.Close();
            crDoc.Dispose();
            Response.ClearContent();
            Response.ClearHeaders();
            Response.ContentType = "Application/pdf";
            Response.AppendHeader("content-disposition", "attachment; filename=" + myfile);
            Response.WriteFile(myfile);
            Response.Flush();
            Response.Close();
    Any help is greatly appreciated as I have to present this to end users tomorrow.

    Don, thanks for the response.
    As a last ditch effort, I granted "modify" to the Network Service Account on C:\Windows\Temp and that fixed the error.
    There are two things that are troubling about this:
    1) I'm impersonating a domain user in my ASP.Net application and when the PDF is created, the owner is that domain user, so I know impersonation is working.  So I wonder if ASP.Net picks and chooses what account it runs under at different times?
    2) It is a little scary for the Network Service Account to have this access but that people seem to be fine with it.
    http://aspadvice.com/blogs/rjdudley/archive/2005/03/14/2566.aspx

  • Error in Windows 7: User Profile Service was not logged on. The user and administra​torprofile

    Error in Windows 7: User Profile Service was not logged on. The user profile can not be loaded. Administrator profile and the code does not work. What do I do?
    HP G5384sc desktop pc

    Hello
    Unfortunately I did not manage to fix my computer yet. My printer is broken so I bought a new one, but since I do not have administrator rights, I can not connect the new printer, so I have to write all-installing notes down with pencil and simultaneously translate them into Danish so it is a very slow process. I'll tell you if it succeeds, otherwise there is of course the primitive way to buy a new computer, but it's the same as giving up. Not yet.
    Until now, many thanks for the good suggestions.
    Kind regards
    Birgeres

  • TS2529 Im am using Windows 7 ,I log onto to itunes and connect my Iphone.When my iphone tries to sync it gives an error message "itunes has stopped working" - this only happens when i connect my iphone and it tries to sync - help please

    Im am using Windows 7 ,I log onto to itunes and connect my Iphone.When my iphone tries to sync it gives an error message "itunes has stopped working" - this only happens when i connect my iphone and it tries to sync - help please

    Many thanks.
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • LocalDrive, remoteDrive error being logged to Windows Application event log

    Post Author: yday
    CA Forum: Data Integration
    Hi all,We are finding the following error messages being constantly logged to the Windows application event log:Event ID: 4096Source: Data Integrator"The error: localDrive: LocalDrive1; localDriveValue:  "andEvent ID: 4096
    Source: Data Integrator
    "The error: remoteDrive: RemoteDrive1; remoteDriveValue: "Another user noted as having the same problem in the old BO Support Forum:http://support.businessobjects.com/forums/message.asp?fid=568&mid=171195  We are also running Data Quality XI R2 (11.5.1.0) on the same server.  This problem has been happening for as long as I can remember.  It does not appear to cause any jobs to fail, but we would like to resolve this to prevent error messages being logged to computer management. Can anyone suggest a solution?  Product: Data Integrator XI R2
    Version: 11.7.0.0
    Patches Applied: None
    Operating System(s): Windows Server 2003 w SP1
    Database(s): Oracle 10gR2
    Error Messages: remoteDrive, localDrive error (as above)Steps to Reproduce: Restart the job server and the error appearsThanks and regards,York DAY

    Post Author: yday
    CA Forum: Data Integration
    Ben,
    I have just installed DI 11.7.2.0 and it is still an issue!  The bug has not been listed in the release notes in either the resolved issues section, or the known issues section.
    Australia support told me it would be fixed in the next service release.  This was well before 11.7.2.0 was released.
    I've opened another support case as I closed the last one, believing it was resolved.  From our perspective, it is not even being shown as a known issue with the product at this stage - so I will be keeping my support issue open this time until I see it is fixed.
    My support case number is 302810798 FYI.
    Rgds,York

  • Getting "Message callback is not set." error in Windows application log.  Cause?

    I am running a very low volume (3-4 simulaneous users) video chat application on FMS version 4 and am seeing the following error generated from FMS (Core) about once or twice a week.
    Message callback is not set.
    Any idea what the cause of this might be and whether or not it is impacting anything?
    Additional information from the event log is as follows....
    Log Name:      Application
    Source:        FMS (Core)
    Date:          1/12/2012 9:07:28 AM
    Event ID:      1531
    Task Category: (263)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      TACVID01.cyracom.com
    Description:
    Message callback is not set.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="FMS (Core)" />
        <EventID Qualifiers="49152">1531</EventID>
        <Level>2</Level>
        <Task>263</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2012-01-12T16:07:28.000000000Z" />
        <EventRecordID>104668</EventRecordID>
        <Channel>Application</Channel>
        <Computer>TACVID01.cyracom.com</Computer>
        <Security />
      </System>
      <EventData>
        <Data>(Adaptor: _defaultRoot_, VHost: _defaultVHost_, IP: 209.94.129.251, App: VRIServer/_definst_, Protocol: rtmp, Client: 4702111234542092655, Handle: 2147745794) : 97 g 00 E8 0 BF BE 7F BA A8 0E | 0D | F F8 18 BB 87 A2 &lt; n 01 15 Q ED + 98 AD AE Z 8E ( 06 97 F8 02 9E 14 F6 BD f F5 F3 A5 E2 B5 [ 15 ( 83 FB A0 ` BD ` h FF A5 D6 9C E7 85 = A5 B 3 k 9B U 8A e B4 o ^ 0D 3 F3 / T 18 p R 14 F2 E1 E8 D1 D2 AC E2 EE F9 " C6 K 8D 06 a O s BC D9 A7 00 P f 1B T 1E A5 = H z 8A = C0 ) EE s 9C 19 &lt; ( F7 9 C0 14 C6 F1 1F FD 4 7F 0D FD B7 06 B \ B8 E M J C5 00 } U Q DD CA D3 DC # DC E5 R 95 D9 R 99 p 05 05 1E E7 06 @ 14 F0 A2 C9 03 # ! 93 C5 X AD C2 ] D1 E1 90 S DD 0F ; D3 A9 09 CB 99 E0 D5 E1 O F0 I $ 14 F 8F 06 % D8 ! 93 BC E FB A4 84 - = C1 _ K 8 H E0 0A 0C C4 16 E7 06 B 0F s 83 / B5 9D 15 n &gt; % FC t 05 80 P 8F 84 $ B0 E0 d E1 F E7 0B DC / 0C 92 C6 g BA DD X EF 9E 14 F8 0A 1A D4 E4 L g C7 C2 11 z AA 0D 10 10 FB DD 0C 83 ' 88 F0 C9 C0 14 E0 C8 ( B7 8 F0 d F1 0B 8E 80 DA @ FB 01 8C 82 16 80 P 8F F0 0 EF C3 . 15 + + s a AF C3 % 81 84 FA , AE F7 14 CB 1A x S FD F6 AA E ` D3 01 AA e - FB   d 2 R C8 13 - 87 E6 v 01 R A0 C9 W 85 E1 98 S FC B3 ` C1 02 R C5 02 E8 85 A2 A0 CE t 0C FC F F0 4 BF D0 C6 1A w D0 C9 E1 O i AA D5 DE 01 W * DF 97 q B 91 F2 E0 D1 A 00 AB + C3 ' 88 FF 0F % 1D CA A5 D1 K 06   F2 F8 0E 8F 9A d | C5 09 $ CF B1 D6 \ E1 0F 8E F1 $ " p S FD a DF % E1 , t l DA AA Z O N 85 = CE F3 M 0D &amp; F4 \ \ 94 D3 C2 85 86 N F1 E7 85 . E7 8 2 x R EE A4 CE 00 A7 88 FD AA : V r O A8 03 AA 15 ~ P T C5 14 B7 F 94 DA B1 F0 90 0A 16 C6 " A9 E6 D4 8E 87 CA 92 AB A3 A0 C9 C1 O F7 T A9 9C S 8A S Q K 84 BB @ 1 V FB G E2 K ` j B E2 EA 91 ] B7 F4 1A H @ : A8 18 ( T % E0 D3 81 8 D8 8F s 9A ` t 94 D6 C3 C0 14 14 x e 8A $ AA D5 B5 9 15 02 9E AD 13 s BF 06 88 0A v F6 CC L D6 12 06 D C2 AD 9 13 82 9E E7 J 97 ` 0D 85 d EA BB H 9E ' E2 1 R v ] E8 x C C8 B4 ' 86 \ " b F3 02 80 C6 C8 , b 80 h 01 @ , * o p d F1 . E7 06 ] l 99 O DA | 0C Z L ( DC | K B8 F3 84 7F B0 A4 a 1A 8 - 8 19 05 8D CE &lt; 16 F7 9 E2 BD C1 90 _ 0C 9E * CE 06 B 1F 0D J ` 2 00 A0 AF 99 p d F0 A7 BB   0E t 1C 03 M FC 19 &lt; ) F3 BD H . 95 94 ` C2 FF 8 1A E0 / / D6 4 18 W B8 E9 87 0E 85 = : k 01 85 FD 7F 01 86 z 06 97 FA % L Z 0D 03 E4 1C 09 d C6 * BC " 10 86 a O A0 AE 82 DC ` 09 0C C6 E0 C3 01 1E X 1A H   0A x S E2 b E C8 E " 80 C9 E1 _ 83 88 1 s 9E 14 FC B6 04 @ r Q DF B9 F9 C8 F7 09 C3 ' 88 F9 A0 A7 1D } 8F B0 19 C3 D5 BE ^ C2 _ g FC D0 EF C0 D1 A 8 O BA N 9A p AB F3 C3   A4 FC # $ &amp; 8D 9A 96 G AA = O 85 = CE o 00 C9 1B 8B 9A 6 F1 6 19 06 B &lt; BD T S F4 D0 w @ A4 m E0 86 ? C6 05 0F &lt; : 12 15 03 03 08 &gt; 06 19 F5 X 17 % 80 A4 BE 03 8 02 8F 06 A O T ; 03 19 A9 DC E1 D8 F6 @ 9 $ M E3 { C2 00 C9 E1 O t F6 88 BD 1F q H 19 F4 AB ' 8D 9E F4 F2 9E B4 16 $ DD 0E C8 C ' 85 &lt; 14 ? 06 06 10 B9 BF x F N = E8 B3 C8 8F 0E E7 1A E0 C0 D4 = ^ ) C4 v 0F 13 B8 E C6 F9 12 F6 8B 89 F7 85 E3 E2 ED 1D CB U D9 AC ( F9 M </Data>
      </EventData>
    </Event>

    I also have this error, in AMS 5.0.3. If I look in the logs, in core.00.log for instance, I also have the following error:
    Assert failed in .\core\FcRecordedStream.cpp line 2420
    Freaks me out a little. I'm not sure what this error means. I've googled it and still no one talks about this one so I'm in the void right now. I get this error multiple times in the log file, every few seconds when it starts.

  • Oracle Apps R12 Installation error on windows

    This new discussion is related to below link as last times discussion is locked ,i dont have idea why that discussion is locked(might be due to attachment link that i provided for log file )
    "R12 E-Business suite installation error on Windows XP-SP3"
    I have added 4 GB RAM and started installation on new fresh windows XP SP3 system  with only one C: drive with 300 GB space(including staging area)
    below is the log file for error
    Oracle Applications Rapid Install Wizard Install log
       >> Using Rapid Wizard Version  : 12.1.1.9
       >> Install session started  : Sun Jan 12 14:57:39 IST 2014
       >> Rapid Wizard source location  : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz
       >> Command Line arguments for this run  :
    =================================================================
    Install Session Information
       Host Name               : utkarsh.sparsh
       Host Operating System   : Windows (32-bit)
       User running Install    : Uday Gite
    =================================================================
    InstUpgPanel
        User action   :  Install Oracle Applications
         Install type  :  Standard Install
    Disabling OCM Configuration
    InstallPanel
        User action   :  Create configuration
         Description   :  Creates a new instance configuration.
    PortPanel
            Selected port pool:
                Database Port : 1521
                RPC Port : 1626
                Web SSL Port : 4443
                ONS Local Port : 6100
                ONS Remote Port : 6200
                ONS Request Port : 6500
                Web Listener Port : 8000
                Active Web Port : 8000
                Forms Port : 9000
                Metrics Server Data Port : 9100
                Metrics Server Request Port : 9200
                JTF Fulfillment Server Port : 9300
                MSCA Server Port : 10200-10205
                MCSA Telnet Server Port : 10200,10202,10204
                MSCA Dispatcher Port : 10800
                Java Object Cache Port : 12345
                OC4J JMS Port Range for Oacore : 23000-23004
                OC4J JMS Port Range for Forms : 23500-23504
                OC4J JMS Port Range for Home : 24000-24004
                OC4J JMS Port Range for Oafm : 24500-24504
                OC4J AJP Port Range for Oacore : 21500-21504
                OC4J AJP Port Range for Forms : 22000-22004
                OC4J AJP Port Range for Home : 22500-22504
                OC4J AJP Port Range for Oafm : 25000-25004
                OC4J RMI Port Range for Oacore : 20000-20004
                OC4J RMI Port Range for Forms : 20500-20504
                OC4J RMI Port Range for Home : 21000-21004
                OC4J RMI Port Range for Oafm : 25500-25504
                DB ONS Local Port : 6300
                DB ONS Remote Port : 6400
                Oracle Connection Manager Port : 1521
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxdbctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxdbctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxdbctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxdbctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    DBNodePanel
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxmlctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxmlctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxmlctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxmlctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxmlctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxmlctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxmlctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxmlctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    AppsNodePanel
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxmlctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxmlctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    AppsNodePanel
    AllNodesPanel
        Service Name: utkarsh
        Node Name: _utkarsh
        Operating System: _Windows (32-bit)
        Service Name: utkarsh
        Node Name: _utkarsh
        Operating System: _Windows (32-bit)
            Writing configuration file to: C:\OracleApps\oracle\FPRD1\instance\apps\FPRD1_utkarsh\conf_FPRD1.txt
    Adding ports for Server0_utkarsh
    Setting port s_db_ons_localport to 6300
    Setting port s_db_ons_remoteport to 6400
    Setting port s_cmanport to 1521
    Adding ports for Server1_utkarsh
    Setting port s_rpcport to 1626
    Setting port s_webssl_port to 4443
    Setting port s_ons_localport to 6100
    Setting port s_ons_remoteport to 6200
    Setting port s_ons_requestport to 6500
    Setting port s_webport to 8000
    Setting port s_active_webport to 8000
    Setting port s_formsport to 9000
    Setting port s_metdataport to 9100
    Setting port s_metreqport to 9200
    Setting port s_jtfuf_port to 9300
    Setting port s_mwaPortNo to 10200-10205
    Setting port s_mwaTelnetPortNo to 10200,10202,10204
    Setting port s_mwaDispatcherPort to 10800
    Setting port s_java_object_cache_port to 12345
    Setting port s_oacore_jms_portrange to 23000-23004
    Setting port s_forms_jms_portrange to 23500-23504
    Setting port s_home_jms_portrange to 24000-24004
    Setting port s_oafm_jms_portrange to 24500-24504
    Setting port s_oacore_ajp_portrange to 21500-21504
    Setting port s_forms_ajp_portrange to 22000-22004
    Setting port s_home_ajp_portrange to 22500-22504
    Setting port s_oafm_ajp_portrange to 25000-25004
    Setting port s_oacore_rmi_portrange to 20000-20004
    Setting port s_forms_rmi_portrange to 20500-20504
    Setting port s_home_rmi_portrange to 21000-21004
    Setting port s_oafm_rmi_portrange to 25500-25504
            Writing configuration file to: C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\conf_FPRD1.txt
    Adding ports for Server0_utkarsh
    Setting port s_db_ons_localport to 6300
    Setting port s_db_ons_remoteport to 6400
    Setting port s_cmanport to 1521
    Adding ports for Server1_utkarsh
    Setting port s_rpcport to 1626
    Setting port s_webssl_port to 4443
    Setting port s_ons_localport to 6100
    Setting port s_ons_remoteport to 6200
    Setting port s_ons_requestport to 6500
    Setting port s_webport to 8000
    Setting port s_active_webport to 8000
    Setting port s_formsport to 9000
    Setting port s_metdataport to 9100
    Setting port s_metreqport to 9200
    Setting port s_jtfuf_port to 9300
    Setting port s_mwaPortNo to 10200-10205
    Setting port s_mwaTelnetPortNo to 10200,10202,10204
    Setting port s_mwaDispatcherPort to 10800
    Setting port s_java_object_cache_port to 12345
    Setting port s_oacore_jms_portrange to 23000-23004
    Setting port s_forms_jms_portrange to 23500-23504
    Setting port s_home_jms_portrange to 24000-24004
    Setting port s_oafm_jms_portrange to 24500-24504
    Setting port s_oacore_ajp_portrange to 21500-21504
    Setting port s_forms_ajp_portrange to 22000-22004
    Setting port s_home_ajp_portrange to 22500-22504
    Setting port s_oafm_ajp_portrange to 25000-25004
    Setting port s_oacore_rmi_portrange to 20000-20004
    Setting port s_forms_rmi_portrange to 20500-20504
    Setting port s_home_rmi_portrange to 21000-21004
    Setting port s_oafm_rmi_portrange to 25500-25504
            Setting temp directory to: C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxdbctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxmlctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxdbctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxmlctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxdbctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_db.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxmlctx.tmp
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    instantiate file:
       source : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
       dest   : C:\DOCUME~1\UDAYGI~1\LOCALS~1\Temp\01121457\utkarsh_FPRD1_apps.xml
    Port Availability Check :
    -- database node ports --
       Database Port available:  Port Value = 1521
       Database Port Value = 1521......  Available
       DB ONS Local Port available:  Port Value = 6300
       DB ONS Local Port Value = 6300......  Available
       DB ONS Remote Port available:  Port Value = 6400
       DB ONS Remote Port Value = 6400......  Available
    -- apps node ports --
       RPC Port available:  Port Value = 1626
       RPC Port Value = 1626......  Available
       Web SSL Port available:  Port Value = 4443
       Web SSL Port Value = 4443......  Available
       ONS Local Port available:  Port Value = 6100
       ONS Local Port Value = 6100......  Available
       ONS Remote Port available:  Port Value = 6200
       ONS Remote Port Value = 6200......  Available
       ONS Request Port available:  Port Value = 6500
       ONS Request Port Value = 6500......  Available
       Web Listener Port available:  Port Value = 8000
       Web Listener Port Value = 8000......  Available
       Forms Port available:  Port Value = 9000
       Forms Port Value = 9000......  Available
       Metrics Server Data Port available:  Port Value = 9100
       Metrics Server Data Port Value = 9100......  Available
       Metrics Server Request Port available:  Port Value = 9200
       Metrics Server Request Port Value = 9200......  Available
       JTF Fulfillment Server Port available:  Port Value = 9300
       JTF Fulfillment Server Port Value = 9300......  Available
       MSCA Server Port available:  Port Value = 10200
       MSCA Server Port available:  Port Value = 10201
       MSCA Server Port available:  Port Value = 10202
       MSCA Server Port available:  Port Value = 10203
       MSCA Server Port available:  Port Value = 10204
       MSCA Server Port available:  Port Value = 10205
       MSCA Server Port Value = 10200-10205......  Available
       MSCA Dispatcher Port available:  Port Value = 10800
       MSCA Dispatcher Port Value = 10800......  Available
       Java Object Cache Port available:  Port Value = 12345
       Java Object Cache Port Value = 12345......  Available
       OC4J JMS Port Range for Oacore available:  Port Value = 23000
       OC4J JMS Port Range for Oacore available:  Port Value = 23001
       OC4J JMS Port Range for Oacore available:  Port Value = 23002
       OC4J JMS Port Range for Oacore available:  Port Value = 23003
       OC4J JMS Port Range for Oacore available:  Port Value = 23004
       OC4J JMS Port Range for Oacore Value = 23000-23004......  Available
       OC4J JMS Port Range for Forms available:  Port Value = 23500
       OC4J JMS Port Range for Forms available:  Port Value = 23501
       OC4J JMS Port Range for Forms available:  Port Value = 23502
       OC4J JMS Port Range for Forms available:  Port Value = 23503
       OC4J JMS Port Range for Forms available:  Port Value = 23504
       OC4J JMS Port Range for Forms Value = 23500-23504......  Available
       OC4J JMS Port Range for Home available:  Port Value = 24000
       OC4J JMS Port Range for Home available:  Port Value = 24001
       OC4J JMS Port Range for Home available:  Port Value = 24002
       OC4J JMS Port Range for Home available:  Port Value = 24003
       OC4J JMS Port Range for Home available:  Port Value = 24004
       OC4J JMS Port Range for Home Value = 24000-24004......  Available
       OC4J JMS Port Range for Oafm available:  Port Value = 24500
       OC4J JMS Port Range for Oafm available:  Port Value = 24501
       OC4J JMS Port Range for Oafm available:  Port Value = 24502
       OC4J JMS Port Range for Oafm available:  Port Value = 24503
       OC4J JMS Port Range for Oafm available:  Port Value = 24504
       OC4J JMS Port Range for Oafm Value = 24500-24504......  Available
       OC4J AJP Port Range for Oacore available:  Port Value = 21500
       OC4J AJP Port Range for Oacore available:  Port Value = 21501
       OC4J AJP Port Range for Oacore available:  Port Value = 21502
       OC4J AJP Port Range for Oacore available:  Port Value = 21503
       OC4J AJP Port Range for Oacore available:  Port Value = 21504
       OC4J AJP Port Range for Oacore Value = 21500-21504......  Available
       OC4J AJP Port Range for Forms available:  Port Value = 22000
       OC4J AJP Port Range for Forms available:  Port Value = 22001
       OC4J AJP Port Range for Forms available:  Port Value = 22002
       OC4J AJP Port Range for Forms available:  Port Value = 22003
       OC4J AJP Port Range for Forms available:  Port Value = 22004
       OC4J AJP Port Range for Forms Value = 22000-22004......  Available
       OC4J AJP Port Range for Home available:  Port Value = 22500
       OC4J AJP Port Range for Home available:  Port Value = 22501
       OC4J AJP Port Range for Home available:  Port Value = 22502
       OC4J AJP Port Range for Home available:  Port Value = 22503
       OC4J AJP Port Range for Home available:  Port Value = 22504
       OC4J AJP Port Range for Home Value = 22500-22504......  Available
       OC4J AJP Port Range for Oafm available:  Port Value = 25000
       OC4J AJP Port Range for Oafm available:  Port Value = 25001
       OC4J AJP Port Range for Oafm available:  Port Value = 25002
       OC4J AJP Port Range for Oafm available:  Port Value = 25003
       OC4J AJP Port Range for Oafm available:  Port Value = 25004
       OC4J AJP Port Range for Oafm Value = 25000-25004......  Available
       OC4J RMI Port Range for Oacore available:  Port Value = 20000
       OC4J RMI Port Range for Oacore available:  Port Value = 20001
       OC4J RMI Port Range for Oacore available:  Port Value = 20002
       OC4J RMI Port Range for Oacore available:  Port Value = 20003
       OC4J RMI Port Range for Oacore available:  Port Value = 20004
       OC4J RMI Port Range for Oacore Value = 20000-20004......  Available
       OC4J RMI Port Range for Forms available:  Port Value = 20500
       OC4J RMI Port Range for Forms available:  Port Value = 20501
       OC4J RMI Port Range for Forms available:  Port Value = 20502
       OC4J RMI Port Range for Forms available:  Port Value = 20503
       OC4J RMI Port Range for Forms available:  Port Value = 20504
       OC4J RMI Port Range for Forms Value = 20500-20504......  Available
       OC4J RMI Port Range for Home available:  Port Value = 21000
       OC4J RMI Port Range for Home available:  Port Value = 21001
       OC4J RMI Port Range for Home available:  Port Value = 21002
       OC4J RMI Port Range for Home available:  Port Value = 21003
       OC4J RMI Port Range for Home available:  Port Value = 21004
       OC4J RMI Port Range for Home Value = 21000-21004......  Available
       OC4J RMI Port Range for Oafm available:  Port Value = 25500
       OC4J RMI Port Range for Oafm available:  Port Value = 25501
       OC4J RMI Port Range for Oafm available:  Port Value = 25502
       OC4J RMI Port Range for Oafm available:  Port Value = 25503
       OC4J RMI Port Range for Oafm available:  Port Value = 25504
       OC4J RMI Port Range for Oafm Value = 25500-25504......  Available
    OS User and Group Check
    Domain=UTKARSH
    ,Username=Uday Gite
    ,PC-Name=UTKARSH
       User belongs to the Administrators Group.
    Port Uniqueness Check :
    -- database node ports --
    -- apps node ports --
       All ports are unique.
    File System Check :
    -- database node mount point --
       Database ORACLE_HOME created:
          Mount Point = C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0
       Database ORACLE_HOME admin folder created:
          Mount Point = C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\appsutil
       Database ORACLE_HOME temp folder created:
          Mount Point = C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\appsutil\temp
       Database Install Log Directory created:
          Mount Point = C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\appsutil\log\FPRD1_utkarsh
       Database Install Out Directory created:
          Mount Point = C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\appsutil\out\FPRD1_utkarsh\templbac
       Database Install Out Directory available:
          Mount Point = C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\appsutil\out\FPRD1_utkarsh\templbac
       OCM configuration target directory created:
          Mount Point = C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\appsutil\clone\\
       Database System File Directory created:
          Mount Point = C:\OracleApps\oracle\FPRD1\db\apps_st\data
       Database Log File Directory available:
          Mount Point = C:\OracleApps\oracle\FPRD1\db\apps_st\data
       Database Transaction File Directory available:
          Mount Point = C:\OracleApps\oracle\FPRD1\db\apps_st\data
       Database Archive File Directory available:
          Mount Point = C:\OracleApps\oracle\FPRD1\db\apps_st\data
       Database OraInventory File Directory created:
          Mount Point = c:\temp
    -- apps node mount point --
       APPL_TOP created:
          Mount Point = C:\OracleApps\oracle\FPRD1\apps\apps_st\appl
       APPL_TOP admin created:
          Mount Point = C:\OracleApps\oracle\FPRD1\apps\apps_st\appl\admin
       APPL_TOP mount 2 available:
          Mount Point = C:\OracleApps\oracle\FPRD1\apps\apps_st\appl
       APPL_TOP mount 3 available:
          Mount Point = C:\OracleApps\oracle\FPRD1\apps\apps_st\appl
       APPL_TOP mount 4 available:
          Mount Point = C:\OracleApps\oracle\FPRD1\apps\apps_st\appl
       COMMON_TOP created:
          Mount Point = C:\OracleApps\oracle\FPRD1\apps\apps_st\comn
       JAVA_TOP created:
          Mount Point = C:\OracleApps\oracle\FPRD1\apps\apps_st\comn\java\classes
       Temp Directory created:
          Mount Point = C:\OracleApps\oracle\FPRD1\instance\apps\FPRD1_utkarsh\temp
       APPL_TOP admin Install Log Directory created:
          Mount Point = C:\OracleApps\oracle\FPRD1\instance\apps\FPRD1_utkarsh\admin\log
       Apps ORACLE_HOME created:
          Mount Point = C:\OracleApps\oracle\FPRD1\apps\tech_st\10.1.3
       Tools ORACLE_HOME created:
          Mount Point = C:\OracleApps\oracle\FPRD1\apps\tech_st\10.1.2
       OCM configuration target directory created:
          Mount Point = C:\OracleApps\oracle\FPRD1\apps\tech_st\10.1.3\appsutil\clone\\
       OCM configuration target directory created:
          Mount Point = C:\OracleApps\oracle\FPRD1\apps\tech_st\10.1.2\appsutil\clone\\
       Apps ORACLE_HOME OraInventory File Directory available:
          Mount Point = c:\temp
       Tools ORACLE_HOME OraInventory File Directory available:
          Mount Point = c:\temp
            Writing configuration file to: C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\appsutil\conf_FPRD1.txt
    Adding ports for Server0_utkarsh
    Setting port s_db_ons_localport to 6300
    Setting port s_db_ons_remoteport to 6400
    Setting port s_cmanport to 1521
    Adding ports for Server1_utkarsh
    Setting port s_rpcport to 1626
    Setting port s_webssl_port to 4443
    Setting port s_ons_localport to 6100
    Setting port s_ons_remoteport to 6200
    Setting port s_ons_requestport to 6500
    Setting port s_webport to 8000
    Setting port s_active_webport to 8000
    Setting port s_formsport to 9000
    Setting port s_metdataport to 9100
    Setting port s_metreqport to 9200
    Setting port s_jtfuf_port to 9300
    Setting port s_mwaPortNo to 10200-10205
    Setting port s_mwaTelnetPortNo to 10200,10202,10204
    Setting port s_mwaDispatcherPort to 10800
    Setting port s_java_object_cache_port to 12345
    Setting port s_oacore_jms_portrange to 23000-23004
    Setting port s_forms_jms_portrange to 23500-23504
    Setting port s_home_jms_portrange to 24000-24004
    Setting port s_oafm_jms_portrange to 24500-24504
    Setting port s_oacore_ajp_portrange to 21500-21504
    Setting port s_forms_ajp_portrange to 22000-22004
    Setting port s_home_ajp_portrange to 22500-22504
    Setting port s_oafm_ajp_portrange to 25000-25004
    Setting port s_oacore_rmi_portrange to 20000-20004
    Setting port s_forms_rmi_portrange to 20500-20504
    Setting port s_home_rmi_portrange to 21000-21004
    Setting port s_oafm_rmi_portrange to 25500-25504
    File Space Check :
    -- database node space checks --
       Disk space on system acceptable:
       Database ORACLE_HOME = C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0
       required = 5600.0
       actual   = 249592.6953125
       Disk space on system acceptable:
       Database System File Directory = C:\OracleApps\oracle\FPRD1\db\apps_st\data
       required = 20200.0
       actual   = 243992.6953125
       Disk space on system acceptable:
       Database Log File Directory = C:\OracleApps\oracle\FPRD1\db\apps_st\data
       required = 950.0
       actual   = 223792.6953125
       Disk space on system acceptable:
       Database Transaction File Directory = C:\OracleApps\oracle\FPRD1\db\apps_st\data
       required = 103350.0
       actual   = 222842.6953125
       Disk space on system acceptable:
       Database Archive File Directory = C:\OracleApps\oracle\FPRD1\db\apps_st\data
       required = 64500.0
       actual   = 119492.6953125
    -- apps node space checks --
       Disk space on system acceptable:
       APPL_TOP = C:\OracleApps\oracle\FPRD1\apps\apps_st\appl
       required = 5800.0
       actual   = 54992.6953125
       Disk space on system acceptable:
       APPL_TOP mount 2 = C:\OracleApps\oracle\FPRD1\apps\apps_st\appl
       required = 2800.0
       actual   = 49192.6953125
       Disk space on system acceptable:
       APPL_TOP mount 3 = C:\OracleApps\oracle\FPRD1\apps\apps_st\appl
       required = 8400.0
       actual   = 46392.6953125
       Disk space on system acceptable:
       APPL_TOP mount 4 = C:\OracleApps\oracle\FPRD1\apps\apps_st\appl
       required = 3100.0
       actual   = 37992.6953125
       Disk space on system acceptable:
       COMMON_TOP = C:\OracleApps\oracle\FPRD1\apps\apps_st\comn
       required = 3200.0
       actual   = 34892.6953125
       Disk space on system acceptable:
       Apps ORACLE_HOME = C:\OracleApps\oracle\FPRD1\apps\tech_st\10.1.3
       required = 1400.0
       actual   = 31692.6953125
       Disk space on system acceptable:
       Tools ORACLE_HOME = C:\OracleApps\oracle\FPRD1\apps\tech_st\10.1.2
       required = 1400.0
       actual   = 30292.6953125
       Disk space on system acceptable:
       Temp Directory = C:\OracleApps\oracle\FPRD1\instance\apps\FPRD1_utkarsh\temp
       required = 1024.0
       actual   = 28892.6953125
    Host/Domain
       command: ping -n 1 utkarsh
    Pinging utkarsh.sparsh [10.10.12.6] with 32 bytes of data:
    Reply from 10.10.12.6: bytes=32 time<1ms TTL=128
    Ping statistics for 10.10.12.6:
        Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
        Minimum = 0ms, Maximum = 0ms, Average = 0ms
       host ping has succeeded
       command: ping -n 1 utkarsh.sparsh
    Pinging utkarsh.sparsh [10.10.12.6] with 32 bytes of data:
    Reply from 10.10.12.6: bytes=32 time<1ms TTL=128
    Ping statistics for 10.10.12.6:
        Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
        Minimum = 0ms, Maximum = 0ms, Average = 0ms
       host.domain ping has succeeded
    System Utilities
       command: cmd.exe /c C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\bin\adchkutl.cmd C:\OracleApps\Cygwin\bin C:\OracleApps\VIS2008\VC\bin
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>echo off
    /cygdrive/c/WINDOWS/system32/cmd
    'which' command is available.
    /usr/bin/gnumake
    'gnumake' is available.
    /cygdrive/c/WINDOWS/system32/cl
    'cc' is available.
    /usr/bin/link
    'link' is available.
    ERRORCODE = 0    ERRORCODE_ENDThe system cannot find the path specified.
    System Utilities Availability test has succeeded
    AllNodesPanel
        Service Name: utkarsh
        Node Name: _utkarsh
        Operating System: _Windows (32-bit)
        Service Name: utkarsh
        Node Name: _utkarsh
        Operating System: _Windows (32-bit)
    DoInstallPanel - Summary Text
    The Rapid Install Wizard will now install the following:
    DoInstallPanel - User continued install at warning dialog.
    Starting from Rapid Install Full Stage area C:\OracleApps\stageR12\oraDB\Disk1
    Exception thrown in getAllProductIDs. 0
    RapidWiz location:      C:\OracleApps\stageR12\startCD\Disk1\rapidwiz
    Install Media location: C:\OracleApps\stageR12\startCD\Disk1
    Database ORACLE_HOME:   C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0
    Database SID:           FPRD1
    Database Context Name : FPRD1_utkarsh
    Creating DB Context: C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\appsutil\FPRD1_utkarsh.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxdbctx.tmp
       dest   : C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\appsutil\FPRD1_utkarsh.xml
    instantiate file:
       source : C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\appsutil\FPRD1_utkarsh.xml
       dest   : C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\appsutil\FPRD1_utkarsh.xml
    instantiate file:
       source : C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\appsutil\FPRD1_utkarsh.xml
       dest   : C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\appsutil\FPRD1_utkarsh.xml
    instantiate file:
       source : C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\temp\restart.xml
       dest   : C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\temp\restart.xml
    instantiate file:
       source : C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\temp\restart.xml
       dest   : C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\temp\restart.xml
    Exception thrown in getAllProductIDs. 0
    RapidWiz location:      C:\OracleApps\stageR12\startCD\Disk1\rapidwiz
    Install Media location: C:\OracleApps\stageR12\startCD\Disk1
    APPL_TOP location:      C:\OracleApps\oracle\FPRD1\apps\apps_st\appl
    Database SID:           FPRD1
    APPL_TOP Context Name : FPRD1_utkarsh
    INST_TOP location:      C:\OracleApps\oracle\FPRD1\instance\apps\FPRD1_utkarsh
    Creating Apps Context: C:\OracleApps\oracle\FPRD1\instance\apps\FPRD1_utkarsh\appl\admin\FPRD1_utkarsh.xml
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\etc\adxmlctx.tmp
       dest   : C:\OracleApps\oracle\FPRD1\instance\apps\FPRD1_utkarsh\appl\admin\FPRD1_utkarsh.xml
    instantiate file:
       source : C:\OracleApps\oracle\FPRD1\instance\apps\FPRD1_utkarsh\appl\admin\FPRD1_utkarsh.xml
       dest   : C:\OracleApps\oracle\FPRD1\instance\apps\FPRD1_utkarsh\appl\admin\FPRD1_utkarsh.xml
    instantiate file:
       source : C:\OracleApps\oracle\FPRD1\instance\apps\FPRD1_utkarsh\appl\admin\FPRD1_utkarsh.xml
       dest   : C:\OracleApps\oracle\FPRD1\instance\apps\FPRD1_utkarsh\appl\admin\FPRD1_utkarsh.xml
    instantiate file:
       source : C:\OracleApps\oracle\FPRD1\instance\apps\FPRD1_utkarsh\temp\restart.xml
       dest   : C:\OracleApps\oracle\FPRD1\instance\apps\FPRD1_utkarsh\temp\restart.xml
    instantiate file:
       source : C:\OracleApps\oracle\FPRD1\instance\apps\FPRD1_utkarsh\temp\restart.xml
       dest   : C:\OracleApps\oracle\FPRD1\instance\apps\FPRD1_utkarsh\temp\restart.xml
    Processing DriverFile = C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\template\adridb.drv
    Running Instantiation Drivers for C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\template\adridb.drv
    Processing DriverFile = C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\template\adriapps.drv
    Running Instantiation Drivers for C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\template\adriapps.drv
    Total number of processes in Current Install 5
    Processing DriverFile = C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\template\adridb.drv
    Running Instantiation Drivers for C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\template\adridb.drv
    Creation of Directory - C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\temp\FPRD1_utkarsh Succeeded.
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\template\adrun11g.cmd
       dest   : C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\temp\FPRD1_utkarsh\adrun11g.cmd
       backup : C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\temp\FPRD1_utkarsh\adrun11g.cmd to C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\appsutil\out\FPRD1_utkarsh\templbac\adrun11g.cmd
    instantiate file:
       source : C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\template\adrundb.cmd
       dest   : C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\temp\FPRD1_utkarsh\adrundb.cmd
       backup : C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\temp\FPRD1_utkarsh\adrundb.cmd to C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\appsutil\out\FPRD1_utkarsh\templbac\adrundb.cmd
    Step 0 of 5
    Command: C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\temp\FPRD1_utkarsh\adrun11g.cmd
    Processing Step 1 of 5
    Executing: C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\temp\FPRD1_utkarsh\adrun11g.cmd
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>REM
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>REM $Header: adrun11g.cmd 120.11 2009/03/11 21:22:03 marderiu noship $
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>REM ###############################################################
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>REM 
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>REM This file is automatically generated by AutoConfig.  It will be read and
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>REM overwritten.  If you were instructed to edit this file, or if you are not
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>REM able to use the settings created by AutoConfig, refer to Metalink Note
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>REM 387859.1 for assistance.
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>REM 
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>REM ###############################################################
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>REM
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>FOR /F "delims==" %a IN ('DATE /T') DO (set date=%a )
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>(set date=Sun 01/12/2014  )
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>FOR /F "delims==" %a IN ('TIME /T') DO (set time=%a )
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>(set time=03:05 PM )
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>ECHO STARTED INSTALL PHASE : 11g RDBMS : Sun 01/12/2014 03:05 PM
    STARTED INSTALL PHASE : 11g RDBMS : Sun 01/12/2014 03:05 PM
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>SET JRE_PATH=C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\jre\NT\1.6.0\bin\java
    C:\OracleApps\stageR12\startCD\Disk1\rapidwiz>SET JRE_CP=.;C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\jlib\java;C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\jlib\xmlparserv2.jar;C:\OracleApps\stageR12\startCD\Disk1\rapidwiz\jlib\ojdbc14.jar;C:\OracleApps\stageR12\startCD\Disk1\ra

    "R12 E-Business suite installation error on Windows XP-SP3"
    Your OS is not supported.
    Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Microsoft Windows Server (32-bit) (Doc ID 761567.1)
    Log file located at C:\OracleApps\oracle\FPRD1\db\tech_st\11.1.0\appsutil\log\FPRD1_utkarsh\ApplyDatabase_01121856.log
    Any details about the error in this log file?
    Please review log files mentioned in (How to locate the log files and troubleshoot Rapid Install for Release 12.0.x and 12.1.x (Doc ID 452120.1)) and upload them in one zip file to any free hosting website and post the link here. Please do NOT copy/paste the contents of the log files in this thread.
    Thanks,
    Hussein

  • Connector install fails with Server Error on Windows 8.1 Pro

    I have tried everything and cannot get the connector software to install on my computer.
    Server=Dell PowerEdge R210II, Windows 2012 Essentials
    Computer = Dell Inspiron 17R, Windows 8.1 Professional
    LAN = 192.168.0.0/24, Server is 192.168.0.2, not using IPv6 but it's enabled on server and clients. Computers get IP and config from DHCP, DNS only points to server. servername.domain.local resolves fine. I can also join the computer to AD the old way
    (without connector). I have other Windows 8 comptuers on the domain that have the connector installed.
    ClientDeploy.log:
    [6720] 140301.134541.5354: ClientSetup: Start of ClientDeploy
    [6720] 140301.134541.6292: General: Initializing...C:\WINDOWS\Temp\Client Deployment Files\ClientDeploy.exe
    [6720] 140301.134541.6448: ClientSetup: Loading Wizard Data
    [6720] 140301.134541.6761: ClientSetup: Current DeploymentStatus=Running
    [6720] 140301.134541.9573: ClientSetup: Showing the Client Deployment Wizard
    [6720] 140301.134542.0823: ClientSetup: Adding Server Info data in the Product Registry
    [6720] 140301.134542.0979: ClientSetup: Set the Deployment Sync Event
    [7748] 140301.134552.6138: ClientSetup: Running InstallRootCert Task at WizardPage DomainUserCred
    [7748] 140301.134552.6293: ClientSetup: Entering ConnectorWizardForm.RunTasks
    [7748] 140301.134552.6293: ClientSetup: Running Task with Id=ClientDeploy.InstallRootCertTask
    [7748] 140301.134552.6293: ClientSetup: Entering InstallRootCertTask.Run
    [7748] 140301.134552.6293: ClientSetup: Install root cert to local trusted store
    [7748] 140301.134552.6450: ClientSetup: Exiting InstallRootCertTask.Run
    [7748] 140301.134552.6450: ClientSetup: Task with Id=ClientDeploy.InstallRootCertTask has TaskStatus=Success
    [7748] 140301.134552.6450: ClientSetup: Task with Id=ClientDeploy.InstallRootCertTask has RebootStatus=NoReboot
    [7748] 140301.134552.6450: ClientSetup: Exting ConnectorWizardForm.RunTasks
    [7748] 140301.134552.6450: ClientSetup: Running SetupVPNAndDA Task at WizardPage DomainUserCred
    [7748] 140301.134552.6450: ClientSetup: Entering ConnectorWizardForm.RunTasks
    [7748] 140301.134552.6450: ClientSetup: Running Task with Id=ClientDeploy.SetupVpnAndDATask
    [7748] 140301.134552.6450: ClientSetup: Entering SetupVpnAndDATask.Run
    [7748] 140301.134552.6606: ClientSetup: Deploy VPN profile
    [7748] 140301.134552.7075: ClientSetup: Exting SetupVpnAndDATask.Run
    [7748] 140301.134552.7075: ClientSetup: Task with Id=ClientDeploy.SetupVpnAndDATask has TaskStatus=Success
    [7748] 140301.134552.7075: ClientSetup: Task with Id=ClientDeploy.SetupVpnAndDATask has RebootStatus=NoReboot
    [7748] 140301.134552.7075: ClientSetup: Exting ConnectorWizardForm.RunTasks
    [7748] 140301.134552.7075: ClientSetup: Running ValidateUser Tasks at WizardPage DomainUserCred
    [7748] 140301.134552.7075: ClientSetup: Entering ConnectorWizardForm.RunTasks
    [7748] 140301.134552.7075: ClientSetup: Running Task with Id=ClientDeploy.ValidateUser
    [7748] 140301.134552.7075: ClientSetup: Entering ValidateUserTask.Run
    [7748] 140301.134552.7075: ClientSetup: Validating User
    [7748] 140301.134552.7075: ClientSetup: Call MachineIdentityManager.GetMachineStatus
    [7748] 140301.134552.8169: ClientSetup: MachineIdentityManager.GetMachineStatus had errors: ErrorCatalog:NetworkError ErrorCode:-1
    BaseException: Microsoft.WindowsServerSolutions.Devices.Identity.MachineIdentityException: MachineIdentityManager.GetMachineStatus ---> System.ServiceModel.FaultException: The server was unable to process the request due to an internal error.  For more
    information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to the client, or turn on
    tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.
    Server stack trace:
       at System.ServiceModel.Channels.ServiceChannel.ThrowIfFaultUnderstood(Message reply, MessageFault fault, String action, MessageVersion version, FaultConverter faultConverter)
       at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc& rpc)
       at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
       at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
    Exception rethrown at [0]:
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at Microsoft.WindowsServerSolutions.Devices.Identity.ICertService.GetMachineStatus(MachineStatus& status, Boolean& isAdmin, Int32& maxClientNum, Int32& currentClientNum, String userName, String password, String machineName)
       at Microsoft.WindowsServerSolutions.Devices.Identity.MachineIdentityManager.GetMachineStatus(String serverName, String userName, String password, String machineName, Boolean& isAdmin)
       --- End of inner exception stack trace ---
       at Microsoft.WindowsServerSolutions.Devices.Identity.MachineIdentityManager.GetMachineStatus(String serverName, String userName, String password, String machineName, Boolean& isAdmin)
       at Microsoft.WindowsServerSolutions.ClientSetup.ClientDeploy.ValidateUserTask.Run(WizData data)
    [7748] 140301.134552.8169: ClientSetup: Exiting ValidateUserTask.Run
    [7748] 140301.134552.8169: ClientSetup: Task with Id=ClientDeploy.ValidateUser has TaskStatus=Failed
    [7748] 140301.134552.8169: ClientSetup: Task with Id=ClientDeploy.ValidateUser has RebootStatus=NoReboot
    [7748] 140301.134552.8169: ClientSetup: Exting ConnectorWizardForm.RunTasks
    [6720] 140301.134552.8325: ClientSetup: JoinNetwork Tasks returned TaskStatus=Failed
    [6720] 140301.134554.7857: ClientSetup: Back from the Client Deployment Wizard
    [6720] 140301.134554.8012: ClientSetup: Saving Wizard Data
    [6720] 140301.134554.8012: ClientSetup: End of ClientDeploy: ErrorCode=1603
    Where do I go from here? I would really appreciate some help. Thank you, Michael
    Michael Maxwell

    I found the issue. The web.config file became damaged on the server. C:\Program Files\Windows Server\Bin\WebApps\CertWebService\Web.config is the file. Performed a search and replace, replace all instances of "%SBSPRODUCTBINPLACEHOLDER% with C:\Program Files\Windows
    Server\Bin, restart IIS and run the Connector software install again. Here is a KB on the issue:
    http://support.microsoft.com/kb/2828269
    Michael
    Michael Maxwell

  • Windows 8.1 fresh install of iTunes 11.1.3: Error 7 (Windows error 193)

    Hi.
    I have installed Windows 8.1 yesterday. I downloaded and installed iTunes64 11.1.3, but when I try to start it I get this:
    iTunes
    iTunes was not installed correctly.  Please reinstall iTunes.
    Error 7 (Windows error 193)
    OK  
    I browsed several sites describing similar problems. But uninstalling/reinstalling every related to Apple (even with Revo Uninstaller) did not help. Dot-Net Framework is build in in Windows 8, so http://support.apple.com/kb/ts3074 does not help.
    Any ideas?
    Cheers, Tobias

    Hello,
    Are you able to share your Blend logs?
    On a Windows PC:
    C:/Users/<username>/AppData/Local/Temp/Screenshot_<date>.png
    C:/Users/<username>/AppData/Local/BlackBerry/Blend/Logs
    C:/Users/<username>/AppData/Local/Temp
    (BBBlend_Install.log, rim_usb_install_log*.log, blackberryncm_log*.log, blackberry_desktop_software_*.log, ConnectivityRegistryKeys.txt, "BlendIPConfigAllOutput.txt, BlendRouteOutput.txt, BlendMSInfo32.nfo)
    C:/Windows/inf (setupapi.dev.log)
    C:/Windows" (setupapi.log)
    C:/Users/<username>/AppData/Local/BlackBerry/Blend/Logs
    C:/Users/<username>/AppData/LocalLow/BlackBerry/Blend/Logs
    C:/Users/<username>/AppData/Local/Research In Motion/BlackBerry 10 Desktop/Logs/PeerToPeer
    C:/ProgramData/Research In Motion/Tunnel Manager
    C:/ProgramData/Research In Motion/BlackBerry 10 Desktop/Logs/PeerToPeer
    C:/Users/<username>/AppData/Local/BlackBerry/Blend
    C:/Users/<username>/AppData/Roaming/Research In Motion/BlackBerry 10 Desktop/RemoteAccess/nginx/conf"
    On a Mac PC:
    $TMPDIR/Screenshot_<date>.png
    $TMPDIR/BlendSample_Blend_*txt
    /Users/akwak/Library/Application Support/BlackBerry/Blend/Logs
    /Users/akwak/Library/Logs/BlackBerry/PeerManager
    /Library/Logs/BlackBerry/TunnelManager
    /Users/akwak/Library/Logs/DiagnosticReports
    /Library/Logs/DiagnosticReports
    Did someone help you? Click Like! Did a post solve your issue? Click Accept as Solution!

  • MacBook Air running Bootcamp getting ACPI errors in Windows

    We have a number of MacBook Air 13" mid-2014 A1466 models running Bootcamp with Windows 7 64 bit Enterprise.
    (We image them with Windows & Bootcamp, no Mac OS X partition)
    We are using latest Bootcamp 5.1.5640 drivers
    They work fine for most applications.
    We are regularly getting ACPI errors
    The error in Windows System log is
    Source: ACPI
    Description: The embedded controller (EC) did not respond within the specified timeoutperiod. This may indicate there is an error in the EC hardware or firmware that the BIOS is accessing the EC incorrectly. You should check with your computer manufacturer for an upgraded BIOS. In some situations, this error may cause the computer to function incorrectly.
    The error we are seeing is when a user is logged into a Windows domain it should pass the Windows password to other applications like Outlook, Lync, etc. Instead, on these Macs, they regularly prompt for the Windows password to re-connect to the source. We don't get this issue with normal Windows PCs.
    Also booting has a slight delay of around 10 seconds before Windows begins loading. Don't this delay with older MacBook Airs.
    Have looked at repairing Bootcamp drivers. EFI & SMC looks up to date, had to use Mac boot USB to check this info.

    VikingBrad wrote:
    Just re-reading my post and I was unclear. Yes we do use EFI and boot directly into Windows.
    This is good to know.
    The Windows partition is joined to an AD domain and logs in fine with AD credentials.
    The only problem being that when we open Outlook or Lync or other apps that require AD authentication the user is prompted for their AD credentials.
    We have cleared Credential Manager in Windows, tried different users with no success. It works with older MacBooks and Windows PC. Seems to just be these latest MacBook Air 2014 models with the issue. After user re-enters AD credentials they can connect to Outlook, etc.
    This may be a bit off-topic, but Macs do not "officially" support Enterprise versions of Windows. Can I suggest using a test 2014 MBA, installing W7/W8 64-bit, and configuring for AD authentication and testing. Are there any known DNS issues on this Macs? In all the applications which do not function correctly, does the username show up correctly populated, when prompted for login?
    The only error we see in Event log is the ACPI error so suspect it is related. But we have latest Bootcamp drivers from Apple perhaps we are off track.
    If the user successfully enters credentials when prompted for say, Outlook, and the computer is made to sleep or hibernate, is the connection to Outlook/Lync still up if the timeout for sessions (if any) has not yet expired and the computer is woken up?
    It may also be worthwhile to look for requests being made for authentication before the applications prompt the user for credentials.

  • Service 'Apple Mobile Device' (Apple Mobile Device) failed to start.  Verify that you have sufficient privileges to start system services. and 'iTunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows error 193)

    Hi!
    So i think i closed the wrong service at some point a few weeks back (apple mobile device) but iTunes remained working after that for another week. I then updated iTunes and i get the same  "Service ‘Apple Mobile Device’ (Apple Mobile Device) failed to start.  Verify that you have sufficient privileges to start system services." every time. If i click ignore, just so i can access iTunes with out syncing my iPod (touch 2nd gen) i then get 'iTunes was not installed correctly. Please re-install iTunes. Error 7 (Windows error 193)" when it has all installed. I don't understand what the problem is anymore as I have looked at other questions on the apple website, carried out the advice and it hasn't work. Any of them.
    Tings I have done:
    - Wiped all iTunes and Apple data from my computer (if you search for 'iTunes' or 'Apple' nothing comes up apart from applets from system code.
    - Attached iPod before iTunes install and updated drivers.
    - Installed iTunes as 'Run as administrator'
    - Uninstalled and re-installed the software nearly 20 times now and rebooted the computer in between everytime.
    Please someone help because i really need to get music on my ipod and i enjoy the ease of use of iTunes compared to spotify or Windows Media Player.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for performance issues or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    Regarding AMDS failures there is a hint in another thread that disabling the Windows Firewall before attempting to reinstall may help, otherwise take a look at the steps outlined in this post. Re: Can't install iTunes 12.1 on Windows 7 64-bit. I know they look a little daunting, but the process of generating the logs themselves isn't that hard to do. Extracting useful information from them is still a challenge but maybe something will leap out. If you want to post the log for the failed components for me to have a look at here or in the other thread please edit out any personal information, particularly your email address, first.
    tt2

  • ITunes reinstallation brings ''error 7 - Windows error 126'

    I had to de-install and re-install iTunes (version 11.1.4 64bit) on Windows-8.1. At the end of the installation  process I got the message: "Service 'Apple mobile device' could not be started. Please check wheather you have sufficient authorization to start the system-services" (translated from German). This came though I was logged on as Systems Administrator. When I started the Task-Manager as Systems Administrator and tried to start 'Apple mobile device' I got the message "the service does not respond in time tot he start or control request. Error 1053)"
    If I ignore the message above and try o start iTunes I get immediately "iTunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows error 126)". This happens whenever I de- and re-install iTunes.
    Could you please help.
    Thanks in advance
    Hans M.

    I'm happy to tell you that "Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8",
    http://support.apple.com/kb/ht1923 solved my problem.
    Great many thanks to whoever created this procedure!
    There is one additional remark though: In order to remove the specified folders you have to be logged on as Administrator, knowing the Administrator's password is not sufficient. Anyway, I'm tremendously grateful to you supporters!
    Hans M. 

  • Why do I face error 7 Windows error 193 when i try to reinstall my iTunes? I've tried few times uninstalling and reinstalling but it seems that it doesn't work.

    Since yesterday, I failed to update the latest iTunes. Today i tried to open iTunes but it says iTunes were not installed properly. And this error 7 (Windows error 193) popped out. I tried to search the solution by people suggestions,which is uninstall all the apple program and reinstall it again. I tried few times but the same thing came out. What am I suppose to do for this problem?

    So each time you have tried to install an older build you have followed the removal steps given in the second box of my user tip, or some similar process, that uninstalls all Apple software components, and cleans the folders those components would have installed to, rebooted, and then tried an alternate build?
    Do you recieve any error messages during the installation? Have you, for example, tried the process outlined at Install Missing Components? If so which component will not install and what error message does it give you? I can point you in the direction of steps to generate installation logs if you wish. Actually, see my post in this thread: Can't install iTunes 12.1 on Windows 7 64-bit.
    Which builds have you tried?
    iTunes 12.1.1.4 for Windows (32-bit) - iTunesSetup.exe (2015-02-18)
    iTunes 12.1.1.4 for Windows (64-bit) - itunes6464setup.exe (2015-02-17)
    iTunes 12.1.1.4 for Windows (64-bit - for older video cards) - iTunes64Setup.exe (2015-02-18)
    iTunes 12.1.0.71 for Windows (32-bit) - itunessetup.exe (2015-01-28)
    iTunes 12.1.0.71 for Windows (64-bit) - itunes6464setup.exe (2015-01-28)
    iTunes 12.1.0.71 for Windows (64-bit - for older video cards) - itunes64setup.exe (2015-01-28)
    iTunes 12.0.1.26 for Windows (32-bit) - iTunesSetup.exe (2014-10-16)
    iTunes 12.0.1.26 for Windows (64-bit) - iTunes64Setup.exe (2014-10-16)
    iTunes 11.4.0.18 for Windows (32-bit) - iTunesSetup.exe (2014-09-09)
    iTunes 11.4.0.18 for Windows (64-bit) - iTunes64Setup.exe (2014-09-09)
    Or something specific from OldApps.com?
    What was the last build of iTunes that successfully ran for you?
    tt2

Maybe you are looking for

  • External Flickering in 10.6.6 (LG M227WDP)

    Hi, i have looked through the forums and seen a lot of people talking about screen flickering on there external monitors in 10.6.5 and then saying that the issue is gone in 10.6.6 sadly this issue started for me in 10.6.5 and still remains even after

  • E-mail activation / BBM

    Hi ! Where can I get my activation password? My bbm is not working in my device, when i invite my friends in bbm they are always pending and vise versa in their blackberry. Can u teach me how to work things out? Thank you !

  • WVC54GC and SKYPE

    Can anyone tell me how I can get my WVC54GC wireless camera to work with skype ?? thank you !!

  • Unsuccessful export from trial version of CS6 InDesign to EPUB

    I'm  hoping it's because I have a trial version of InDesign. When I export from InDesign to EPUB 2.0.1 I'm following instructions from this video, but all I get is an empty file. No error message, just the blank file. I'm trying to test how anchors w

  • Query about TO_DATE,thanks

    there is a sql. select to_date('2008年10月15日',fmt,nlsparm) from dual fmt= ????? nlsparm=CHINESE.ZHS16GBK????? regards, lao