Originally Posted By: Richard H.
Can you provide an example of an object, and how you would use it if the functionality was present.

Sure, this would be intended to retrieve the URL's the user on "PC-2" is currently viewing.
 Code:
Dim $shellApp, $ieWindow, $sLocationName, $sURL
$shellApp = CreateObject("Shell.Application","PC-2")
$ieWindow = CreateObject("InternetExplorer.Application","PC-2")
For Each $ieWindow In $shellApp.windows
  $sLocationName = $ieWindow.LocationName
  $sURL = $ieWindow.LocationURL
    If $sLocationName <> ""
        If $sURL <> ""
          ? $sURL + @CRLF
        EndIf
    EndIf
Next
$ieWindow = ""
$shellApp = ""