Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Description
describes the synchronous command to run specified by Path.
All RunSynchronous commands run in the system context.
Values
Command_description |
Describes the command to run synchronously during the windowsPE configuration pass. Command_description is a string. |
Valid Configuration Passes
windowsPE
Parent Hierarchy
microsoft-windows-setup- | RunSynchronous | RunSynchronousCommand | Description
Applies To
For the list of the supported Windows editions and architectures that this component supports, see microsoft-windows-setup-.
XML Example
The following XML output shows how to set synchronous commands.
<RunSynchronous>
<!-- First synchronous command to run -->
<RunSynchronousCommand>
<Order>1</Order>
<Path>\\MyNetworkShare\MyApplication.exe</Path>
<Description>DescriptionOfMyApplication</Description>
<Credentials>
<Domain>FabrikamDomain</Domain>
<UserName>MyUserName</UserName>
<Password>MyPassword</Password>
</Credentials>
</RunSynchronousCommand>
<!-- Second synchronous command to run -->
<RunSynchronousCommand>
<Order>2</Order>
<Path>C:\AnotherApplication.exe</Path>
<Description>DescriptionOfMyApplication</Description>
</RunSynchronousCommand>
</RunSynchronous>