yoursyun

윈도우 명령어 (c#에서 기능 구현하기 위한) 조금. 본문

program/c#

윈도우 명령어 (c#에서 기능 구현하기 위한) 조금.

yoursyun 2013. 8. 9. 17:13

윈도우 종료 : System.Diagnostics.Process.Start("cmd.exe","ShutDown.exe -s -f -t 00");

원도우 재부팅 : System.Diagnostics.Process.Start("cmd.exe","ShutDown.exe -r -f -t 00");

특정폴더 열기: System.Diagnostics.Process.Start("explorer.exe","C:\Temp”);

특정사이트열기 : System.Diagnostics.Process.Start(“explorer.exe”, “http://www.naver.com”);

도스명령어 실행 : System.Diagnostics.Process.Start(“cmd.exe”, “*/c dir”);


반응형