How Can I Bulk Upgrade Windows 10 to Windows 11 Using Lansweeper?

0
38
Asked By QuietStorm77 On

I'm new to Lansweeper and still finding my way around system administration. I need to deploy Windows 11 on about 30 Windows 10 machines within our domain. Currently, we're using WSUS, but I'm not seeing any feature updates for Windows 11, even though I've checked that 'Windows 11' is selected under Products and 'Upgrades' under Classifications. Lansweeper indicates that all devices are ready for an upgrade!

I came across a script that could help with the installation:

```powershell
$dir = 'C:\temp\win11'
mkdir $dir -Force
$webClient = New-Object System.Net.WebClient
$url = 'https://go.microsoft.com/fwlink/?linkid=2171764'
$file = "$dir\Windows11InstallationAssistant.exe"
$webClient.DownloadFile($url, $file)
Start-Process -FilePath $file -ArgumentList "/QuietInstall /SkipEULA /auto upgrade /NoRestartUI /copylogs $dir" -Wait
```

When I run this manually, it opens up the Windows 11 installer, but I want it to run quietly in the background and only restart the machines after 5 PM so that the upgrade is ready for use on Monday morning.

I'm a bit lost on how to automate the deployment via Lansweeper while considering the timing. Any help or examples would be greatly appreciated! Thanks!

1 Answer

Answered By TechSavvyNerd42 On

You might want to check the Lansweeper community for some helpful resources. There’s a lot of info over there that could assist you, plus input from users who may have faced similar challenges!

CuriousCat99 -

Thanks for the suggestion! I actually posted my question there too. I think I just need to get the right deployment settings in Lansweeper, but it's quite a learning curve with all those options!

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.