WISPTIS! What a piece! I hate that this piece of software and it shows up after I restart my computer. So, I did something about it. Remove WISPTIS.exe from your machine by following the script below.
Copy the script below into notepad and name it something like: RemoveWISPTIS.vbs
You need the .vbs as the file extension!
----------COPY EVERYTHING BELOW THIS LINE for the Script---------- 'This script will remove WISPTIS from your local computer. 'Just drag and drop a .txt file containing the registry keys onto it and WISPTIS will be deleted. 'By Cheyenne Harden 8.08.07
Case "HKEY_CURRENT_USER" DeleteRegistryKey HKCU, strNewReg
Case "HKEY_LOCAL_MACHINE" DeleteRegistryKey HKLM, strNewReg
Case "HKEY_CLASSES_ROOT" DeleteRegistryKey HKCR, strNewReg
Case "HKEY_USERS" DeleteRegistryKey HKU, strNewReg
Case "HKEY_CURRENT_CONFIG" DeleteRegistryKey HKCC, strNewReg
End Select Loop
killWISPTIS() DeleteFile()
MsgBox "Done..."
Function killWISPTIS() strProcessKill = "'WISPTIS.EXE'"
Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colProcess = objWMIService.ExecQuery _ ("Select * from Win32_Process Where Name = " & strProcessKill ) For Each objProcess in colProcess objProcess.Terminate() Next 'WSCript.Echo "Just killed process " & strProcessKill _ '& " on " & strComputer End Function
Function DeleteFile() Set objFSO = CreateObject("Scripting.FileSystemObject") objFSO.DeleteFile("C:\Windows\System32\Wisptis.exe") End Function
Sub DeleteRegistryKey(ByVal sHive, ByVal sKey) Dim aSubKeys, sSubKey, iRC 'On Error Resume Next iRC = oReg.EnumKey(sHive, sKey, aSubKeys) If iRC = 0 And IsArray(aSubKeys) Then For Each sSubKey In aSubKeys If Err.Number <> 0 Then Err.Clear Exit Sub End If 'Wscript.Echo sHive, sKey & "\" & sSubKey & " From Sub" DeleteRegistryKey sHive, sKey & "\" & sSubKey Next End If oReg.DeleteKey sHive, sKey End Sub
----------COPY EVERYTHING ABOVE THIS LINE for the Script----------
Next, Copy the registry keys below to a text file. Makesure their are no spaces between lines and no word wrap!!!
PLEASE MAKE SURE NO WORD WRAPPING IS HAPPENING IN YOUR SCRIPT!!!
1. Two files are needed. the script and a .txt file with the registry keys 2. You must be an admin on the machine. 3. Drag and Drop the .txt file onto the script! Thats it!!!
This information is provided "AS IS" with no warranties expressed or implied.