时间:2021-05-20
本文实例讲述了C#实现控制Windows系统关机、重启和注销的方法。分享给大家供大家参考。具体分析如下:
使用.NET和C#.NET,我们可以对当前PC执行关机,重启,注销操作。
NET Framework中,有一个命名空间System.Diagnostics具有所需的类和方法,从当前PC上运行.NET应用程序来执行这些操作。
请使用下面的按钮来执行关机,重启和注销。
下面是一个winform程序
//SHUT DOWNprotected void btnShutDown_Click(object sender, EventArgs e){ Process.Start("shutdown.exe", "-s"); // By Default the Shutdown will take place after 30 Seconds //if you want to change the Delay try this one Process.Start("shutdown.exe","-s -t xx"); //Replace xx with Seconds example 10,20 etc}//RESTARTprotected void btnRestart_Click(object sender, EventArgs e){ Process.Start("shutdown.exe", "-r"); // By Default the Restart will take place after 30 Seconds //if you want to change the Delay try this one Process.Start("shutdown.exe","-r -t 10"); //Replace xx with Seconds example 10,20 etc}// LOG OFFprotected void btnLogOff_Click(object sender, EventArgs e){ Process.Start("shutdown.exe", "-l"); //This Code Will Directly Log Off the System Without warnings}希望本文所述对大家的C#程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了C#实现操作windows系统服务(service)的方法。分享给大家供大家参考。具体如下:这段C#代码可以控制启动和停止系统服务//////停止
下面是在C#中实现关机、注销和锁定电脑的源代码。usingSystem;usingSystem.Collections.Generic;usingSystem.
本文实例讲述了C#实现在控制台输出当前系统时间的方法。分享给大家供大家参考。具体实现方法如下://C#实现的小控制台程序:动态输出当前时间usingSystem
一、注销,关机,重启 注销系统的logout命令 1,Logout注销是登陆的相对操作,登陆系统后,若要离开系统,用户只要直接下达logout命令即
在Windows8右键菜单添加关机,重启,注销,休眠,睡眠,切换用户,锁住。呃呃呃想不到Windows8的关机把大家给难住了……