View Single Post
  #476  
Old 18.06.2018, 23:24
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,533
Default

Quote:
Originally Posted by 44nonymous View Post
It does not work. Cannot run program "C:ProgramsP2PuTorrentutorrent.exe": CreateProcess error=2, The system cannot find the specified file
Caused by using "backslash" (without escaping) as separator iinstead of "slash" as used in the script.

Valid formats:
Code:
callAsync(null, "C:/Programs/P2P/uTorrent/utorrent.exe");
callAsync(null, "C:\\Programs\\P2P\\uTorrent\\utorrent.exe");

Invalid format:
Code:
callAsync(null, "C:\Programs\P2P\uTorrent\utorrent.exe");
Reply With Quote