在bat文档前添加以下命令即可
net session >nul 2>&1
if not “%errorLevel%” == “0” (
echo Oops: This tools must run with administrator permissions!
echo it will popup the UAC dialog, please click [Yes] to continue.
echo Set UAC = CreateObject(“Shell.Application”) > “%temp%\getadmin.vbs”
echo UAC.ShellExecute “%~s0”, “%*”, “”, “runas”, 1 >> “%temp%\getadmin.vbs”
“%temp%\getadmin.vbs”
exit /b 2
)