用ExitWindows来写个程序并且能设置时间的,能让电脑到设置的时间就能自动关机的

问题描述

用ExitWindows来写个程序并且能设置时间的,能让电脑到设置的时间就能自动关机的

新手上路最好详细点,用ExitWindows来写个程序并且能设置时间的,能让电脑到设置的时间就能自动关机的

解决方案

用不着,直接调用Shutdown命令行(可以用ShellExecute或者Winexec)

C:Windowssystem32>Shutdown
Usage: Shutdown [/i | /l | /s | /r | /g | /a | /p | /h | /e | /o] [/hybrid] [/f]

[/m \computer][/t xxx][/d [p|u:]xx:yy [/c "comment"]]

No args    Display help. This is the same as typing /?.
/?         Display help. This is the same as not typing any options.
/i         Display the graphical user interface (GUI).
           This must be the first option.
/l         Log off. This cannot be used with /m or /d options.
/s         Shutdown the computer.
/r         Full shutdown and restart the computer.
/g         Full shutdown and restart the computer. After the system is
           rebooted, restart any registered applications.
/a         Abort a system shutdown.
           This can only be used during the time-out period.
/p         Turn off the local computer with no time-out or warning.
           Can be used with /d and /f options.
/h         Hibernate the local computer.
           Can be used with the /f option.
/hybrid    Performs a shutdown of the computer and prepares it for fast star

tup.
Must be used with /s option.
/e Document the reason for an unexpected shutdown of a computer.
/o Go to the advanced boot options menu and restart the computer.
Must be used with /r option.
/m computer Specify the target computer.
/t xxx Set the time-out period before shutdown to xxx seconds.
The valid range is 0-315360000 (10 years), with a default of 30.
If the timeout period is greater than 0, the /f parameter is
implied.
/c "comment" Comment on the reason for the restart or shutdown.
Maximum of 512 characters allowed.
/f Force running applications to close without forewarning users.
The /f parameter is implied when a value greater than 0 is
specified for the /t parameter.
/d [p|u:]xx:yy Provide the reason for the restart or shutdown.
p indicates that the restart or shutdown is planned.
u indicates that the reason is user defined.
If neither p nor u is specified the restart or shutdown is
unplanned.
xx is the major reason number (positive integer less than 256).
yy is the minor reason number (positive integer less than 65536).

/t参数就可以设置倒计时时间。

解决方案二:

设置一个界面,来设置时间。得到时间后。用SetTimer来做一个定时器。到时间后。调用ExitWindows来关闭计算机

时间: 2024-10-27 22:02:04

用ExitWindows来写个程序并且能设置时间的,能让电脑到设置的时间就能自动关机的的相关文章

类别-如何用swift写tts程序

问题描述 如何用swift写tts程序 AVSpeechSynthesizer *tts1;AVSpeechUtterance *utterance = [AVSpeechUtterance speechUtteranceWithString:@""i love you""];//设置语言类别(不能被识别,返回值为nil)AVSpeechSynthesisVoice *voiceType = [AVSpeechSynthesisVoice voiceWithLang

小程序 求解-这里有一题ACM的小题目,求众神解答。帮写个程序。小弟冰天雪地裸奔哭嚎以示感谢!

问题描述 这里有一题ACM的小题目,求众神解答.帮写个程序.小弟冰天雪地裸奔哭嚎以示感谢! 邮局选址: 在一个按照东西和南北方向划分成规整街区的城市里,n 个居民点散乱的分布在不同的街区中.用X坐标表示东西向,用Y坐标表示南北向,各居民点的位置可以有坐标(XY)表示.街区中任意2点(X1,Y1)和(X2,Y2)质检的距离可以用数值丨X1-X2丨+丨Y1-Y2丨度量.居民们希望在城市中选择建立邮局的最佳位置,使n 个居民点到邮局的距离总和最小. 编程任务: 给定n 个居民点的位置,计算n个居民点到

工程-vc++6.0写的程序用vs2010打开需要改变些什么

问题描述 vc++6.0写的程序用vs2010打开需要改变些什么 要整理一个程序 ,不是自己写的,原来是vc++6.0写的,现在用vs2010打开报一些很奇怪的错,都指向头文件,complex 还有string 搞了很长时间了,哪位大神给解答一下,小弟感激不尽啊,谢谢 解决方案 这可能是头文件的错误.因为不同的编译器可能将库文件放在不同的头文件中,所以要想把错误改正,需要了解需要的头文件放在那个库中.其实用遵循统一标准的编译器就可以避免这些问题,可以用linux gcc 编译器! 解决方案二:

java方式来写js程序(demo)

js|程序  javascript应用是非常广泛的,而且功能特别强大,但是javascript程序就是没有java代码好看,这点是好无疑问的,不过因为js应用太广了,在web应用中几乎离不开它,我初学js,总想像写java程序那样写js. 一个是过滤相同的元素:<script src="core.js"></script><script src="collection.js"></script><script&g

c语言-C语言自己写的程序有个小错,求改下

问题描述 C语言自己写的程序有个小错,求改下 #includeint main(){ int nlkyt1t2t3;char x1x2x3;t1=0;t2=0;t3=0; printf(""请输入现在队伍的列数:n""); scanf(""%d""&n); printf(""拉面的制作时间:n""); scanf(""%d""&l)

tinyos-在tinyOS下写nec程序,在一组无线节点中进行数据包转发及打印

问题描述 在tinyOS下写nec程序,在一组无线节点中进行数据包转发及打印 10C 选取一个节点作为数据源节点,向网络中的其它节点进行数据包的转发,并将数据包中的内容打印出来. 解决方案 tiny OS第一次听说.有空去百度一下看看.先帮楼主顶下先!

如何mvc规范写jsp-view,action,service,dao,domain,如何按照mvc规范写jsp程序

问题描述 view,action,service,dao,domain,如何按照mvc规范写jsp程序 我现在开始学习mvc分层架构,但是是不知道如何下手,知道程序应该差不多是按照控制层action->显示层view->业务层service->数据处理层dao,我先写了domain层,但是又不知道要从哪里接着写了,总是写着写着逻辑就乱了,请问大概要按照什么顺序写逻辑清晰一点呢?各个层之间怎么联系起来?请大大侠们帮忙. 解决方案 domain层是??? 说说我自己的一点看法,可能有点不准确

苹果-C# 写的程序为什么在虚拟机上运行不了?

问题描述 C# 写的程序为什么在虚拟机上运行不了? 客户用的是苹果机,虚拟机上装了windows系统,也有.netframework运行环境,程序在本机上也能运行,在他那就是运行不起来,一运行就提示"xxxx已停止工作" 解决方案 和虚拟机无关,虚拟机上是否是山寨盗版windows,导致.net framework工作不正常.在你的程序中main中的第一行加上一个messagebox.show,如果看不到框就出错了,那就是环境的问题了. 建议去 msdn.itellyou.cn 下载原

自己动手写操作系统程序调试cpu关闭

问题描述 自己动手写操作系统程序调试cpu关闭 直接在裸机上运行此程序,电脑直接重起. 本人的cpu是i5 4590,程序该如何改? %include "pm.inc" org 7c00h jmp LABEL_BEGIN ;[SECTION.GDT] ;GDT LABEL_GDT: Descriptor 0,0,0 ;空描述符 LABEL_DESC_CODE32: Descriptor 0,SegCode32Len-1,DA_C+DA_32 ;代码段,32位 LABEL_DESC_VI