|
[系统问题] 如何结束任务管理器的explorer.exe? |
20金钱
最佳答案@echo off
REM 请求管理员权限
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
powershell Start-Process -FilePath "%0" -Verb RunAs
exit /b
)
REM 结束无窗口标题的explorer进程(任务栏)
powershell -Command "Get-Process explorer | Where-Object { $_.MainWindowTitle -eq '' } | Stop-Proc ...
| ||
| ||
| ||
| ||
点评
踢一脚
| ||
| ||
| ||
| ||
| ||
| ||
| ||
| ||
| ||
| ||
| ||