The GoTo Community is currently experiencing some technical issues affecting new posts and comments. We are actively working with our service provider and apologize for the frustration.
Forum Discussion
KevinA
16 years agoRetired GoTo Contributor
One2Many Script Repository
Welcome to the LogMeIn Central Script Repository!
What is it? A library of scripts to help you execute automated tasks and manage LogMeIn Pro² computers without having to access them manually. ...
- 8 years ago
https://github.com/knix15/LogMeIn-One2Many-Community-Scripts/
Scripts can be found here as well for better future organization.
LouMeIn
6 years agoVisitor
Script to download and run the Windows Upgrade Assistant-- handy for rapidly updating missing Win Updates and/or feature upgrades.
# Make a directory to store the update echo "Preparing the PC for the update..." $dir = 'C:\_Windows_FU\packages' If(!(test-path $dir)) { New-Item -ItemType Directory -Force -Path $dir } $webClient = New-Object System.Net.WebClient # Get the Microsoft Upgrade assistant exe echo "Getting the Microsoft Upgrae assistant software..." $url = 'https://go.microsoft.com/fwlink/?LinkID=799445' $file = "$($dir)\Win10Upgrade.exe" $webClient.DownloadFile($url,$file) # Run the upgrade assistant echo "Running the Upgrade Assistant" Start-Process -Wait -FilePath $file -ArgumentList '/quiet /skipeula /auto upgrade /copylogs $dir' echo "Please wait for the PC to finish updates. This could take a while." echo "During the update time the computer will not be available in LogMeIn." echo "Once complete the PC will show as online and you will be able to access from LogMeIn."