批处理文件中的网络使用 - 是提示

问题描述 投票:0回答:2

我正在尝试编写一个 net use 命令脚本:

net user UserName ReallyLongPasswordHere /add

当我执行此操作时,我会收到提示:

The password entered is longer than 14 characters.  Computers
with Windows prior to Windows 2000 will not be able to use
this account. Do you want to continue this operation? (Y/N) [Y]:

我怎样才能通过这个?我试过:

echo y| net user UserName ReallyLongPasswordHere /add

但这不起作用,它说“未提供有效响应”。 Windows Server 2008R2 是其运行所在。

谢谢!

windows batch-file windows-server-2008-r2
2个回答
4
投票

您可以添加

/Y
/YES
来回答此提示。

示例:

net user MyUser MyPasswordIsReallyLong /ADD /Y

(这是一个未记录的功能。)


0
投票

“/ADD /Y”工作“add /Y”不行。 “/add /y”不是。服务器 2022

© www.soinside.com 2019 - 2024. All rights reserved.