Problem with exec in open and openpath

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
adamiks
Posts: 16
Joined: Sun Jun 02, 2013 8:37 pm

Problem with exec in open and openpath

Post by adamiks »

I have Windows 8 64bit
and i want to change default action for open and openpath in eveyrthing

so I add
fallowing

Code: Select all

$exec("c:\Program Files (x86)\TC PowerPack 2\TCPowerPack.exe" /O /T "%1")
and i get

Code: Select all

Error: the system cannot find the file specified
but this file is there
i tried using short names and still the same

could anyone help me?
void
Developer
Posts: 15675
Joined: Fri Oct 16, 2009 11:31 pm

Re: Problem with exec in open and openpath

Post by void »

Please try:

Code: Select all

$exec("c:\Program Files (x86$)\TC PowerPack 2\TCPowerPack.exe" /O /T "%1")
Note the $) to escape the closing parenthesis.
adamiks
Posts: 16
Joined: Sun Jun 02, 2013 8:37 pm

Re: Problem with exec in open and openpath

Post by adamiks »

it worked:]
thanks for help
Post Reply