yoursyun
윈도우 명령어 (c#에서 기능 구현하기 위한) 조금. 본문
윈도우 종료 : 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”);
반응형