Opened 6 years ago
#3195 new bug
Execute Plugin will not start another batch file on Windows
Reported by: | Philoufelin | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | needs verified |
Component: | Plugin | Version: | 1.3.15 |
Keywords: | Cc: |
Description
When using execute plugin and having this batch file: Test2.bat
@echo off set torrentid=%1 set torrentname=%2 set torrentpath=%3 Test3.bat %torrentid% %torrentname% %torrentpath% "false"
The execute plugin will never execute the last instruction (aka calling the Test3.bat file)
The content of the Test3.bat file is:
@echo off set torrentid=%1 set torrentname=%2 set torrentpath=%3 echo Hash du torrent: %torrentid% echo Nom du torrent: %torrentname% echo Path du torrent: %torrentpath% echo Supprimer torrent: %4 @echo Torrent Details: %torrentname% %torrentpath% %torrentid% %4 >> "%userprofile%\Desktop\execute_script2.log"
When executing manually Test2.bat with some parameters, it works very well and it calls the Test3.bat file. But when executing Test2.bat with "Execute" Deluge plugin, it is not working.
The reason why I'm trying to do this, is because when configuring execute plugin in Deluge, it is not possible to provide extra parameters to our script.
Note:
See TracTickets
for help on using tickets.