youngguy
BANNED
- Apr 11, 2009
- 1,051
- 1,574
I see many Softwares' crack request you to edit your HOSTS file and I know many of you guys don't know where it is and don't know how to open it right?
I wrote a small ".bat" script to:
1. Take Ownership of the HOSTS file (if you're on Vista & Win7)
2. Remove attribute: system, hidden, read only of the HOSTS file
3. Open HOSTS file with notepad ready for you to edit.
It's a solid ".bat" script with just 4 lines of code, so it's not nessesary to provide virustotal link.
Rapidshare:
For who knows how to make a .bat file, this is the code:
Instruction:
1. If you're using Vista / Win7, just Right Click & Run as administrator
2. XP: Run it normally
Have Fun my BH family!
I wrote a small ".bat" script to:
1. Take Ownership of the HOSTS file (if you're on Vista & Win7)
2. Remove attribute: system, hidden, read only of the HOSTS file
3. Open HOSTS file with notepad ready for you to edit.
It's a solid ".bat" script with just 4 lines of code, so it's not nessesary to provide virustotal link.
Rapidshare:
Code:
http://rapidshare.com/files/314421550/Open_HOSTS.bat
For who knows how to make a .bat file, this is the code:
Code:
@echo off
takeown /f "%windir%\system32\drivers\etc\hosts" && icacls "%windir%\system32\drivers\etc\hosts" /grant administrators:F
attrib -s -h -r %windir%\system32\drivers\etc\hosts
%windir%\notepad.exe %windir%\system32\drivers\etc\hosts
Instruction:
1. If you're using Vista / Win7, just Right Click & Run as administrator
2. XP: Run it normally
Have Fun my BH family!
Last edited: