Skip to content

Commit

Permalink
Integrate 2 new options, improve windows media player removal
Browse files Browse the repository at this point in the history
un-removing windows media player might be problematic, same with windows defender
  • Loading branch information
GChuf committed Apr 19, 2021
1 parent e852f76 commit c1320ff
Show file tree
Hide file tree
Showing 5 changed files with 75 additions and 11 deletions.
8 changes: 2 additions & 6 deletions RCWM/files/DeleteWinPlayer.reg
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,8 @@ Windows Registry Editor Version 5.00

[-HKEY_CLASSES_ROOT\AppID\{45597c98-80f6-4549-84ff-752cf55e2d29}]
[-HKEY_CLASSES_ROOT\CLSID\{45597c98-80f6-4549-84ff-752cf55e2d29}]


;[-HKEY_CLASSES_ROOT\AppID\{ed1d0fdf-4414-470a-a56d-cfb68623fc58}]
;[-HKEY_CLASSES_ROOT\CLSID\{45597c98-80f6-4549-84ff-752cf55e2d29}]
;[-HKEY_CLASSES_ROOT\CLSID\{ed1d0fdf-4414-470a-a56d-cfb68623fc58}]
;[-HKEY_CLASSES_ROOT\AppID\{45597c98-80f6-4549-84ff-752cf55e2d29}]
[-HKEY_CLASSES_ROOT\AppID\{ed1d0fdf-4414-470a-a56d-cfb68623fc58}]
[-HKEY_CLASSES_ROOT\CLSID\{ed1d0fdf-4414-470a-a56d-cfb68623fc58}]


;done
17 changes: 12 additions & 5 deletions RCWM/install.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -233,21 +233,28 @@ color c
choice /C yn /M "* Do you want to delete Share "
if %errorlevel% == 1 ( start /w regedit /s DeleteShare.reg )

color a
choice /C yn /M "* Do you want to delete Previous Versions tab in explorer "
if %errorlevel% == 1 ( start /w regedit /s DeletePrevVersons.reg)

color b
choice /C yn /M "* Do you want to delete Scan with Windows Defender "
if %errorlevel% == 1 ( start /w regedit /s DeleteScanDefender.reg )


rem color b
rem choice /C yn /M "* Do you want to delete Print "

rem color c
rem choice /C yn /M "* Do you want to delete Win Defender "

rem color a
rem choice /C yn /M "* Do you want to delete Cast to Device "

rem color a
rem color b
rem choice /C yn /M "* Do you want to delete Give access to "

rem color a
rem color b
rem choice /C yn /M "* Do you want to delete Restore previous versions "


:End

echo(
Expand Down
16 changes: 16 additions & 0 deletions RCWM/uninstall/Add_PrevVersons.reg
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Windows Registry Editor Version 5.00


[HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\{596AB062-B4D2-4215-9F74-E9109B0A8153}]
@=""

[HKEY_CLASSES_ROOT\CLSID\{450D8FBA-AD25-11D0-98A8-0800361B1103}\shellex\ContextMenuHandlers\{596AB062-B4D2-4215-9F74-E9109B0A8153}]
@=""

[HKEY_CLASSES_ROOT\Directory\shellex\ContextMenuHandlers\{596AB062-B4D2-4215-9F74-E9109B0A8153}]
@=""

[HKEY_CLASSES_ROOT\Drive\shellex\ContextMenuHandlers\{596AB062-B4D2-4215-9F74-E9109B0A8153}]
@=""

;done
11 changes: 11 additions & 0 deletions RCWM/uninstall/Add_ScanDefender.reg
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\CLSID\{09A47860-11B0-4DA5-AFA5-26D86198A780}\InprocServer32]
@="C:\\Program Files\\Windows Defender\\shellext.dll"
"ThreadingModel"="Apartment"

[HKEY_CLASSES_ROOT\CLSID\{09A47860-11B0-4DA5-AFA5-26D86198A780}\Version]
;might not work ...
@="10.0.18362.1316"

;done
34 changes: 34 additions & 0 deletions RCWM/uninstall/Add_WindowsMediaPlayer.reg
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,38 @@ Windows Registry Editor Version 5.00
@="Add to Windows Media Player list"
"AppId"="{45597c98-80f6-4549-84ff-752cf55e2d29}"


[HKEY_CLASSES_ROOT\CLSID\{45597c98-80f6-4549-84ff-752cf55e2d29}\LocalServer32]
@="\"%ProgramFiles(x86)%\\Windows Media Player\wmplayer.exe\" /Enqueue"

[HKEY_CLASSES_ROOT\CLSID\{45597c98-80f6-4549-84ff-752cf55e2d29}\SupportedProtocols]
"dlna-playsingle"=""
"http"=""
"mms"=""
"rtsp"=""
"rtsps"=""
"rtspu"=""


[HKEY_CLASSES_ROOT\AppID\{ed1d0fdf-4414-470a-a56d-cfb68623fc58}]
@="Play with Windows Media Player"

[HKEY_CLASSES_ROOT\CLSID\{ed1d0fdf-4414-470a-a56d-cfb68623fc58}]
@="Play with Windows Media Player"
"AppId"="{ed1d0fdf-4414-470a-a56d-cfb68623fc58}"



[HKEY_CLASSES_ROOT\CLSID\{ed1d0fdf-4414-470a-a56d-cfb68623fc58}\LocalServer32]
@="\"%ProgramFiles(x86)%\\Windows Media Player\wmplayer.exe\" /Play"

[HKEY_CLASSES_ROOT\CLSID\{ed1d0fdf-4414-470a-a56d-cfb68623fc58}\SupportedProtocols]
"dlna-playsingle"=""
"http"=""
"mms"=""
"rtsp"=""
"rtsps"=""
"rtspu"=""


;done

0 comments on commit c1320ff

Please sign in to comment.