The Wiert Corner – irregular stream of stuff

Jeroen W. Pluimers on .NET, C#, Delphi, databases, and personal interests

  • My badges

  • Twitter Updates

  • My Flickr Stream

  • Pages

  • All categories

  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 4,230 other subscribers

Editing your Windows hosts file as administrator from a “simple” batch file or PowerShell command

Posted by jpluimers on 2022/07/07

Sometimes you want to edit your Windows hosts file.

Next to that it is not in /etc/hosts, but in %windir%\system32\drivers\etc\hosts., you also have to edit it elevated with an elevated Administrator token (see Source: User Account Control – Wikipedia).

The Windows GUI by default runs without that token, and for a keyboard person like me, doing the mouse clicking elevation can be cumbersome especially combined with the unintuitive path to the hosts file.

Basically the below batch file executes this, but than elevated:

start notepad %windir%\system32\drivers\etc\hosts.

So I created a small batch file that does that for me: start notepad as an elevated user opening the correct file.

powershell -command "Start-Process notepad.exe -Verb runas -Args %windir%\system32\drivers\etc\hosts."

I named it edit-hosts-as-administrator.bat, but consider naming it edit-hosts.bat as the elevation is mandatory anyway.

It is based on by blog post Run cmd as elevated user (via: windows – How to run batch file command with elevated permissions? – Super User).

It helped setting up the localghost address explained in my blog post The spookback localghost address to resolve 👻.

That one in turn needed unicode support which I showed last week in Unicode symbols in a batch file – Stack Overflow.

Related:

–jeroen

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.

 
%d bloggers like this: