CocoNuts974 Posted December 29, 2009 Posted December 29, 2009 I want a solution for Windows 7 that my applications are installed automatically during the preparation of the office because I used the command but setupcommand.cmd HKCU registry keys of my programs are not listed in the registry. Have you a solutionBest regards Quote
ricktendo Posted December 29, 2009 Posted December 29, 2009 You can add your apps to install in your Autounattend.xml with FirstLogonCommands or do as I do call WPI with it <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <CommandLine>cmd /q /c for %i in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist %i:\wpi\wpi.exe start %i:\wpi\wpi.exe</CommandLine> <Description>Windows Post Install Wizard</Description> <Order>10</Order> <RequiresUserInput>false</RequiresUserInput> </SynchronousCommand> </FirstLogonCommands> Quote
nice_guy75 Posted January 3, 2010 Posted January 3, 2010 There are 3 methods of integrating 3rd party applications in the installation DVD;1. $OEM$ folder and setupcomplete.cmd file2. Install folder and start.cmd file and putting the shortcut in startup folder.3. WPI way.I prefer the second method. Quote
Raoul Posted January 31, 2010 Posted January 31, 2010 I use the same as Rick: <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"> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <CommandLine>cmd /q /c for %i in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist %i:\WPI\WPI.exe start %i:\WPI\WPI.exe</CommandLine> <Description>Windows Post Install Wizard</Description> <Order>10</Order> <RequiresUserInput>false</RequiresUserInput> </SynchronousCommand> </FirstLogonCommands> <TimeZone>W. Europe Standard Time</TimeZone> <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet> <DoNotCleanTaskBar>true</DoNotCleanTaskBar> <BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled> <ShowWindowsLive>true</ShowWindowsLive> </component>But in VMWare WPI isnt being executed @ first login? I dont get it, tried a lot, but it wont work, might be vmware. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.