Because of the way Microsoft has categorized this update, we cannot push it via an Update policy in Syncro. However, you can manually run it via an agent from the Windows Patches tab:
Some have used the below script to push the update. Use at your own risk, but thus far it has worked fine for others. You will want to test it in your environment to make sure you are happy with it.
$dir = 'C:\_Windows_FU\packages' mkdir $dir $webClient = New-Object System.Net.WebClient
$url = 'https://go.microsoft.com/fwlink/?LinkID=799445' $file = "$($dir)\Win10Upgrade.exe" $webClient.DownloadFile($url,$file) Start-Process -FilePath $file -ArgumentList '/quietinstall /skipeula /auto upgrade /copylogs $dir'
This is a powershell script that installs the update; it does not check to see if it is already installed.
Warning: This will likely cause the machine to reboot after Win10Upgrade.exe completes the upgrade.