我怎样才能杀死我们正在使用这两个代码的同一用户的多个任务
代码 1
@ECHO OFF
TASKKILL /F /IM explorer.exe
cls
Echo "Please Specify the User ID"
Set /p u=
set USER=%u%@%userdomain%
Echo "Please Specify the PASSWORD"
runas /user:%USER% Explorer.exe
cls
echo "Press any key to Switch Back to Default USer Profile"
Pause
Echo "please enter your password again for verification"
runas /user:%USER% C:\switch.bat
pause
cls
start %windir%\explorer.exe
exit
代码 2(此文件名 Switch.bat)
@echo off
TASKKILL /F /IM Explorer.exe
exit
实际上创建这个的一般想法是在win XP中像win 7一样切换而不注销
问题是当它切换回原始配置文件时,第二个用户的所有任务都不会停止
是否有任何方法可以停止正在运行的特定用户的所有任务