http://www.perlmonks.org?node_id=967683


in reply to Re^2: Proc::Background does not take file path with spaces
in thread Proc::Background does not take file path with spaces

I tried the folllowing
my $CommandNew = qq("C:\\Program Files (x86)\\vs.exe"); print "Command is $CommandNew\n"; my $ID = Proc::Background->new($CommandNew);

ERROR: Test.pl: cannot find absolute location of "C:\Program

Also tried
my $CommandNew = q(C:\\Program Files (x86)\\vs.exe); print "Command is $CommandNew\n"; my $ID = Proc::Background->new($CommandNew);

ERROR: Test.pl: no executable program located at C:\Program
I am still stuck