私は密接に関連する投稿をたくさん見てきましたので、私は一人ではないことを知っていますが、私が探している答えを私に与えてくれる人は誰もいません. これが尋ねられて答えられたのに、私がそれを見つけることができなかった場合は、お詫び申し上げます。
このスクリプトはカスタムの通知領域バルーンを作成します。これをクリックすると、新しい IE ウィンドウが開き、何らかの URL が表示されます。私が使用しているPowerShell ISE GUIからはうまく機能します。他の投稿で提案されているオプションを使用してコマンドラインから機能させることはできません。具体的には、IE ウィンドウを開くことができません。通知は問題ないように見えますが、IE ウィンドウが表示されません...?? 試してみました:
- パワーシェル 。スクリプト.ps1
- powershell -ファイル script.ps1
- 指図
- &
等
考え?
私のスクリプト:
#Load the required assemblies
[void] [System.Reflection.Assembly]::LoadWithPartialName(“System.Windows.Forms”)
#Remove any registered events related to notifications
Remove-Event BalloonClicked_event -ea SilentlyContinue
Unregister-Event -SourceIdentifier BalloonClicked_event -ea silentlycontinue
Remove-Event BalloonClosed_event -ea SilentlyContinue
Unregister-Event -SourceIdentifier BalloonClosed_event -ea silentlycontinue
Remove-Event Disposed -ea SilentlyContinue
Unregister-Event -SourceIdentifier Disposed -ea silentlycontinue
#Create the notification object
$notification = New-Object System.Windows.Forms.NotifyIcon
#Define various parts of the notification
$notification.Icon = [System.Drawing.SystemIcons]::Information
$notification.BalloonTipTitle = “**Reminder**”
$notification.BalloonTipIcon = “Warning”
$title = “message to user”
$notification.BalloonTipText = $title
#Make balloon tip visible when called
$notification.Visible = $True
## Register a click event with action to take based on event
#Balloon message clicked
register-objectevent $notification BalloonTipClicked BalloonClicked_event -Action {
Start-Process 'c:\Program Files\Internet Explorer\iexplore.exe' -ArgumentList 'http://someURL.com' -WindowStyle Maximized -Verb Open
#Get rid of the icon after action is taken
$notification.Dispose()
} | Out-Null
#Balloon message closed
register-objectevent $notification BalloonTipClosed BalloonClosed_event -Action {$notification.Dispose()} | Out-Null
#Call the balloon notification
$notification.ShowBalloonTip(1000)