Hyperlink in text inside of wscript.shell popup

 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    }

July 7th, 2015 2:20pm

Since message is of type string, I do not think you will be able to do this.
Free Windows Admin Tool Kit Click here and download it now
July 7th, 2015 2:27pm

That's what I figured.
July 7th, 2015 2:36pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics