Process.Start("\\server\\C\\WinAsm\\WinAsm.exe"); This method writes that the file was not found.
Can I start the process somehow?
Process.Start("\\server\\C\\WinAsm\\WinAsm.exe"); This method writes that the file was not found.
Can I start the process somehow?
Process.Start("\\server\\C\\WinAsm\\WinAsm.exe"); or
Process.Start(@"\server\C\WinAsm\WinAsm.exe"); is launching the program along the relative path to the active program directory. Most likely the active directory will be the folder of the program itself.
To start the program from the server, you need to add one more slash on the way that would work
Process.Start("\\\\server\\C\\WinAsm\\WinAsm.exe"); or
Process.Start(@"\\server\C\WinAsm\WinAsm.exe"); Source: https://ru.stackoverflow.com/questions/533769/
All Articles