At Computer\HKEY_CLASSES_ROOT\CLSID\{093FF999-1EA0-4079-9525-9614C3504B74}
we have a Windows Script Host Network Object COM object which allows us to get details such as computer name, logged on user, etc:
$o = [activator]::CreateInstance([type]::GetTypeFromCLSID("093FF999-1EA0-4079-9525-9614C3504B74"))
Below are all the properties and methods exposed by the object:
$o | gm
Viewing username, domain, machine name, etc:
$o
We can also see any network connected drives:
$o.EnumNetworkDrives()
Below shows what additional modules Powershell loads once the COM object is instantiated: