在Win 7中为hosts文件创建一个具有管理员权限的快捷方式


1

我正在尝试在桌面上创建一个快捷链接,该链接是Windows 7中主机文件的链接。问题是此快捷方式无法在管理员模式下打开,因为该选项将在快捷方式属性/高级属性中显示为灰色。

有没有我可以创建一个快捷方式链接,以管理员模式打开主机文件?

Answers:


4
  1. 在桌面上创建一个新的快捷方式,并将notepad.exe作为目标。给它命名Edit hosts file或其他你喜欢的东西,然后可以创建
  2. 转到快捷方式的属性,然后转到快捷方式选项卡并将Target字段更改为

    C:\Windows\System32\notepad.exe C:\Windows\System32\drivers\etc\hosts

  3. 单击Advanced同一选项卡,然后选择Run as administrator


1

类似的替代答案“破坏”但是以批处理形式 - 使用记事本创建下面的文件host.bat然后创建文件的快捷方式。

@Echo off
:: Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
:: If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
Echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
Echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
Echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
Exit /B
:gotAdmin
if exist "%temp%\getadmin.vbs" ( Del "%temp%\getadmin.vbs" )
Pushd "%CD%"
CD /D "%~dp0"
C:\Windows\System32\notepad.exe C:\Windows\System32\drivers\etc\hosts
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.