[reflection.assembly]::loadwithpartialname("System.Windows.Forms")
[reflection.assembly]::loadwithpartialname("System.Drawing")
# notify.icon type: Information, Warning or Error.
$notify = new-object system.windows.forms.notifyicon
$notify.icon = [System.Drawing.SystemIcons]::Information
$notify.visible = $true
$notify.showballoontip(10,"", "The CPU is hot.",[system.windows.forms.tooltipicon]::None)
上記を実行すると、通知領域にアイコンのみが表示されますが、吹き出しのヒントは表示されません。スクリプトの何が問題になっていますかWindows 10バージョン1803を使用しています。
スクリプトの最後の行を修正しました。
—
Matthew Wai
)
あなたのスクリプトの中にあるのか、それとも誤ってそのスクリプトを誤ってコピーしたのか?