Guest User

Push win 11

a guest
Aug 14th, 2025
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1.  
  2. $dir = 'C:\temp\win11'
  3. mkdir $dir
  4. $webClient = New-Object System.Net.WebClient
  5. $url = 'https://go.microsoft.com/fwlink/?linkid=2171764'
  6. $file = "$($dir)\Windows11InstallationAssistant.exe"
  7. $webClient.DownloadFile($url,$file)
  8. Start-Process -FilePath $file -ArgumentList "/QuietInstall /SkipEULA /auto upgrade /dynamicupdate enable /copylogs $dir"
  9.  
  10.  
  11.  
Advertisement
Add Comment
Please, Sign In to add comment