Quick edit for your hosts file
Open notepad and paste in the code below, then save as hosts.vbs and save it inside your windows directory.
Then all you need to do is type start -> run and type “hosts.vbs” and it will fire up your windows hosts file inside notepad
Set Sh = WScript.CreateObject(“WScript.Shell”)
On Error Resume Next
sOStype = Sh.RegRead(_
“HKLM\SYSTEM\CurrentControlSet\Control\ProductOptions\ProductType”)
If Err.Number<>0 Then
Wscript.Echo ” This [...]
Share your thoughts..