windows 7 64bit - NTFS
qBittorent 3.0.6
Test 1:
Run external program on torrent completion: D:\perl\test.bat
test.bat:
Code: Select all
@echo off
notepad.exe
pause
Test 2:
Run external program on torrent completion: cmd.exe
Result : After torrent is downloaded qbittorent hangs (program stops responding notification)
Test 3:
Run external program on torrent completion: D:\perl\test.vbs
vbs:
Code: Select all
Dim WshShell
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad.exe", 1
Test 4:
Run texternal program on torrent completion:
notepad.exe
works fine
Question: is this a bug or am I doing something wrong ?