我正在尝试在Windows8上创建简单的Powershell脚本,它将通过系统托盘通知气球通知我。代码很简单:[void][System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")$objNotifyIcon=New-ObjectSystem.Windows.Forms.NotifyIcon$objNotifyIcon.Icon="D:\1.ico"$objNotifyIcon.BalloonTipIcon="Info"$objNotifyIcon.BalloonTipText="I'mthere"