Jump to content

Install applications automatically


CocoNuts974

Recommended Posts

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

Link to comment
Share on other sites

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>

Link to comment
Share on other sites

  • 4 weeks later...

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.

Link to comment
Share on other sites

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...