D
Deleted member 2913
Thread author
You mean you prepared ISO & used it to do inplace upgrade on your previous OS?I used ISO to upgrade and ISO to clean install.
You mean you prepared ISO & used it to do inplace upgrade on your previous OS?I used ISO to upgrade and ISO to clean install.
Just to be clear, you did upgrade by running setup.exe from ISO within running OS, right?Yes. And I used it to do a clean install afterwards by deleting the partitions and 'diskpart clean'ed the disk and installed from the ISO.
I used the download tool (and procedure) in the link I provided, not ESDtoISO.
Clean install is necessary to use eDrive (SSD hardware encryption with BitLocker): http://www.samsung.com/global/business/semiconductor/minisite/SSD/global/html/support/faqs_03.html
Just to be clear, you did upgrade by running setup.exe from ISO within running OS, right?
You got generic or unique key?
By unique key bound to hardware you mean that key will be generic & same as many others, right?yes then you got unique key bound to your hardware, then you do clean install of Win10 by skipping all "insert key" prompts until you are in Win10 , at that point you may get automatically activated or you have to click on "activate"
Replied in other thread that is about the same query as this.Generic = key shared by Microsoft for some testing or dificult install (when the OS refuse a valid key) , cannot be used as long-term key.
Unique key = YOUR real personal own proper valid key , the one that belong to you (Retail or OEM)
I did.Just to be clear, you did upgrade by running setup.exe from ISO within running OS, right?
thx for sharingI did.
After 2 days, I gave up on that particular install.
What I've done since:
- Tried to use Win10 and Win7's recovery to recover the system image I made of activated Win7 failed. failed again. kept failing. I'm rethinking using Windows native backup/restore (I'll have to test it...the whole BIOS/UEFI thing won't be a thing anymore)
- Installed Win8.1 "Home" since the BIOS has an OEM product key for that version (this is a gaming laptop). It activated. It updated. It got GWX. It took about 10 seconds to re-learn why I never used Win8
- Redownloaded Win10 ISO (fc revealed that it was different than the ISO I downloaded a week or so ago)
- Upgraded to Win10 from ISO via setup.exe; it activated immediately--At least I got my Win10 home upgrade for this OEM licence before the free offer expires in a year
- Deleted all partitions (heh, there were five!?)
- Installed Win10 Home from ISO; it installed smoothly and activated as soon as I installed the network interface driver
What I'm doing now:
I've also been using ProduKey and the product key vbs to keep track of keys.
- Deleted all partitions
- Installed Win7 Pro; updated, activated
- Creating a vhdx (Hyper-V) disk image with Paragon Rescue Kit 14 Free edition (wow it is nice...I was able to create a bootable USB and select which drivers I wanted to include from driver files so network, USB3 ports and everything works--unlike Macrium Reflect Free where I can only select from installed drivers)
Rolo,
How to perform VBS script for the actual key?
' VBS Script to get the Windows(R) 7 Product Key from a PC's registry.
'
' Save the VBScript as "getWin7Key.vbs" somewhere on your Windows7 PC.
' Now, when you double-click the local script file an alertbox pops up
' displaying the product key stored in the machine's Windows registry.
Set WshShell = WScript.CreateObject("WScript.Shell")
KeyPath = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId"
MsgBox ExtractKey(WshShell.RegRead(KeyPath))
Function ExtractKey(KeyInput)
Const KeyOffset = 52
i = 28
CharWhitelist = "BCDFGHJKMPQRTVWXY2346789"
Do
Cur = 0
x = 14
Do
Cur = Cur * 256
Cur = KeyInput(x + KeyOffset) + Cur
KeyInput(x + KeyOffset) = (Cur \ 24) And 255
Cur = Cur Mod 24
x = x -1
Loop While x >= 0
i = i -1
KeyOutput = Mid(CharWhitelist, 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
ExtractKey = KeyOutput
End Function
ProductKey.vbs
Should I paste from start i.e ' VBS Script to get the Windows(R) 7 Product Key from a PC's registry. ?Open notepad and copy the following
Code:' VBS Script to get the Windows(R) 7 Product Key from a PC's registry. ' ' Save the VBScript as "getWin7Key.vbs" somewhere on your Windows7 PC. ' Now, when you double-click the local script file an alertbox pops up ' displaying the product key stored in the machine's Windows registry. Set WshShell = WScript.CreateObject("WScript.Shell") KeyPath = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId" MsgBox ExtractKey(WshShell.RegRead(KeyPath)) Function ExtractKey(KeyInput) Const KeyOffset = 52 i = 28 CharWhitelist = "BCDFGHJKMPQRTVWXY2346789" Do Cur = 0 x = 14 Do Cur = Cur * 256 Cur = KeyInput(x + KeyOffset) + Cur KeyInput(x + KeyOffset) = (Cur \ 24) And 255 Cur = Cur Mod 24 x = x -1 Loop While x >= 0 i = i -1 KeyOutput = Mid(CharWhitelist, 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 ExtractKey = KeyOutput End Function
Paste it in notepad
Then save it as the following
Save it to your DesktopCode:ProductKey.vbs
On your desktop click on it and it will show your Windows 10 license
So it doesn't adds anything on the system, registry, etc..., right?Yes copy and paste everything in in the code tags.It doesn't matter if it says Windows 7 it will give you your product key.It only runs when you click it if you copy your license and save it somewhere you can delete it from you desktop
ProduKey shows generic key i.e 1 of the 4 generic keys mentioned here on MT.Open notepad and copy the following
Code:' VBS Script to get the Windows(R) 7 Product Key from a PC's registry. ' ' Save the VBScript as "getWin7Key.vbs" somewhere on your Windows7 PC. ' Now, when you double-click the local script file an alertbox pops up ' displaying the product key stored in the machine's Windows registry. Set WshShell = WScript.CreateObject("WScript.Shell") KeyPath = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId" MsgBox ExtractKey(WshShell.RegRead(KeyPath)) Function ExtractKey(KeyInput) Const KeyOffset = 52 i = 28 CharWhitelist = "BCDFGHJKMPQRTVWXY2346789" Do Cur = 0 x = 14 Do Cur = Cur * 256 Cur = KeyInput(x + KeyOffset) + Cur KeyInput(x + KeyOffset) = (Cur \ 24) And 255 Cur = Cur Mod 24 x = x -1 Loop While x >= 0 i = i -1 KeyOutput = Mid(CharWhitelist, 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 ExtractKey = KeyOutput End Function
Paste it in notepad
Then save it as the following
Save it to your DesktopCode:ProductKey.vbs
On your desktop click on it and it will show your Windows 10 license