Jump to content

Recommended Posts

Posted

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 solution

Best regards

Posted

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>

Posted

There are 3 methods of integrating 3rd party applications in the installation DVD;

1. $OEM$ folder and setupcomplete.cmd file

2. Install folder and start.cmd file and putting the shortcut in startup folder.

3. WPI way.

I prefer the second method.

  • 4 weeks later...
Posted

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.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...