将下列代码内容复制记事本,保存文本文档,将.txt后缀更名为.bat,双击打开*.bat文件,键盘输入“1”为关机,输入“2”为重启远程计算机。

    1. @echo off
    2. :start
    3. echo.&echo.
    4. echo 确认要关闭或者重启计算机吗?
    5. echo.&echo.
    6. echo [ 1=关闭] [ 2=重启]
    7. echo.&echo.
    8. set/p choice=请输入命令:
    9. if /i "%choice:~0,1%"=="1" (shutdown -s -t 0)
    10. if /i "%choice:~0,1%"=="2" (shutdown -r -t 0)
    11. 1页/共1