When reinstalling the pre-installed OS from the recovery section on the laptop's HDD, a bunch of unnecessary programs and outdated drivers are automatically installed. How do I reinstall a clean Windows 7 system? The license key for the pre-installed system that I own is not suitable for a clean distribution of Windows 7

Typewriter: ASUS N76v

  • And why such a attachment to the license? - don Rumata

1 answer 1

Difficult but possible - there is a folder on the hidden disk with the distributions of these utilities, just delete unnecessary ones ...

Or using vbs script:

Set WshShell = CreateObject("WScript.Shell") regKey = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\" DigitalProductId = WshShell.RegRead(regKey & "DigitalProductId") Win8ProductName = "Windows Product Name: " & WshShell.RegRead(regKey & "ProductName") & vbNewLine Win8ProductID = "Windows Product ID: " & WshShell.RegRead(regKey & "ProductID") & vbNewLine Win8ProductKey = ConvertToKey(DigitalProductId) strProductKey ="Windows 8 Key: " & Win8ProductKey Win8ProductID = Win8ProductName & Win8ProductID & strProductKey MsgBox(Win8ProductKey) MsgBox(Win8ProductID) Function ConvertToKey(regKey) Const KeyOffset = 52 isWin8 = (regKey(66) \ 6) And 1 regKey(66) = (regKey(66) And &HF7) Or ((isWin8 And 2) * 4) j = 24 Chars = "BCDFGHJKMPQRTVWXY2346789" Do Cur = 0 y = 14 Do Cur = Cur * 256 Cur = regKey(y + KeyOffset) + Cur regKey(y + KeyOffset) = (Cur \ 24) Cur = Cur Mod 24 y = y -1 Loop While y >= 0 j = j -1 winKeyOutput = Mid(Chars, Cur + 1, 1) & winKeyOutput Last = Cur Loop While j >= 0 If (isWin8 = 1) Then keypart1 = Mid(winKeyOutput, 2, Last) insert = "N" winKeyOutput = Replace(winKeyOutput, keypart1, keypart1 & insert, 2, 1, 0) If Last = 0 Then winKeyOutput = insert & winKeyOutput End If a = Mid(winKeyOutput, 1, 5) b = Mid(winKeyOutput, 6, 5) c = Mid(winKeyOutput, 11, 5) d = Mid(winKeyOutput, 16, 5) e = Mid(winKeyOutput, 21, 5) ConvertToKey = a & "-" & b & "-" & c & "-" & d & "-" & e End Function 

Run - get the key, save - download the installation distribution corresponding to the one you have installed - install - enter the key - install the necessary drivers from the manufacturer's website ...

Note: INSTALLED NEW WINDOWS OS VERSION MUST EXACTLY COMBINE WITH WHAT THAT WAS ESTABLISHED AT YOU TO THIS

Windows 7 x32 Home == Windows 7 x32 Home Windows 7 x64 Home == Windows 7 x64 Home Windows 7 x32 Profesional == Windows 7 x32 Profesional Windows 7 x64 Ultimate == Windows 7 x64 Ultimate