[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)
Cuando ejecuto lo anterior, solo aparece un icono en el área de notificación, pero no aparece la punta del globo. ¿Qué tiene de malo el guión? Estoy usando Windows 10 versión 1803.
He corregido la última línea de mi guión.
—
Matthew Wai el
)
en su guión o accidentalmente lo copió mal?