Skip to content

Instantly share code, notes, and snippets.

@corneliusdavid
Created June 2, 2022 16:46
Show Gist options
  • Save corneliusdavid/f305c3911361989ed6782950d55853c9 to your computer and use it in GitHub Desktop.
Save corneliusdavid/f305c3911361989ed6782950d55853c9 to your computer and use it in GitHub Desktop.
simple batch file to disable a Retail Pro plugin; must be running in DOS Command shell as Administrator; pass in the name of the plugin without extension
if not exist %1.mnf goto AlreadyOFF
regsvr32 /u %1.dll
ren %1.mnf %1._mnf
goto END
:AlreadyOFF
echo %1 already off
:END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment