admin管理员组

文章数量:1567922

关机

shutdown -s

重启

shutdown -r

延时关机(单位:秒)

shutdown -s -t 60

定时关机

at 10:00 shutdown -s

取消关机

shutdown -a

ISO创建,装载与弹出

注:iso装载后为只读的

# 创建iso(使用Windows ADK中的oscdimg.exe程序,只包含“父文件夹”内的内容,不包含父文件夹本身)
oscdimg.exe -d d:\source_dir\ d:\destination.iso
# 装载
Mount-DiskImage -ImagePath "E:\windows_10.iso"
# 弹出
Dismount-DiskImage -ImagePath "E:\windows_10.iso" 

下载并安装 Windows ADK
Oscdimg 命令行选项

相关参考:
Windows 10如何装载和弹出ISO映像文件

本文标签: 命令Windowsiso