Jump to content

Windows 10 Recovery disc?

Danielh90

Hi I would like to make a windows 10 Recovery disc so If i need to factory reset for any reason I can. My issue is my windows key. Did it transfer with the upgraded from windows 8.1? or do i need to find it. If i do need to find it how would i? 

Link to comment
Share on other sites

Link to post
Share on other sites

To find your key in 3 seconds

 

First, open an Administrator Command Prompt by right-clicking the Start button or pressing Windows Key + X and selecting Command Prompt (Admin).

 

Type the following command and press Enter

 

slmgr.vbs /ato

Link to comment
Share on other sites

Link to post
Share on other sites

The choice of how you want to store a backup is up to you. I personally prefer USB drives as optical media is on its way out but you can use whatever you feel comfortable with.

Link to comment
Share on other sites

Link to post
Share on other sites

Thank and should I use a disc or a usb? 

 

USB easier. just use rufus to put the .iso on it. also look up my comment to find key up ^

Link to comment
Share on other sites

Link to post
Share on other sites

USB easier. just use rufus to put the .iso on it. also look up my comment to find key up ^

How should I put the iso on ? should I use the Recovery setup in the control panel or download the iso off the microsoft download page? 

Link to comment
Share on other sites

Link to post
Share on other sites

How should I put the iso on ? should I use the Recovery setup in the control panel or download the iso off the microsoft download page? 

download clean iso from microsoft website and burn the .iso on the USB stick using Rufus here.

Link to comment
Share on other sites

Link to post
Share on other sites

To find your key in 3 seconds

 

First, open an Administrator Command Prompt by right-clicking the Start button or pressing Windows Key + X and selecting Command Prompt (Admin).

 

Type the following command and press Enter

 

slmgr.vbs /ato

 

Might just be an issue with my key, being a w10 preview that they upgraded to Pro, but when I ran that it came up with a 32 digit key. Here's a simple script to show standard 25 digit key, from howtogeek forum;

 

Copy and paste the following into a Notepad window:
Set WshShell = CreateObject("WScript.Shell")
MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId"))
 
Function ConvertToKey(Key)
Const KeyOffset = 52
i = 28
Chars = "BCDFGHJKMPQRTVWXY2346789"
Do
Cur = 0
x = 14
Do
Cur = Cur * 256
Cur = Key(x + KeyOffset) + Cur
Key(x + KeyOffset) = (Cur \ 24) And 255
Cur = Cur Mod 24
x = x -1
Loop While x >= 0
i = i -1
KeyOutput = Mid(Chars, Cur + 1, 1) & KeyOutput
If (((29 - i) Mod 6) = 0) And (i <> -1) Then
i = i -1
KeyOutput = "-" & KeyOutput
End If
Loop While i >= 0
ConvertToKey = KeyOutput
End Function

 

 

You’ll need to use File -> Save As, change the “Save as type” to “All Files” and then name it productkey.vbs or something similar ending with the vbs extension. We’d recommend saving to the desktop for easy access.
 
When ran it looks like this;
7l8qGiq.jpg

CPU: i5 4670K  Cooler: CM Hyper 212 Evo  MB: Gigabyte GA-Z97-HD3 ATX  RAM: 8GB Corsair Vengance  GPU: MSI R9 280 3GB

PSU: EVGA 600W Bronze  Case: Corsair 200R (with pair of 120MM Noctua Redux PWM fans)  SSD: 250GB Samsung 840 EVO

HDD: 1TB Toshiba DT01ACA100   Optical: Pioneer BDR-209DBK Blu-ray writer

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×