我有一个简单的ansible脚本,正在尝试禁用收音机。我想使用win-shell(powershell)来执行此操作,但是它期望得到响应,但是我不知道如何使它起作用:
我尝试了各种各样的事情,但这是最新的:
-name: Disable wifi and blutooth
win-sh:
A '' | Disable-NetAdapter -Name "*"
当我在Powershell中运行Disable-NetAdapter时,它提示您确认是,对所有等都是确认。A对所有选择是。
有人可以帮我这个忙吗?我曾经用过“期望”,但也没有运气。
答案 0 :(得分:1)
我知道了。
bool[] timerExistence = { false, false, false, false, false, false };
for (int i = 0; i < timerExistence.Length; i++)
{
if (!timerExistence[i])
{
timerExistence[i] = true;
TextBox txt = new TextBox()
{
Name = "timerBox" + Convert.ToString(i),
Width = 63,
Location = new Point(0, timerPos)
};
timerPos += 24;
TimerContainer.Controls.Add(txt);
StartTimer(timerCount, timerLife, txt);
}
}
delBtn.Click += (sender, e) =>
{
timerExistence[count] = false;
//...
};