Windows格式命令行跳过'输入当前卷...'和'继续格式化'...

时间:2015-08-18 07:39:46

标签: windows batch-file


我想在没有用户访问的情况下制作恢复脚本,我的代码如下:
dsim /apply-image...
format C /fs:ntfs /v:"win" /Q /X
reboot
问题是format命令想要为驱动器C输入固定的卷值。没问题,我在echo win10x64|命令之前使用format跳过了该问题:
echo win| format C /fs:ntfs /v:"win" /Q /X。<登记/> 问题是之后我需要输入一个值Y/N,我没有找到任何可以回显这两个值的东西。
任何的想法?谢谢!

1 个答案:

答案 0 :(得分:1)

我这样做了:

(
    echo win
    echo Y
)>temp.tmp
call format C /fs:ntfs /v:"win" /Q /X<temp.tmp
del temp.tmp
dism /apply-image
reboot

并自动输入我的请求值