SoFunction
Updated on 2025-04-09

Use bat to delete system script debugging program

Delete some dangerous objects and fundamentally solve the problem. These objects are of little use to ordinary users.
1) Disable the WSHShell object and prevent the program from running.
Delete or rename the system folder
Or delete the registry key:
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}
2) Disable FileSystem object to prevent read and write files.
Delete or rename the system folder
Or delete the registry key:
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{0D43FE01-F093-11CF-8940-00A0C9054228}

Save the following code as, and after running it, you can automatically delete WSHShell and FileSystem objects.

Copy the codeThe code is as follows:

@echo off 
rem Delete WSHShell object
@reg delete HKLM\SOFTWARE\Classes\CLSID\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B} /f 
Delete FileSystem object
@reg delete HKLM\SOFTWARE\Classes\CLSID\{0D43FE01-F093-11CF-8940-00A0C9054228} /f 
echo Delete Completed
pause