[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.
powershell
balloontip
Matthew Wai
fuente
fuente
)
en su guión o accidentalmente lo copió mal?Respuestas:
Nunca he visto
ShowBalloonTip
usado de esa manera. Esto debería funcionar:fuente