0

这是我在这个 SE How to run a PowerShell script from a batch file中提出的这个问题的延续。我已经使用 powershell 来执行这个命令

$query = "SELECT * FROM Win32_DeviceChangeEvent WHERE EventType = 2"
Register-WMIEvent -Query $query -Action { invoke-item "C:\Program Files\abc.exe"}

我已成功执行 powersell 脚本,但收到此警告。 在此处输入图像描述

你能告诉我如何纠正这个问题吗

4

1 回答 1

2

管道命令Format-List或尝试Format-Table -Auto

Register-WMIEvent -Query $query -Action { invoke-item "C:\Program Files\abc.exe"} | Format-List

或者

Register-WMIEvent -Query $query -Action { invoke-item "C:\Program Files\abc.exe"} | Format-Table -Auto
于 2013-10-13T03:34:04.230 回答