When I try to do Process.Start(\"echo\", \"%cd%\") it raises a System.ComponentModel.Win32Exception: The system cannot find the file specified. Whe
Process.Start(\"echo\", \"%cd%\")
System.ComponentModel.Win32Exception: The system cannot find the file specified
Try Process.Start("cmd.exe", "/c echo %CD%")
Process.Start("cmd.exe", "/c echo %CD%")
as far as echo is not an executable but a command inside.