1
No aparece la punta del globo cuando se ejecuta el script
[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? …