Question

Windows 11 Deployment Help!

  • 20 October 2022
  • 2 replies
  • 272 views

Badge

So were having issues deploying Windows 11 in Automox!

When you run the “Upgrade to Windows 11” patch in the console it never runs or reports an output either so we have a ticket open with Automox for that but in the mean time I am trying to find some sort of worklet to use but there just isn't anything viable. does anyone have any suggestions?

 

I have come across a bunch of scripts online too but there is nothing solid even using the installation assistant.

 


2 replies

Badge
$workingdir = "c:\temp"
$url = "https://go.microsoft.com/fwlink/?linkid=2171764"
$file = "$($workingdir)\Win11Upgrade.exe"

If(!(test-path $workingdir))
{
New-Item -ItemType Directory -Force -Path $workingdir
}

Invoke-WebRequest -Uri $url -OutFile $file

Start-Process -FilePath $file -ArgumentList "/quietinstall /skipeula /auto upgrade /copylogs $dir"

The above works but when the assistant completes the file side of things it then goes and deletes all of the windows upgrade content and rolls back/

Were you ever able to get this working? I just started testing today and also experience that the Automox policy fails to do anything.

Reply