Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$Machine = "MachineToCheck"
$reg = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey("LocalMachine",$Machine)
$regKey= $reg.OpenSubKey("System\\CurrentControlSet\\Services\\lanmanserver\\parameters")
$regkey.GetValue("srvcomment")
gwmi -query "select Description from Win32_OperatingSystem" | select-object Description
gwmi -computer [i]computername[/i] -query "select Description from Win32_OperatingSystem" | select-object Description
gwmi -computer [i]computername[/i] -credentials [i]domain\username[/i] -query "select Description from Win32_OperatingSystem" | select-object Description