Nenhuma dica de balão aparece quando o script é executado

0
[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)

Quando executo o acima, apenas um ícone aparece na área de notificação, mas nenhuma dica de balão é exibida. O que há de errado com o roteiro? Estou usando o Windows 10 versão 1803.

    
por Matthew Wai 12.09.2018 / 15:57

1 resposta

0

Eu nunca vi ShowBalloonTip usado dessa maneira. Isso deve funcionar:

[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.BalloonTipIcon = "Warning" 
$notify.BalloonTipText = "The CPU is hot." 
$notify.BalloonTipTitle = "Title"
$notify.ShowBalloonTip(1000)
    
por 12.09.2018 / 17:14