Convert batch file to C#

  • Thread starter Thread starter Furatxp
  • Start date Start date
F

Furatxp

Guest
Is it possible to convert a windows batch file to a C# console application? Here is the batch file:


Code Snippet

@echo off

lpr -S10.10.1.2 -Praw %1 -ol
lpr -S10.10.1.3 -Praw %1 -ol
lpr -S10.10.1.4 -Praw %1 -ol
lpr -S10.10.1.5 -Praw %1 -ol
pause

Continue reading...
 
Back
Top