external help file | Module Name | online version | schema |
---|---|---|---|
PSScriptTools-help.xml |
PSScriptTools |
2.0.0 |
Get PowerShell user summary information.
Get-PSWho [-AsString] [<CommonParameters>]
This command will provide a summary of relevant information for the current user in a PowerShell session. You might use this to troubleshoot an end-user problem running a script or command.
The default behavior is to write an object to the pipeline, but you can use the -AsString parameter to force the command to write a string. This makes it easier to use in your scripts with Write-Verbose.
PS C:\> Get-PSWho
User : Desk01\Jeff
Elevated : False
Computername : Desk01
OperatingSystem : Microsoft Windows 10 Pro [64-bit]
OSVersion : 10.0.19042
PSVersion : 5.1.19041.906
Edition : Desktop
PSHost : ConsoleHost
WSMan : 3.0
ExecutionPolicy : RemoteSigned
Culture : English (United States)
PS /home/jhicks> Get-PSWho
User : jeff
Elevated : False
Computername : Desk01
OperatingSystem : Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020
OSVersion : Ubuntu 20.04.2 LTS
PSVersion : 7.1.3
Edition : Core
PSHost : ConsoleHost
WSMan : 3.0
ExecutionPolicy : Unrestricted
Culture : Invariant Language (Invariant Country)
PS C:\> Get-PSWho
User : DESK11\Jeff
Elevated : True
Computername : DESK11
OperatingSystem : Microsoft Windows 11 Pro [64-bit]
OSVersion : 10.0.22623
PSVersion : 7.3.3
Edition : Core
PSHost : ConsoleHost
WSMan : 3.0
ExecutionPolicy : RemoteSigned
Culture : English (United States)
PS C:\> Get-PSWho -asString | Set-Content c:\test\who.txt
Write the summary object as a string. This can be useful when you want to save the information in a log file.
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
Learn more about PowerShell: http://jdhitsolutions.com/blog/essential-powershell-resources/