绕过PowerShell cmdlet的确认提示

时间:2017-12-26 06:30:49

标签: windows powershell confirmation

我正在尝试使用以下cmdlet从PowerShell断开与iscsi目标的连接。

toolbar = (Toolbar)findViewById(R.id.toolbar_shopping_list);
    toolbar.setBackgroundColor(ContextCompat.getColor(getApplicationContext(), R.color.toolbar_anaranjado));
    setSupportActionBar(toolbar);


    // text for the toolbar
    TextView textoToolbar = (TextView)toolbar.findViewById(R.id.contador_toolbar);
    textoToolbar.setText("Calcular los materiales");

但是一旦我执行了,就会显示确认提示:

Disconnect-IscsiTarget -NodeAddress $Target.NodeAddress

如何将默认值设为是?

1 个答案:

答案 0 :(得分:1)

Disconnect-IscsiTarget -NodeAddress $Target.NodeAddress -Confirm:$false