我有一个Powerhell脚本的GUI。GUI中包含一个结果标签,我想用这个标签来显示脚本中每个命令的成功或失败。我想用这个标签来显示脚本中每个命令的成功或失败。下面是两个例子。但是当第二个命令运行时,它删除了结果标签中的第一行。有什么办法可以强迫它添加另一行,直到脚本完成?或者有更好的方法吗?
function RunScript{
##Enable Remote Desktop
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server" -Name "fdenyTSConnections" -Value 0
Enable-NetFirewallRule -DisplayGroup "Remote Desktop"
$resultsLabel.text = "Enabling Remote Desktop"
#Sets optical disk drive letter to 'O:'
Set-WmiInstance -InputObject( Get-WmiObject -Class Win32_volume -Filter "DriveLetter = '$OpticalDiskLetter'") `
-Arguments @{DriveLetter='O:'}
$resultsLabel.Text = "Setting optical drive letter to 'O:'..."
}
$resultsLabel.Text += "`nSetting optical drive letter to 'O:'..."