Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Solved by restoring Windows to previous state

The message (The system cannot find the path specified.) shows...

1) When i open new CMD (Win+R => cmd). It starts with introduction. (on line 3)

Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
The system cannot find the path specified.

C:\Users\ViliamKopecky>

2) When i execute some command like cmd /C dir (or cmd /C php -v or whatever) (on line 2)

C:\Users\ViliamKopecky>cmd /C dir
The system cannot find the path specified.
 Volume in drive C is Windows7_OS
 Volume Serial Number is 8230-1246
...

C:\Windows\System32>cmd /C php -v
The system cannot find the path specified.
PHP 5.4.8 (cli) (built: Oct 16 2012 22:30:23)
Copyright (c) 1997-2012 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2012 Zend Technologies

3) (the most annoying) when i run exec function from PHP or Node.js or probably any scripting lang. (which are probably runned from inside as cmd /C <command>)

The message does not show...

1) when i execute the command right from the cmd (or mingw, ...)

C:\Users\ViliamKopecky>dir
 Volume in drive C is Windows7_OS
 Volume Serial Number is 8230-1246

 Directory of C:\Users\ViliamKopecky

Let's start with simple command from cmd.

php -r "exec('dir', $stdout, $stderr); print(implode(\"\n\", $stdout), $stderr);"

and the result is like this (the directory test is empty - that is correct):

E:\test>php -r "exec('dir', $stdout, $stderr); print(implode(\"\n\", $stdout), $stderr);"
The system cannot find the path specified.
 Volume in drive E is www
 Volume Serial Number is 0C99-95EC

 Directory of E:\test

09.11.2012  22:42    <DIR>          .
09.11.2012  22:42    <DIR>          ..
               0 File(s)              0 bytes
               2 Dir(s)  13 495 296 000 bytes free
int(1)

Which shows that the command dir has is executed from php correctly. Only thing thats wrong is the second line - The system cannot find the path specified. - that should not be there.

This message is output by exec from PHP (and also from Node.js as require('child_process').exec("dir", function(err, stdout, stderr) {console.log(stderr)});)

When I execute command right from cmd (or mingw, etc.) it executes correctly without the message. Environment variable PATH seem ok. Problem is just executing from script environment through exec functions.

How to get rid of that annoying message? Thanks

share|improve this question
So where is the failing code? – Michael Krelin - hacker Nov 9 '12 at 22:03
It's the message The system cannot find the path specified. - in larger scripts it shows like 50 times. – ViliamKopecky Nov 9 '12 at 22:05
Ah… Try system instead of exec? – Michael Krelin - hacker Nov 9 '12 at 22:12
or shell_exec? – Michael Krelin - hacker Nov 9 '12 at 22:13
1  
See the comment by alvaro at php.net/manual/en/function.exec.php – Nuzzolilo Nov 9 '12 at 22:46
show 5 more comments

3 Answers

up vote 1 down vote accepted

The problem is that some program has been set to autorun when you run cmd.exe. In my case it was ANSICON that was installed... and then I moved the file without properly uninstalling.

I found a solution in this blog post:

http://carol-nichols.com/2011/03/the-system-cannot-find-the-path-specified/

The short version is to find

HKCU\Software\Microsoft\Command Processor\AutoRun

and clear the value.

share|improve this answer
ANSICON - yes, the problem stared after I installed it. Marking your answer as accepted. Thanks ;) – ViliamKopecky Nov 12 '12 at 15:22

I don't know if this will fix the problem, but see this for some insight. http://blogs.technet.com/b/heyscriptingguy/archive/2004/08/10/how-can-i-call-the-dir-command.aspx

Instead of 'dir', you can try 'cmd.exe /C dir'

The reason for this is that there is no dir.exe in Windows. A lot of commands are embedded in the system interface.

The error message “The system cannot find the path specified.” could be occurring when the system is looking for dir.exe but cannot find it. It's possible that there is a backup option in place on your system, where if a command is not found, it will spawn a cmd.exe process (or something related to it) and then run the dir command from within that. The error message will still get output to stdout but the backup option kicks in and gives you the dir output.

Edit: if this doesn't work, try 'C:\windows\system32\cmd.exe /C dir' - if that doesn't work, then I am assuming that it is a problem involving where PHP stores the information that it uses to spawn a system command.

share|improve this answer
That just outputs "The system cannot find the path specified." twice, and then correctly prints out the dir result. – ViliamKopecky Nov 9 '12 at 22:25
Try specifying the absolute path to cmd.exe then. – Nuzzolilo Nov 9 '12 at 22:27
"C:\windows\system32\cmd.exe /C dir" – Nuzzolilo Nov 9 '12 at 22:28
I tried even running the .bat file from same directory php -r "print(shell_exec('foobar.bat'));" and that also print that message. And then it correctly prints out the result of that .bat file. – ViliamKopecky Nov 9 '12 at 22:30
Running C:\windows\system32\cmd.exe /C dir right from the cmd (without any php or node) it also prints out that message :( – ViliamKopecky Nov 9 '12 at 22:31
show 3 more comments

This actually looks like a startup error with PHP, not with your code. Does

php -r "echo 1;"

also throw the same error? If so, your php.ini file or an include may be pathed incorrectly.

php -i

should give you more info.

share|improve this answer
This runs correctly C:\Users\ViliamKopecky>php -r "echo 1;" 1 – ViliamKopecky Nov 9 '12 at 23:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.