articlehaa.blogg.se

Uninstall dameware mini remote control
Uninstall dameware mini remote control






uninstall dameware mini remote control uninstall dameware mini remote control

Set objFSO = CreateObject("Scripting.FileSystemObject") Set objShell = CreateObject("WScript.Shell") objShell.Run "cmd /k net stop DWMRCS", 1, True objShell.Run "cmd /k net stop DNTUS26", 1, True 'For the DNTU Client Agent Service: objShell.Run "cmd /k ""c:\Program Files\DameWare Development\DameWare NT Utilities\DNTUS26.exe"" -remove", 1, True 'For the DMRC Client Agent Service: objShell.Run "cmd /k ""c:\Program Files\DameWare Development\DameWare NT Utilities\DWRCS.EXE"" -remove", 1, True arrDWFiles = Array( _ "C:\Windows\System32\DWRCS.exe", _ "C:\Windows\System32\DWRCK.dll", _ "C:\Windows\System32\DWRCSET.dll", _ "C:\Windows\System32\DWRCShell.dll", _ "C:\Windows\System32\DWRCS.ini") For Each strFile In arrDWFiles If objFSO.FileExists(strFile) = True Then objFSO.DeleteFile strFile, True Next If objFSO.FolderExists("c:\Program Files\DameWare Development") = True Then objFSO.DeleteFolder "c:\Program Files\DameWare Development", True objShell.Run "reg delete ""HKLM\SOFTWARE\DameWare Development"" /f", 0, True MsgBox "Done"Ĭan you see what files you have in this folder:Ĭ:\Program Files\DameWare Development\DameWare NT Utilities\ Set objFSO = CreateObject("Scripting.FileSystemObject") Set objShell = CreateObject("WScript.Shell") objShell.Run "net stop DWMRCS", 0, True objShell.Run "net stop DNTUS26", 0, True 'For the DNTU Client Agent Service: objShell.Run "cmd /c ""c:\Program Files\DameWare Development\DameWare NT Utilities\DNTUS26.exe"" -remove", 0, True 'For the DMRC Client Agent Service: objShell.Run "cmd /c ""c:\Program Files\DameWare Development\DameWare NT Utilities\DWRCS.EXE"" -remove", 0, True arrDWFiles = Array( _ "C:\Windows\System32\DWRCS.exe", _ "C:\Windows\System32\DWRCK.dll", _ "C:\Windows\System32\DWRCSET.dll", _ "C:\Windows\System32\DWRCShell.dll", _ "C:\Windows\System32\DWRCS.ini") For Each strFile In arrDWFiles If objFSO.FileExists(strFile) = True Then objFSO.DeleteFile strFile, True Next If objFSO.FolderExists("c:\Program Files\DameWare Development") = True Then objFSO.DeleteFolder "c:\Program Files\DameWare Development", True objShell.Run "reg delete ""HKLM\SOFTWARE\DameWare Development"" /f", 0, True MsgBox "Done"Ĭan you run this and see what the output of each command is as it tries to stop the services? I've pieced together the service removal, the file deletion, and the registry deletion from the links these guys posted.








Uninstall dameware mini remote control