I am working on a script that serves as a support ticket creator using PowerShell. When activated at any random time in the context of any user, the script shall look for open browser tabs in msedge, firefox, and IE, and grab the focused windows' URLs if they are open.
I looked through this forum and many others, found many negative responses and one link talking about a solution but the download link to the script does not work anymore.
That is why I wanted to ask: is there any solution to this? My script already grabs the Window Title properties:
$msedgetitle = Get-Process MSEdge | select -expandproperty MainWindowTitle -ErrorAction SilentlyContinue
$chrometitle = Get-Process chrome | select -expandproperty MainWindowTitle -ErrorAction SilentlyContinue
$iexploretitle = Get-Process iexplore | select -expandproperty MainWindowTitle -ErrorAction SilentlyContinue
Many thanks in advance AÖ