fix(windows): correct order of first logon commands in unattended XML

Signed-off-by: Martin Wimpress <martin@wimpress.org>
This commit is contained in:
Martin Wimpress 2026-01-23 16:42:28 +00:00
parent 9b22109d90
commit 1f8e6addcc
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -3016,12 +3016,12 @@ function unattended_windows() {
<SynchronousCommand wcm:action="add"> <SynchronousCommand wcm:action="add">
<CommandLine>pnputil /add-driver E:\viogpudo\w10\amd64\viogpudo.inf /install</CommandLine> <CommandLine>pnputil /add-driver E:\viogpudo\w10\amd64\viogpudo.inf /install</CommandLine>
<Description>Install viogpudo driver</Description> <Description>Install viogpudo driver</Description>
<Order>6</Order> <Order>5</Order>
</SynchronousCommand> </SynchronousCommand>
<SynchronousCommand wcm:action="add"> <SynchronousCommand wcm:action="add">
<CommandLine>cmd /c net accounts /maxpwage:unlimited</CommandLine> <CommandLine>cmd /c net accounts /maxpwage:unlimited</CommandLine>
<Description>Local account passwords never expire</Description> <Description>Local account passwords never expire</Description>
<Order>7</Order> <Order>6</Order>
</SynchronousCommand> </SynchronousCommand>
</FirstLogonCommands> </FirstLogonCommands>
</component> </component>