我正在尝试在我的桌面上创建一个快捷方式链接,该链接指向 Windows 7 中的 hosts 文件。问题是这个快捷方式不会在管理员模式下打开,因为该选项在快捷方式属性/高级属性中会变灰。
有什么方法可以创建一个以管理员模式打开 hosts 文件的快捷链接吗?
答案1
- 在桌面上创建一个新的快捷方式,并将 notepad.exe 作为目标。为其命名
Edit hosts file
或输入您喜欢的其他内容,然后确定创建 转到快捷方式的属性,然后转到快捷方式选项卡并将字段更改
Target
为C:\Windows\System32\notepad.exe C:\Windows\System32\drivers\etc\hosts
点击
Advanced
同一选项卡,然后选择Run as administrator
答案2
与“spoike”类似的替代答案,但以批处理形式 - 使用记事本创建以下文件 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