我需要以下帮助;
这是 cmd-let
Set-Datastore [-Datastore] <Datastore[]> [[-Name] <String>] [-CongestionThresholdMillisecond <Int32>]
我有一个文本框,将与“-CongestionThresholdMillisecond”参数一起使用。我已经厌倦了不同的方式,但是 get 无法将字符串转换为 int 或值小于 5(不允许)。
$textBox417.Size = New-Object Drawing.Size (80,30)
$textBox417.Location = New-Object System.Drawing.Size (100,140)
$int = $textBox417.Value.ToString()
$button = New-Object System.Windows.Forms.Button
$button.Size = New-Object Drawing.Size (110,30)
$button.Location = New-Object System.Drawing.Size (50,180)
$button.add_click({Set-Datastore -Name $label438.Text -CongestionThresholdMillisecond $int})
非常感谢帮助!