startinfo

  1. abass

    برنامه نویسی کد خاموش کردن کامپیوتر در سی شارپ

    کد خاموش کردن کامپیوتر Process p = newProcess(); p.StartInfo.FileName = "cmd.exe"; p.StartInfo.UseShellExecute = false; p.StartInfo.RedirectStandardInput = true; p.StartInfo.RedirectStandardOutput = true; p.Start(); StreamWriter sw = p.StandardInput; sw.WriteLine("shutdown -s")...
عقب
بالا