使用.bat文件配置WinRM而没有是/否提示


13

我想使用bat文件在所有客户端中配置winrm。运行bat file winrm quickconfig命令后,提示您输入是/否。我不知道如何在批处理文件中回答“是”。


您可以张贴您编写的脚本吗?
Abhijeet Kasurde 2012年

这是代码:winrm quickconfig,我试图通过使用“ echo y”来强制回答“是”,但那没有用。
戴夫

通常,如果要非交互式地运行交互式命令行工具,则需要找到命令行开关。通常情况下,它的像/y-y/q-q(对于“是”或“安静”)。通常,可以通过运行command /?(Windows / DOS)cmnd --helpman cmnd(Unix / Linux)或Get-Help Ridiculously-Long-Command-Name(PowerShell)找到更多详细信息。
天鹰

Answers:


14

将参数添加-quiet到quickconfig调用将抑制是/否提示,并执行您想要的操作。

winrm quickconfig -quiet

1
好!起作用了!许多TNX
dave 2012年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.