RunAsynchronousCommand
Applies To: Windows 7, Windows 8, Windows 8.1, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012, Windows Server 2012 R2, Windows Vista
RunAsynchronousCommand
specifies a single command to run during the auditUser Configuration Pass or specialize Configuration Pass.
To run services or commands that can start at the same time, use asynchronous commands. To run commands that need to finish before other commands can start, use RunSynchronousCommand instead.
RunAsynchronous
commands run in the user context in the auditUser Configuration Pass and in the system context in the specialize Configuration Pass.
Child Elements
Important
Specifies the path to the command to execute.
Valid Configuration Passes
auditUser
specialize
Parent Hierarchy
Microsoft-Windows-Deployment | RunAsynchronous | RunAsynchronousCommand
Applies To
For the list of the supported Windows editions and architectures this component supports, see Microsoft-Windows-Deployment.
XML Example
The following XML output shows how to set asynchronous commands.
<RunAsynchronous>
<RunAsynchronousCommand wcm:action="add">
<Credentials>
<Domain>MyDomain</Domain>
<Password>MyPassword</Password>
<Username>MyUsername</Username>
</Credentials>
<Description>AsynchCommand1</Description>
<Order>1</Order>
<Path>\\network\server\share\filename</Path>
</RunAsynchronousCommand>
<RunAsynchronousCommand wcm:action="add">
<Credentials>
<Domain>MyDomain</Domain>
<Password>MyPassword</Password>
<Username>MyUsername</Username>
</Credentials>
<Description>AsynchCommand2</Description>
<Order>2</Order>
<Path>\\network\server\share\filename</Path>
</RunAsynchronousCommand>
</RunAsynchronous>