Home Objective News Today Here’s tips on how to do an unattended improve from Windows 7...

Here’s tips on how to do an unattended improve from Windows 7 to

243


Windows 7 goes out of help in 1 week, leaving only some days to improve to an OS which is definitely getting safety updates.

If you need to do it quicker, there may be now a PowerShell script which may do the entire tune and dance virtually fully unattended.

Developed by the /r/PowerShell, the process is as follows:

After operating the standard Windows Updates to get your W7 set up as updated as doable, on Windows 7 SP1 (which has PowerShell built-in)

Click on the Start button, kind in Powershell, right-click on “Windows Powershell,” and choose “Run as Administrator.”In PowerShell, kind Set-ExecutionPolicy Unrestricted and hit enter. This permits PowerShell to make registry modifications.Close PowerShell.

Now to arrange the script:

Open Notepad and enter:

$dir = “c:temp”

mkdir $dir

$webClient = New-Object System.Net.WebClient

$url = “https://go.microsoft.com/fwlink/?LinkID=799445″

$file = “$($dir)Win10Improve.exe”

$webClient.DownloadFile($url,$file)

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

Save the file with any identify, however change the extension from .TXT to .PS1Right-click in your new .PS1 file and choose “Run with PowerShell.”Agree to permit “Microsoft Windows” to make modifications to your pc.

That’s it.  A PowerShell window will briefly seem and disappear, and then you definitely received’t see anything for a while. At some level, the desktop will reboot, nevertheless. You can verify that the improve is definitely taking place by checking for the “Windows10UpgraderApp.exe” in Task Manager.

Note that the script leads to an improve, so your recordsdata and apps ought to nonetheless be there in the long run, however a full backup might be suggested. Also when upgrading from Windows 7 to Windows 10 not all of your apps may go resulting from compatability points.

The replace ought to be activated, and if not you’ll be able to activate it utilizing your Windows key.

As a safety measure, it’s possible you’ll need to take away PowerShell’s capability to make registry edits at this level.

Click on the Start button, kind in Powershell, right-click on “Windows Powershell,” and choose “Run as Administrator.”in PowerShell, kind Set-ExecutionPolicy Restricted and hit enter. This permits PowerShell to make registry modifications.Close PowerShell.

Readers, in fact, do this trick at their very own duty. Let us know the way nicely it really works within the feedback under.




Source hyperlink

LEAVE A REPLY

Please enter your comment!
Please enter your name here