linux shell 自动输入y,自动化PowerShell脚本中的用户输入

听起来像你需要改变$ConfirmPreference变量。

从Get-Help about_Preference_variables输出:

$ConfirmPreference

------------------

Determines whether Windows PowerShell automatically prompts you for

confirmation before running a cmdlet or function.

When the value of the $ConfirmPreference variable (High, Medium, Low) is

less than or equal to the risk assigned to the cmdlet or function (High,

Medium, Low), Windows PowerShell automatically prompts you for confirmation

before running the cmdlet or function.

If the value of the $ConfirmPreference variable is None, Windows PowerShell

never automatically prompts you before running a cmdlet or function.

因此,为了抑制那些确认消息,简单地做:

$ConfirmPreference = "None"

你也可以做到对每个cmdlet的基础上, -Confirm:$false参数:

Set-ADUser -Description $desc -Confirm:$false

请注意,这只适用于如果Cmdlet支持common parameter confirmation。它不会对自制cmdlet产生任何影响,并带有时髦的自制确认逻辑

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值