codecamp

shutdown - 关机

用法: shutdown [-i | -l | -s | -r | -a] [-f] [-m \\computername] [-t xx] [-c "co

mment"] [-d up:xx:yy]

 

        没有参数                显示此消息(与 ? 相同)

        -i                      显示 GUI 界面,必须是第一个选项

        -l                      注销(不能与选项 -m 一起使用)

        -s                      关闭此计算机

        -r                      关闭并重启动此计算机

        -a                      放弃系统关机

        -m \\computername       远程计算机关机/重启动/放弃

        -t xx                   设置关闭的超时为 xx 秒

        -c "comment"            关闭注释(最大 127 个字符)

        -f                      强制运行的应用程序关闭而没有警告

        -d [u][p]:xx:yy         关闭原因代码

                                u 是用户代码

                                p 是一个计划的关闭代码

                                xx 是一个主要原因代码(小于 256 的正整数)

                                yy 是一个次要原因代码(小于 65536 的正整数)


setver - 显示版本表
sort - 排序
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

功能操作

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }