Unattended install or Oracle9iR2 using responseFile on RHEL3

Hi,
I am following this document to do the Oracle9iR2 install on RHEL3: http://www.puschitz.com/InstallingOracle9i.shtml
The Manual installation went fine for me. But my requirement is to do an Unattended install so that I can write a script and deploy to the do further installations on machines.
1) Following the same document, I create:
--- Oracle users ---
groupadd dba # group of users to be granted with SYSDBA system privilege
groupadd oinstall # group owner of Oracle files
useradd -c "Oracle software owner" -g oinstall -G dba oracle
passwd oracle
--- Oracle directories ---
mkdir -p /opt/app/oracle/product/9.2.0
chown -R oracle.oinstall /opt/app/oracle
mkdir /var/opt/oracle
chown oracle.dba /var/opt/oracle
chmod 755 /var/opt/oracle
2) The Following are choices which I make in manual install ( and I need the same in responseFile also)
/mnt/cdrom/runInstaller
- Welcome Screen: Click Next
- Inventory Location: Click Next
- Unix Group Name: Use "oinstall" and click Next
When asked to run /tmp/orainstRoot.sh, run it before you click Continue
- File Locations: Use default values
- Available Products: Select "Oracle9i Database 9.2.0.1.0"
- Installation Types: Select Custom since we only want to install the software for now
- Available Products: Click Next or add some more components.
- Components Locations: Accept default values and click Next
- Privileged Operating System Groups:
I used the default values: OSDBA Group = dba, OSOPER Group = dba
- Oracle Managent Server Repository:
I used the default choice
- Create database: Select NO since we first have to patch Oracle before a database can be created!
- Summary: Start the Install
- Configuration tools: Tools won't come up. Simply ignore it.
- At the end of the installation, exit runInstaller.
I copied custom.rsp into the home directory and modified the following:
UNIX_GROUP_NAME= oinstall
ORACLE_HOME=/opt/app/oracle/
ORACLE_HOME_NAME=OUIHome
and left the other entries in the response file (custom.rsp) as such.
When I do an unattended install using responseFile, the screen does not proceed.
The Universal Installer comes up and there is no progress!. ( Next is not pressed in the unattended fashion).
Can someone share with me a working copy of a responsefile which does an unattended custom install? I assume what is the response directory should be working one, but I am unable to figure out where I have gone wrong.
Where do I give OSDBAGroup = dba values? and how do I make it to go from one screen to next?
Thanks in advance.
Senthil

But my requirement is to do an Unattended install so that I can write a script and deploy to the do further installations on machines.Why write? You can record your own responfile (during manual install) and use it for future installs.
./runInstaller -record -destinationFile /tmp/myinstall.rsp

Similar Messages

  • Commands to copy apps to local drive from networkshare and installing via unattend install

    Hi Everyone,
    I'm in the process of deploying and testing Windows 8.1 with different settings via unattended answer file. I would like to test out with another settings during unattended install but I'm having a hard time to implement it. Here is the scenario, I've a
    server named WDS-DEP-SERV with a hard drive portioned into 2. One is C and other is E. On my E drive, I've a bunch of .exe apps saved. I would like my unattended answer file to pull those .exe apps over to the local drive from network share and install them
    as the unattended install takes place. I'm looking for a command that can help me achieve it in a silent mode. During testing before, I was able to have my unattended file to pull VMware tools drivers from network share under RunSynchronousCommand parameter
    with domain credentials of the network share and it installed successfully. For example, like this below.
    \\WDS-DEP-SERV\E\Distribution\Drivers\setup64.exe /s /v "/qn REBOOT=ReallySuppress" /l C:\Windows\Temp\vmware_tools_install.log
    I was searching online and came across a lot of things but none answered what I'm looking for. Can someone please reply back with the answers on how can I implement it in my unattended file.
    1) To be able to have unattended file pulling drivers from network share, copy them over to local drive during unattended installation process and execute them silently. I need a command to pull this off.
    2) What pass should I use in unattended file?
    3) So far, I've used RunSynchronouscommand  under Windows Deployement Neutral during "Specialize" pass to install just VMware tools. Is there a way to execute all apps in one go instead of doing it one at a time via Synchronouscommand? Please
    correct me if I'm wrong, Is it true every time you use Synchronouscommands for various different apps or scripts to pull from network share, you'll have to use network credentials under each and every Synchronouscommands section. Like, if I add 4 SyncrhonousCommands
    to the unattended file to pull 4 different apps or scripts from network share, I must provide network share credentials for each of those. Can it be just one time network share credentials under those and they all get pulled and executed during unattended
    install?
    Again, please if someone can get back to help me out. I would really appreciate it. Hope to hear from someone soon. Below is my unattended answer file in case someone would like to see it to understand better.
    ?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="specialize">
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ComputerName>WIN-8-DEPL</ComputerName>
                <ProductKey>MHF9N-XY6XB-WVXMC-BTDCT-MKKG7</ProductKey>
                <RegisteredOrganization>Microsoft</RegisteredOrganization>
                <RegisteredOwner>Microsoft</RegisteredOwner>
                <ShowWindowsLive>false</ShowWindowsLive>
                <TimeZone>eastern standard time</TimeZone>
                <CopyProfile>true</CopyProfile>
                <BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled>
            </component>
            <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <RunSynchronous>
                    <RunSynchronousCommand wcm:action="add">
                        <Order>1</Order>
                        <Path>net user administrator /active:no</Path>
                        <Description>Enabling Built in Administrator Account</Description>
                        <WillReboot>Never</WillReboot>
                    </RunSynchronousCommand>
                    <RunSynchronousCommand wcm:action="add">
                        <Description>DisableNetworkLocationPrompt</Description>
                        <Order>2</Order>
                        <Path>REG ADD &quot;HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork&quot; /v Category
    /t REG_DWORD /d 00000000 /f</Path>
                        <WillReboot>Never</WillReboot>
                    </RunSynchronousCommand>
                    <RunSynchronousCommand wcm:action="add">
                        <Path>REG ADD HKLM\System\CurrentControlSet\Services\Tcpip6\parameters /v DisabledComponents /t REG_DWORD /d 0xFF /f</Path>
                        <Order>3</Order>
                        <Description>Diasbling IPV6</Description>
                        <WillReboot>Never</WillReboot>
                    </RunSynchronousCommand>
                    <RunSynchronousCommand wcm:action="add">
                        <Credentials>
                            <Domain>Mikasa.local</Domain>
                            <Password>Ghtwhts2015</Password>
                            <Username>Administrator</Username>
                        </Credentials>
                        <Path>\\WDS-DEP-SERV\E\Distribution\Drivers\setup64.exe /s /v &quot;/qn REBOOT=ReallySuppress&quot; /l C:\Windows\Temp\vmware_tools_install.log</Path>
                        <Order>4</Order>
                        <Description>Vmware Tools Installation</Description>
                        <WillReboot>Always</WillReboot>
                    </RunSynchronousCommand>
                </RunSynchronous>
            </component>
            <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <DisableAccelerators>true</DisableAccelerators>
                <DisableFirstRunWizard>true</DisableFirstRunWizard>
                <Home_Page>www.marca.com</Home_Page>
                <BlockPopups>yes</BlockPopups>
            </component>
            <component name="Microsoft-Windows-TerminalServices-LocalSessionManager" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <fDenyTSConnections>false</fDenyTSConnections>
            </component>
            <component name="Networking-MPSSVC-Svc" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <FirewallGroups>
                    <FirewallGroup wcm:action="add" wcm:keyValue="Remote Desktop">
                        <Active>true</Active>
                        <Group>Remote Desktop</Group>
                        <Profile>all</Profile>
                    </FirewallGroup>
                </FirewallGroups>
            </component>
            <component name="Microsoft-Windows-TerminalServices-RDP-WinStationExtensions" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <UserAuthentication>0</UserAuthentication>
                <SecurityLayer>1</SecurityLayer>
            </component>
            <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SkipAutoActivation>true</SkipAutoActivation>
            </component>
            <component name="Microsoft-Windows-TCPIP" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <Interfaces>
                    <Interface wcm:action="add">
                        <Identifier>00-50-56-30-85-87</Identifier>
                        <Ipv4Settings>
                            <DhcpEnabled>false</DhcpEnabled>
                            <Metric>10</Metric>
                            <RouterDiscoveryEnabled>true</RouterDiscoveryEnabled>
                        </Ipv4Settings>
                        <UnicastIpAddresses>
                            <IpAddress wcm:action="add" wcm:keyValue="1">172.16.5.120/24</IpAddress>
                        </UnicastIpAddresses>
                        <Routes>
                            <Route wcm:action="add">
                                <Identifier>0</Identifier>
                                <Prefix>0.0.0.0/0</Prefix>
                                <Metric>10</Metric>
                                <NextHopAddress>172.16.5.1</NextHopAddress>
                            </Route>
                        </Routes>
                    </Interface>
                </Interfaces>
            </component>
        </settings>
        <settings pass="oobeSystem">
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <AutoLogon>
                    <Password>
                        <Value>RwBoAHQAdwBoAHQAcwAyADAAMQA2AFAAYQBzAHMAdwBvAHIAZAA=</Value>
                        <PlainText>false</PlainText>
                    </Password>
                    <Enabled>true</Enabled>
                    <LogonCount>10</LogonCount>
                    <Username>DarkKnight</Username>
                    <Domain></Domain>
                </AutoLogon>
                <OOBE>
                    <HideEULAPage>true</HideEULAPage>
                    <NetworkLocation>Home</NetworkLocation>
                    <ProtectYourPC>1</ProtectYourPC>
                    <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
                    <HideWirelessSetupInOOBE>false</HideWirelessSetupInOOBE>
                </OOBE>
                <UserAccounts>
                    <AdministratorPassword>
                        <Value>RwBoAHQAdwBoAHQAcwAyADAAMQA2AEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==</Value>
                        <PlainText>false</PlainText>
                    </AdministratorPassword>
                    <LocalAccounts>
                        <LocalAccount wcm:action="add">
                            <Password>
                                <Value>RwBoAHQAdwBoAHQAcwAyADAAMQA2AFAAYQBzAHMAdwBvAHIAZAA=</Value>
                                <PlainText>false</PlainText>
                            </Password>
                            <Description>Admin User Account</Description>
                            <DisplayName>DarkKnight</DisplayName>
                            <Group>Administrators</Group>
                            <Name>DarkKnight</Name>
                        </LocalAccount>
                    </LocalAccounts>
                </UserAccounts>
                <RegisteredOrganization>Mikasa</RegisteredOrganization>
                <RegisteredOwner>Mikasa</RegisteredOwner>
                <ShowWindowsLive>false</ShowWindowsLive>
                <TimeZone>eastern standard time</TimeZone>
            </component>
            <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <InputLocale>en-US</InputLocale>
                <SystemLocale>en-US</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>en-US</UserLocale>
                <UILanguageFallback></UILanguageFallback>
            </component>
            <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <Reseal>
                    <Mode>Audit</Mode>
                    <ForceShutdownNow>false</ForceShutdownNow>
                </Reseal>
            </component>
        </settings>
        <settings pass="generalize">
            <component name="Microsoft-Windows-Security-SPP" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SkipRearm>1</SkipRearm>
            </component>
        </settings>
        <settings pass="offlineServicing">
            <component name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <EnableLUA>false</EnableLUA>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="wim:e:/windows-os-images/win8.1x86ent-wimfiles/install.wim#Windows 8.1 Enterprise" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>
    Thanks
    Omar

    My script on my network share failed to run during unattend install right before the first login. Can someone take a look at my unattend xml file and suggest me a solution?
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="specialize">
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <ComputerName>WIN-8-DEPL</ComputerName>
    <ProductKey>MHF9N-XY6XB-WVXMC-BTDCT-MKKG7</ProductKey>
    <RegisteredOrganization>Microsoft</RegisteredOrganization>
    <RegisteredOwner>Microsoft</RegisteredOwner>
    <ShowWindowsLive>false</ShowWindowsLive>
    <TimeZone>eastern standard time</TimeZone>
    <CopyProfile>true</CopyProfile>
    <BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled>
    </component>
    <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <RunSynchronous>
    <RunSynchronousCommand wcm:action="add">
    <Order>1</Order>
    <Path>net user administrator /active:no</Path>
    <Description>Enabling Built in Administrator Account</Description>
    <WillReboot>Never</WillReboot>
    </RunSynchronousCommand>
    <RunSynchronousCommand wcm:action="add">
    <Description>DisableNetworkLocationPrompt</Description>
    <Order>2</Order>
    <Path>REG ADD &quot;HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork&quot; /v Category /t REG_DWORD /d 00000000 /f</Path>
    <WillReboot>Never</WillReboot>
    </RunSynchronousCommand>
    <RunSynchronousCommand wcm:action="add">
    <Path>REG ADD HKLM\System\CurrentControlSet\Services\Tcpip6\parameters /v DisabledComponents /t REG_DWORD /d 0xFF /f</Path>
    <Order>3</Order>
    <Description>Diasbling IPV6</Description>
    <WillReboot>Never</WillReboot>
    </RunSynchronousCommand>
    <RunSynchronousCommand wcm:action="add">
    <Credentials>
    <Domain>Mikasa.local</Domain>
    <Password>Ghtwhts2015</Password>
    <Username>Administrator</Username>
    </Credentials>
    <Path>\\WDS-DEP-SERV\E\Distribution\Drivers\setup64.exe /s /v &quot;/qn REBOOT=ReallySuppress&quot; /l C:\Windows\Temp\vmware_tools_install.log</Path>
    <Order>4</Order>
    <Description>Vmware Tools Installation</Description>
    <WillReboot>Always</WillReboot>
    </RunSynchronousCommand>
    </RunSynchronous>
    </component>
    <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <DisableAccelerators>true</DisableAccelerators>
    <DisableFirstRunWizard>true</DisableFirstRunWizard>
    <Home_Page>www.marca.com</Home_Page>
    <BlockPopups>yes</BlockPopups>
    </component>
    <component name="Microsoft-Windows-TerminalServices-LocalSessionManager" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <fDenyTSConnections>false</fDenyTSConnections>
    </component>
    <component name="Networking-MPSSVC-Svc" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <FirewallGroups>
    <FirewallGroup wcm:action="add" wcm:keyValue="Remote Desktop">
    <Active>true</Active>
    <Group>Remote Desktop</Group>
    <Profile>all</Profile>
    </FirewallGroup>
    </FirewallGroups>
    </component>
    <component name="Microsoft-Windows-TerminalServices-RDP-WinStationExtensions" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <UserAuthentication>0</UserAuthentication>
    <SecurityLayer>1</SecurityLayer>
    </component>
    <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SkipAutoActivation>true</SkipAutoActivation>
    </component>
    </settings>
    <settings pass="oobeSystem">
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <AutoLogon>
    <Password>
    <Value>RwBoAHQAdwBoAHQAcwAyADAAMQA2AFAAYQBzAHMAdwBvAHIAZAA=</Value>
    <PlainText>false</PlainText>
    </Password>
    <Enabled>true</Enabled>
    <LogonCount>10</LogonCount>
    <Username>DarkKnight</Username>
    <Domain></Domain>
    </AutoLogon>
    <OOBE>
    <HideEULAPage>true</HideEULAPage>
    <NetworkLocation>Home</NetworkLocation>
    <ProtectYourPC>1</ProtectYourPC>
    <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
    <HideWirelessSetupInOOBE>false</HideWirelessSetupInOOBE>
    </OOBE>
    <UserAccounts>
    <AdministratorPassword>
    <Value>RwBoAHQAdwBoAHQAcwAyADAAMQA2AEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==</Value>
    <PlainText>false</PlainText>
    </AdministratorPassword>
    <LocalAccounts>
    <LocalAccount wcm:action="add">
    <Password>
    <Value>RwBoAHQAdwBoAHQAcwAyADAAMQA2AFAAYQBzAHMAdwBvAHIAZAA=</Value>
    <PlainText>false</PlainText>
    </Password>
    <Description>Admin User Account</Description>
    <DisplayName>DarkKnight</DisplayName>
    <Group>Administrators</Group>
    <Name>DarkKnight</Name>
    </LocalAccount>
    </LocalAccounts>
    </UserAccounts>
    <RegisteredOrganization>Mikasa</RegisteredOrganization>
    <RegisteredOwner>Mikasa</RegisteredOwner>
    <ShowWindowsLive>false</ShowWindowsLive>
    <TimeZone>eastern standard time</TimeZone>
    <FirstLogonCommands>
    <SynchronousCommand wcm:action="add">
    <CommandLine>cmd /C start /wait E:\RemoteInstall\Images\Windows8\install\$OEM$\$$\Setup\Scripts\SetupComplete.cmd</CommandLine>
    <Description>Various Apps Installation</Description>
    <Order>1</Order>
    <RequiresUserInput>false</RequiresUserInput>
    </SynchronousCommand>
    </FirstLogonCommands>
    </component>
    <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <InputLocale>en-US</InputLocale>
    <SystemLocale>en-US</SystemLocale>
    <UILanguage>en-US</UILanguage>
    <UserLocale>en-US</UserLocale>
    <UILanguageFallback></UILanguageFallback>
    </component>
    </settings>
    <settings pass="generalize">
    <component name="Microsoft-Windows-Security-SPP" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SkipRearm>1</SkipRearm>
    </component>
    </settings>
    <settings pass="offlineServicing">
    <component name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <EnableLUA>false</EnableLUA>
    </component>
    </settings>
    <cpi:offlineImage cpi:source="wim:e:/windows-os-images/win8.1x86ent-wimfiles/install.wim#Windows 8.1 Enterprise" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>

  • Adobe Acrobat X Unattended Install not working

    I created and Windows bundle to install Acrobat X via a custom msi and I removed the "qn" switch. I used the Acrobat customizer to customize the install, to include unattended install but show progress bar and prompt for reboot. If I run the file on a PC locally it works fine, but the bundle makes the user go through the dialog boxes with all the correct settings already in place. With the /qn it works. I want the users to see the progress. Yes, they're too dumb and/or lazy to use the Zenworks icon to check the progress.

    Change /qn to /qb+
    On 6/15/2011 3:36 PM, elphantasmo wrote:
    >
    > I created and Windows bundle to install Acrobat X via a custom msi and I
    > removed the "qn" switch. I used the Acrobat customizer to customize the
    > install, to include unattended install but show progress bar and prompt
    > for reboot. If I run the file on a PC locally it works fine, but the
    > bundle makes the user go through the dialog boxes with all the correct
    > settings already in place. With the /qn it works. I want the users to
    > see the progress. Yes, they're too dumb and/or lazy to use the Zenworks
    > icon to check the progress.
    >
    >
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Knowledge Partner
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared by either Novell or any rational human.

  • Creating an unattended install of 10.6?

    Hello all!
    I'd like to create a DVD or USB stick with a version of the Mac OS 10.6 installer that will perform the installation of the os and, possibly, go through the setup steps in the setup assistant using pre-defined data for the various options. I haven't found anything online describing how to create a Mac OS X unattended install, but I'm assuming it must be possible somehow. So, please, could anyone tell me how it's done or refer me to a place where I can find more about it?
    Thanks!
    Robin

    Servus!
    I don’t think that this is possible or done easily, but I would suggest to simply install it once by hand the way you need it. Afterwards you can clone it and restore the image on as many Macs as you like. Just keep in mind to not use a static IP or you’ll get problems.
    The best way to accomplish this is by using CCC: http://www.bombich.com/
    Björn

  • Unattended Install of Captivate 4

    This question was posted but marked as solved.  I'm starting a new one sinceI can't get this working per the other thread's solution.
    I've followed this document http://www.adobe.com/aboutadobe/openoptions/pdfs/manualenterprisedeployment_cs4_ help.pdf
    During install time the installer halts at the serial number screen after running this command
    setup.exe --deploymentfile="install.xml"
    the install.xml file is supposed to apply the product key which was specified at the time the xml file was created.  I have verified that the product key is in the xml itself.
    I have also created the application.xml.override file within this folder   "...\payloads\AdobeCaptivate4en_US\"   with the following content:
    <?xml version="1.0" encoding="utf-8"?>
    <Configuration>
    <Payload>
    <Data key="Registration">Suppress</Data>
    <Data key="EULA">-1</Data>
    <Data key="Updates">Suppress</Data>
    </Payload>
    </Configuration>
    has anyone got this to work so it can be an unattended install?  I don't need a silent install, just hands-off for the user and without the user entering the product key.
    Thanks

    Hi SAGinwalla,
    You can enable the built-in Administrator account during unattended installations by setting the AutoLogon setting to Administrator in the Microsoft-Windows-Shell-Setup component. This will enable the
    built-in Administrator account, even if a password is not specified in the AdministratorPassword setting. You can try to do not specify a password for built-in Administrator account.
    I would suggest you create another account to auto logon, based on my test, I use the answer file for Windows 8, if I use domain account, I can successfully auto log on.
    Alex Zhao
    TechNet Community Support

  • Zenworks client unattended install

    I would like to be able to an unattended install of zenworks. Anyone know
    what switch I need, assuming one exists, to keep it from asking me if I
    would like to reboot?

    How about this
    http://support.novell.com/cgi-bin/se...?/10064727.htm
    Jared L Jennings
    Novell Support Forums SysOp
    Novell Consultant with Data Technique, INC.
    ICQ# 27902780
    Using XanaNews 1.16.3.1

  • SQL Server 2012 Data Tools with unattended install prompt parameters with SSDTBI_VS2012_x86_ENU

    What are the parameters for a quiet unattended install of Data Tools for SQL Server 2012 where I get the SQL Native Client 11.0 driver using executable SSDTBI_VS2012_x86_ENU.exe for the installation? 

    Hi Peter,
    I have install SQL Server Data Tools Business Intelligence for Visual Studio 2012 successfully, and there is no any parameters during the installation. Please provide us some screenshots about it, so that we can make further analysis.
    Besides, please refer to the link below to install SQL Server Data Tools Business Intelligence for Visual Studio 2012.
    SQL Server Data Tools Business Intelligence for Visual Studio 2012 released online
    Hope this helps.
    Regards,
    Charlie Liao
    TechNet Community Support

  • BSOD 0x0000007B after installing Ideapad s10e using RIS

    Im getting a BSOD 0x0000007B after installing Ideapad s10e (4187-5LG) using RIS. All files are copied to the harddrive just fine but when it boots to start up in windows to finish the installation i get the BSOD. It seems the RIS server is missing the drivers for the harddisk controller.
    In the download section for Ideapad s10e http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&lndocid=MIGR-71093 i can only find the Intel(R) Chipset Device Software XP which is said to have SATA storage support. After extracting the Chipset drivers i cant find any drivers i can use.
    Any suggestions on how to solve this.
    Solved!
    Go to Solution.

    mibt wrote:
    Im getting a BSOD 0x0000007B after installing Ideapad s10e (4187-5LG) using RIS. All files are copied to the harddrive just fine but when it boots to start up in windows to finish the installation i get the BSOD. It seems the RIS server is missing the drivers for the harddisk controller.
    In the download section for Ideapad s10e http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&lndocid=MIGR-71093 i can only find the Intel(R) Chipset Device Software XP which is said to have SATA storage support. After extracting the Chipset drivers i cant find any drivers i can use.
    Any suggestions on how to solve this.
    The preloaded Windows XP Home SP3 has the drivers needed for the ich-7 SATA controller on the Lenovo S10e: atapi.sys, pciide.sys and pciidex.sys - It is important to load the INF package during installation as it identifies the hardware correctly to Windows. The package has a readme file on how to perform an unattended install, and Intel has more downloads and information in case you are trying to install other than XP.
    Hans
    Message Edited by hpholm on 12-03-2009 01:46 AM

  • Client 3.4 won't run unattended install

    Trying to run unattended installs on Win98 stations, client 3.4
    w/34pkc included as an overlay install. Setup intitiates but the
    installation is NOT unattended, the usual prompts appear as the
    install run and no auto-reboot takes place. Have tried calling
    setup.exe /U and using setup.exe /U:D:\Win9x\UNATTEND.TXT but still no
    success. The UNATTEND.TXT was generated using NCIMAN that came w/3.4
    client. Suggestions??
    Thanks,
    DeVern

    DeVern,
    As we haven't deployed Windows 9x in several years, this is from our 3.32
    ACU installs. We just launch acu.exe.
    Keep acu.exe, acu.ini and unattend.txt together in the same path. The paths
    in acu.ini are relative...
    ACU.INI
    [LaunchInstall]
    Launch=Yes
    [DisplayDialog]
    Display=No
    [UnattendFile]
    Use=Yes
    File=unattend.txt
    Tony Pedretti
    TransUnion Corporation

  • HIS 2013 HISServerConfig.xml example location and unattended install question

    Hello,
        I've never used the unattended part of the installer but wanted to give it a try.  The installation guide refers to an example in the support\unattended_installs folder.  I don't see that folder or file on the media I down loaded. 
    The guild also instructs to "save" the configuration during setup to create my own xml.  I didn't see a "save" but tried using an export during my test unattended install but that didn't work.  I would appreciate any help/information.
    Thanks, Jim.

    Hi Jim,
    you are right. Unlike stated in the Installation guide this folder doesn't exist.
    Anyway, here it goes:
    When you install HIS the latest Setup/configuration screen will provide a link to create a XML file. Anyway, exporting the XML file out of the configuration utility will create the reference XML of your current installation and configuration.
    You may modify the XML file according to the required settings of your new Server by changing the subdomain name, role,  etc....
    Also please note that we do not store the password in the XML file for security reasons, so you need to add this manually.
    Once done, please run a similar command according to you settings as below:
    Setup.exe /InstallPlatform /L c:\HISInstall.log /S c:\HISServerConfig.xml /INSTALLDIR C:\HIS Configuration.exe /L c:\ConfigFramework.Log /S c:\HISServerConfig.xml
    Options
    The following table describes the command options.
    /InstallPlatform
    This flag causes the installation program to install any platform prerequisites.
    /L c:\HISInstall.log
    This flag determines the log file location that is created during setup.
    /S C:\HISServerConfig.xml
    This flag specifies the configuration file (list of features) that is used on installation. The file "HISServerConfig.xml" contains information about which features to install and how they should be configured. Sample copies of these files are located
    in the Support\Unattended_Installs directory of the installation folder. This file can also be created during setup by clicking Save in the summary panel of the Configuration Tool.
    /INSTALLDIR
    This option tells Setup where to install the product.
    The Setup.exe installs all required binaries according to you reference installation while the configuration.exe configures you HIS Server the same as the reference configuration.
    Hope that helps
    Manfred Mittermüller
    -- MSFT --

  • MouseSuite Unattended install hangs.

    I am trying to deploy the latest MouseSuite to a ThinkCenter M55.  I am using the command line unattended install parameters as outlined in the accompanying readme; however, each and every time I try to install the drivers the setup process hangs.  I have left it run for an hour without any change.  So instead of running the install in "silent" mode I ran it interactive with the other parameters /TYPE:USB and /nr (no-reboot).  Low and behold the installer is looking for input from the user for which side of the keyboard the mouse is on.  Left or right.   Can someone please give me the missing command line string?
    Thanks.

    Hi SAGinwalla,
    You can enable the built-in Administrator account during unattended installations by setting the AutoLogon setting to Administrator in the Microsoft-Windows-Shell-Setup component. This will enable the
    built-in Administrator account, even if a password is not specified in the AdministratorPassword setting. You can try to do not specify a password for built-in Administrator account.
    I would suggest you create another account to auto logon, based on my test, I use the answer file for Windows 8, if I use domain account, I can successfully auto log on.
    Alex Zhao
    TechNet Community Support

  • Unattended install with Retail Key/DVD

    Hi,
    Another daft question that I hope someone can answer and save mne finding out the hard way!?
    Can I use an answer file to create an unattended install of Vista (with SP1) but using retail media and retail key, or does this only work with OEM key/media?
    Reason for asking is that I have five idenical test PC's to set-up with Vista SP1 for some trials on file transfers etc and it wouldn't half be easier if I could do these unattended?
    Thanks
    Ridesy

    Yes. It should work on OEM media as it is using the same WIM image.

  • Please help with unattended install

    Has anyone got this to work unattended?  This is one of the worst installers I've have to deal with.  Why can't I just have the customization wizard like with Adobe Reader?
    We have a volume license key for this, so I can't just give the key and the installer out to the users to install themselves, as a result, I'm stuck since this just doesn't work per the recommended documentation.  I followed the document per Adobe found here: http://www.adobe.com/aboutadobe/openoptions/pdfs/manualenterprisedeployment_cs4_help.pdf <-- Adobe claims that the same doc for Creative Suite can be followed per Captivate
    This is what I did, step by step.
    1.  Extracted the original .exe I got from our Adobe volume license site yielding what would appear to be the same thing as what's on the CD
    2.  Ran setup.exe --record=1
    3.  Stepped through the wizard, entering the license key and accepting the EULA.
    4.  I now have both the "Adobe Captivate 4.install.xml" and "Adobe Captivate 4.remove.xml"
    5.  I renamed the xml files to install.xml and remove.xml, respectively
    6.  Copied the xml files into the root folder containing "Setup.exe"
    7.  Created a "application.xml.override" file containing the following (saved as UTF-8):
    <?xml version="1.0" encoding="utf-8"?>
    <Configuration>
    <Payload>
    <Data key="Registration">Suppress</Data>
    <Data key="EULA">-1</Data>
    <Data key="Updates">Suppress</Data>
    </Payload>
    </Configuration>
    **From what I can tell, I should now have what I need to do an unattended install**
    8.  Tried to install using the following command:
          "setup.exe" --deploymentFile="install.xml"
    **Completely useless.  This simply launched the installer and halted at the product key window**
    9.  Tried to install using the silent tag with this command:
         "setup.exe --mode=silent --deploymentFile="install.xml"
    **Again, completely useless.  This bombed out at the command line with "Exit Code: 7"  **
    According to Adobe, this means "Unable to complete the silent workflow"
    Can anyone shed some light on why this isn't working for me?
    !!UPDATE!!
    I tried adding this line to the override xml file.  I tried the key with and without the dashes and neither seemed to make a difference.
    <Data key="Serial"  protected="0">xxxxxxxxxxxxxxxxxxxxxxxx</Data>

    OK, I finally got to the bottom of this mess....
    #1 - When the --record=1 tag "recorded" the installation and created the install.xml file, it added a line which specified the installation media path (which was pointed explicitly to my desktop since that's where I ran setup --record=1 from).  I had to remove that line
    #2 - It detected that the cpu was 64bit (regardless of the fact that the OS was 32-bit) and appended a line in the install.xml file indicating such.  I had to remove that line
    #3 - It appears that the installation call is case-sensitive!  "Setup.exe" --mode=Silent --deploymentFile="install.xml"
    Finally #4 - I wanted this to be "unattended" vs "silent" which apparently can't be done (so I heard).  If you want to hide your product key and have the users not be involved with the installation itself, you HAVE to use the silent tag.
    Dear Adobe,
    Absolutely terrible

  • Oracle ADI unattend install

    Can someone know how to perform the unattended install for Oracle Applications Desktop Integrators 7.2 ? Do it support response file at all ? I found a response file NT.RSP and WIN32.RSP in the installer directory, but I don't know how to use it (I filled in the content over here but the Windows prompt will occurred ? Can someone help me. Many Thanks.

    Hi DB
    As far as I know, ADI and Discoverer do have any dependency that should prevent you from doing what you are doing.
    What is the error you get when you try to install in the same ORACLE_HOME?
    Can you give more information about the errors you get when you install in separate ORACLE_HOMEs?
    I assume you would have checked the install logs and application logs to determine if there is anything obvious there ?
    MSK

  • HT3986 Hi, i have a macbook pro version 10.6.8 with boot camp version 3.0.4. I managed to install windows 7 professional x64, however when i insert my OS CD to install the drivers using the boot camp method, it says unsupported to this computer model

    Hi, i have a macbook pro version 10.6.8 with boot camp version 3.0.4. I managed to install windows 7 professional x64 bits but however when i tried to install the drivers using the OSX MAC CD using boot camp, it prompt me boot camp x 64 is unsupported with this computer model. Then i tried the method by right click the bootcamp x64 and managed to install the drivers. However, i still couldnt manage access the internet and it prompts me no networking hardware detected...Any idea how can i solve it?
    P.S i tried updating my bootcamp version 3.0.4 in mac os with bootcamp x64 version 3.1 exe but it shows me weird wording..
    my bootcamp version in windows 7 is 2.1..

    Uninstall 2.x totally
    Use CCleaner Registry tool
    Do whatever you need to to nuke the existing Apple programs and folders hidden here and there also.
    BC 2.2 was XP and Vista only

Maybe you are looking for

  • No way to actually download appworld 3.1.2--please help

    Hello, I have a 9900 (t-mobile). I tried to access the app store and was told that to do so I need to update the app. I follow the prompt (clicked 'upgrade'); took me to a webpage, where the only relevant option is 'download it Today'; clicked it and

  • Re: Block corruption in Undo tablespace

    undo_management                  string  MANUAL undo_tablespace                  string  UNDOTBS2 SQL> alter database open; alter database open ERROR at line 1: ORA-01092: ORACLE instance terminated. Disconnection forced ORA-00704: bootstrap process

  • Modifying a Class that implements Serializable

    I have a class LDAPUser import java.io.*; public class LDAPUser implements java.io.Serializable{      private java.lang.String name;      private java.lang.String userID;      private java.lang.String associateNumber; public LDAPUser() {      super()

  • BT Austerity measures on email accounts.

    Important changes to your BT email terms Hello, We're changing the terms and conditions for accessing the email that comes with your BT Broadband - BT Yahoo! Mail. From 17 June this year, you'll need to log in to your email account at least once ever

  • Sort by Company

    I heard there is a after market program that will allow me to sort my contacts by company name. Does anyone know what that program is and how I can get it?