Jump to content

script or command to modify hosts file


Mman

Recommended Posts


Do you specifically need the user to say "yes" ? Because if not, then it'd be simple to directly add what you want, into the host file.

But if you do want user to say yes, this will do the task you want, copy/paste into notepad, and save as .BAT:

@echo off
TITLE Modifying your HOSTS file
COLOR 85
ECHO.


:LOOP
SET Choice=
SET /P Choice="Do you want to modify HOSTS file ? (Y/N)"

IF NOT '%Choice%'=='' SET Choice=%Choice:~0,1%

ECHO.
IF /I '%Choice%'=='Y' GOTO ACCEPTED
IF /I '%Choice%'=='N' GOTO REJECTED
ECHO Please type Y (for Yes) or N (for No) to proceed!
ECHO.
GOTO Loop


:REJECTED
ECHO Your HOSTS file was left unchanged >> %systemroot%\Temp\yourinstall.log
ECHO Finished.
GOTO END

:ACCEPTED
ECHO Carrying out requested modifications to your HOSTS file
echo 127.0.0.1   local host >> %WinDir%\system32\drivers\etc\hosts
ECHO Finished.

GOTO END

:END
ECHO.
EXIT

Its quite self-explanatory. While the rest of the command-line script will do your yes/no part, the below line is what does the actual modification.

echo 127.0.0.1   local host >> %WinDir%\system32\drivers\etc\hosts

That is, you can "echo" whatever line you want into the HOSTS file, using the double-forward symbol. The location of the hosts file above, is given for win2k/XP/2k3. For win95/98/ME, its located at a different place.

Link to comment
Share on other sites

thanks alot!

the scripy wroks great. I only had to remove the @echo off at the beginning of the code.

GREAT!

NOW - is there any way to run this script automatically through html / xml code so that everyone browsing a certain website will receive the option to run the code?

M.

Link to comment
Share on other sites

  • 7 years later...

Hi, Mr.Prathapml,

Nice script, thanks.

in my scenario I logged in is USER Profile, so how could I run the batch file without having the Admin rights of Admin Password. if i have the Password than I can run it as Administrator. if not than how to do this with the help of Command line which can be embed within the BATCH (.bat) file?

Please let us.

Regards,

Babai Dutta :lol: | 9903010393

Link to comment
Share on other sites

  • 1 year later...

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...