Integrate Filebot into Windows Right Click Menu

Support for Windows users
Post Reply
User avatar
Trubbleguy
Posts: 4
Joined: 21 May 2015, 07:19

Integrate Filebot into Windows Right Click Menu

Post by Trubbleguy »

I have managed to fully integrate Filebot into Folder and File Right click menus.
I have 4 menus:

Rename TV
Rename Movie
Rename and Move Tv to G:\TV and create show folder and then season folder and move file to it.
Rename and Move Movie to H:\Movies and create folder and move movie to it.

All menus work on FILE or FOLDER

the following are REG files for install and delete Registry entrys.

Install_Filebot.reg nb. This also has the Java Prefs fix for error messages shown by java console.

Code: Select all

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Prefs]

[HKEY_CLASSES_ROOT\*\shell]

[HKEY_CLASSES_ROOT\*\shell\FBRenameM]
@="Rename Movie"
"NoWorkingDirectory"=""

[HKEY_CLASSES_ROOT\*\shell\FBRenameM\command]
@="C:\\Program Files\\FileBot\\filebot.exe -rename \"%1\" --conflict skip -non-strict --format \"{n} [{y}] {vf} {af}\""
"IsolatedCommand"="C:\\Program Files\\FileBot\\filebot.exe -rename \"%1\" --conflict skip -non-strict --format \"{n} [{y}] {vf} {af}\""

[HKEY_CLASSES_ROOT\*\shell\Filebot]
@="Rename Movies To H:\\Movies"
"NoWorkingDirectory"=""

[HKEY_CLASSES_ROOT\*\shell\Filebot\command]
@="C:\\Program Files\\FileBot\\filebot.exe -rename \"%1\" --action move --conflict skip -non-strict --format \"H:/Movies/{n} [{y}]/{n} [{y}] {vf} {af}\""
"IsolatedCommand"="C:\\Program Files\\FileBot\\filebot.exe -rename \"%1\" --action move --conflict skip -non-strict --format \"H:/Movies/{n} [{y}]/{n} [{y}] {vf} {af}\""

[HKEY_CLASSES_ROOT\*\shell\FilebotTV]
"NoWorkingDirectory"=""
@="Rename Tv To G:\\TV"

[HKEY_CLASSES_ROOT\*\shell\FilebotTV\command]
@="C:\\Program Files\\FileBot\\filebot.exe -rename \"%1\" --action move --conflict skip -non-strict --format \"G:/TV/{n}/{n} {'Season'+s.pad(2)}/{n}-{s00e00}-{t}\""
"IsolatedCommand"="C:\\Program Files\\FileBot\\filebot.exe -rename \"%1\" --action move --conflict skip -non-strict --format \"G:/TV/{n}/{n} {'Season'+s.pad(2)}/{n}-{s00e00}-{t}\""

[HKEY_CLASSES_ROOT\*\shell\FilebotTVR]
"NoWorkingDirectory"=""
@="Rename Tv"

[HKEY_CLASSES_ROOT\*\shell\FilebotTVR\command]
"IsolatedCommand"="C:\\Program Files\\FileBot\\filebot.exe -rename \"%1\" --conflict skip -non-strict --format \"{n}-{s00e00}-{t}\""
@="C:\\Program Files\\FileBot\\filebot.exe -rename \"%1\" --conflict skip -non-strict --format \"{n}-{s00e00}-{t}\""

[HKEY_CLASSES_ROOT\Directory\shell\FBRenameM]
@="Rename Movie"
"NoWorkingDirectory"=""

[HKEY_CLASSES_ROOT\Directory\shell\FBRenameM\command]
@="C:\\Program Files\\FileBot\\filebot.exe -rename \"%1\" --conflict skip -non-strict --format \"{n} [{y}] {vf} {af}\""
"IsolatedCommand"="C:\\Program Files\\FileBot\\filebot.exe -rename \"%1\" --conflict skip -non-strict --format \"{n} [{y}] {vf} {af}\""

[HKEY_CLASSES_ROOT\Directory\shell\filebot]
@="Rename Movie To G:\\Movies"
"NoWorkingDirectory"=""

[HKEY_CLASSES_ROOT\Directory\shell\filebot\command]
@="C:\\Program Files\\FileBot\\filebot.exe -rename \"%1\" --action move --conflict skip -non-strict --format \"H:/Movies/{n} [{y}]/{n} [{y}] {vf} {af}\""
"IsolatedCommand"="C:\\Program Files\\FileBot\\filebot.exe -rename \"%1\" --action move --conflict skip -non-strict --format \"H:/Movies/{n} [{y}]/{n} [{y}] {vf} {af}\""

[HKEY_CLASSES_ROOT\Directory\shell\FilebotTV]
"NoWorkingDirectory"=""
@="Rename Tv To G:\\TV"

[HKEY_CLASSES_ROOT\Directory\shell\FilebotTV\command]
@="C:\\Program Files\\FileBot\\filebot.exe -rename \"%1\" --action move --conflict skip -non-strict --format \"G:/TV/{n}/{n} {'Season'+s.pad(2)}/{n}-{s00e00}-{t}\""
"IsolatedCommand"="C:\\Program Files\\FileBot\\filebot.exe -rename \"%1\" --action move --conflict skip -non-strict --format \"G:/TV/{n}/{n} {'Season'+s.pad(2)}/{n}-{s00e00}-{t}\""

[HKEY_CLASSES_ROOT\Directory\shell\FilebotTVR]
"NoWorkingDirectory"=""
@="Rename Tv"

[HKEY_CLASSES_ROOT\Directory\shell\FilebotTVR\command]
"IsolatedCommand"="C:\\Program Files\\FileBot\\filebot.exe -rename \"%1\" --conflict skip -non-strict --format \"{n}-{s00e00}-{t}\""
@="C:\\Program Files\\FileBot\\filebot.exe -rename \"%1\" --conflict skip -non-strict --format \"{n}-{s00e00}-{t}\""
WARNING....
MODIFY THE CODE FOR YOUR DESTINATION FOLDERS AND FILENAME OPTIONS FIRST AS THESE ARE MY SETTINGS!!!!!!



UnInstall_Filebot.reg this uninstalls the registry entries.

Code: Select all

Windows Registry Editor Version 5.00



[-HKEY_CLASSES_ROOT\*\shell\Filebot]

[-HKEY_CLASSES_ROOT\*\shell\FilebotTV]

[-HKEY_CLASSES_ROOT\*\shell\FBRenameM]

[-HKEY_CLASSES_ROOT\*\shell\FilebotTVR]

[-HKEY_CLASSES_ROOT\Directory\shell\FilebotTV]

[-HKEY_CLASSES_ROOT\Directory\shell\filebot]

[-HKEY_CLASSES_ROOT\Directory\shell\FBRenameM]

[-HKEY_CLASSES_ROOT\Directory\shell\FilebotTVR]
I hope this helps as i don't like renaming stuff from my Torrent download until i have watched it, then i rename and move to my archive in one right click.....
Post Reply