I want to create a function/script that can open a .bat file.
I have tried using this: StartApp("C:\\Udskriv\\Print_L1.bat");
, but it does not open the .bat file.
Any ideas?
I want to create a function/script that can open a .bat file.
I have tried using this: StartApp("C:\\Udskriv\\Print_L1.bat");
, but it does not open the .bat file.
Any ideas?
System.Diagnostics.Process.Start("C:\Udskriv\Print_L1.bat"); works.
System.Diagnostics.Process.Start("C:\Udskriv\Print_L1.bat"); works.