windows context menu script not working
Posted: 08 Nov 2022, 20:10
I would like to add filebot to the right click menu in windows, but my script is not working, anybody that can figure out what is wrong?
Code: Select all
Windows Registry Editor Version 5.00
[ HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\FileBotCommands ]
"MUIVerb"="FileBot"
"SubCommands"="FileBot.Rename.Series;FileBot.Rename.Series.Folder;FileBot.Rename.Movie.Folder;FileBot.Get.Subtitels"
[ HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\FileBot.Rename.Series ]
@="Rename tv Series"
[ HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\FileBot.Rename.Series\command ]
@="cmd /c filebot -rename -r \"%1\" --format \"{n} ({y}) - {S00E00} - {t}\" -non-strict"
[ HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\FileBot.Rename.Series.Folder ]
@="Rename TV Series Folder"
[ HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\FileBot.Rename.Series.Folder\command ]
@="cmd /c filebot -rename -r \"%1\" --apply "cover" --format \"{n} ({y})/{n} ({y}) {'Season '+s}/{n} ({y}) - {s00e00} - {t}\" -non-strict"
[ HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\FileBot.Rename.Movie.Folder ]
@="Rename Movie Folder"
[ HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\FileBot.Rename.Movie.Folder\command ]
@="cmd /c filebot -rename -r \"%1\" --apply "cover clean" --format \"{n} ({y})/{n} ({y})\" -non-strict"