My code is below, basically it's a notification popup.
If possible I would like to add a link to the body of the popup in place of (HERE).
I imagine it would need to be a vbscript object? I'm not sure considering it's running in powershell.
Has anyone tried to do this before?
$wshell = New-Object -ComObject Wscript.Shell $date0 = Get-Date Write-Output "$date0 Update notification popup started" | Out-File C:\update_notification.log
-Append $Continue_notifications = $wshell.Popup('go (HERE) for more information',0x0,'Scheduled Monthly Software Updates',0x1000) If ($Continue_notifications -eq 1)
{$date = Get-Date Write-Output "$date User closed popup" | Out-File C:\update_notification.log -Append -Force Exit }