Posted by member 378340 on 2008-05-09 19:35:48 link

not really necessary, but this distribution should be as easy to use initially as possible.

as for pskill, it doesn't work in win xp, sorry :(

however, there is a vbsript method to do this. just not sure how to use the /f switch equivalent
strComputer = "."
Set objWMIService = GetObject ("winmgmts:\\" & strComputer & "\root\cimv2")
Set colProcessList = objWMIService.ExecQuery ("Select * from Win32_Process Where Name = 'Explorer.exe'")
For Each objProcess in colProcessList
objProcess.Terminate()