external help file | Module Name | online version | schema |
---|---|---|---|
SteamPS-help.xml |
SteamPS |
2.0.0 |
Returns the friend list of any Steam user.
Get-SteamFriendList [-SteamID64] <Int64> [[-Relationship] <String>] [-ProgressAction <ActionPreference>]
[<CommonParameters>]
Returns the friend list of any Steam user, provided their Steam Community profile visibility is set to "Public".
Get-SteamFriendList -SteamID64 76561197960435530
Outputs the user's friends list, as an array of friends.
Get-SteamFriendList -SteamID64 76561197960435530 | ConvertFrom-Json
Outputs the user's friends list, as an array of friends and converts it from Json to PSCustomObjects.
{{ Fill ProgressAction Description }}
Type: ActionPreference
Parameter Sets: (All)
Aliases: proga
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Relationship filter. Possibles values: all, friend.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
64 bit Steam ID to return friend list for.
Type: Int64
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: 0
Accept pipeline input: True (ByPropertyName)
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.
Author: Frederik Hjorslev Nylander