Skip to content

Latest commit

 

History

History
224 lines (168 loc) · 6.14 KB

File metadata and controls

224 lines (168 loc) · 6.14 KB
description external help file Module Name ms.date online version schema title
Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
MsftUal_ServerDevice.cdxml-help.xml
UserAccessLogging
12/20/2016
2.0.0
Get-UalServerDevice

Get-UalServerDevice

SYNOPSIS

Gets UAL records for a server per device.

SYNTAX

Get-UalServerDevice [-ChassisSerialNumber <String[]>] [-UUID <String[]>] [-IPAddress <String[]>]
 [-ActivityCount <UInt32[]>] [-FirstSeen <DateTime[]>] [-LastSeen <DateTime[]>] [-CimSession <CimSession[]>]
 [-ThrottleLimit <Int32>] [-AsJob] [<CommonParameters>]

DESCRIPTION

The Get-UalServerDevice cmdlet gets User Access Logging (UAL) records for client requests, by device, for services on a server. Use the CimSession parameter to run the cmdlet on a remote server.

This cmdlet organizes information by device. For each device that accesses a service on a server, the cmdlet returns a record that specifies the IP address of the device, the chassis serial number for the server, and Universally Unique Identifier (UUID) for the server. The record also includes the first time the client accessed the service, the most recent time the client accessed the service, and the total number of times the client accessed the service.

You can specify parameter values to narrow the records that this cmdlet returns. For instance, you can get records for only a specified IP address.

For more information about UAL, see the User Access Logging Overview topic in the TechNet library at http://technet.microsoft.com/library/hh849634.aspx.

EXAMPLES

Example 1: Get access records for a specified device

PS C:\>Get-UalServerDevice -IPAddress "10.17.44.6"

ActivityCount       : 45

ChassisSerialNumber : 3876-1195-3456-9223-4533-2345-22

FirstSeen           : 8/25/2012 4:37:23 PM

IPAddress           : 10.17.44.6

LastSeen            : 9/1/2012 9:30:09 PM

UUID                : A9257362-6961-405E-8DB5-1B351A77C278

PSComputerName      :

This command gets the UAL records for a server for a client with a specified IP address. The results show this client accessed a service on this server for the first time on 8/25/2012 and most recently on 9/1/2012.

PARAMETERS

-ActivityCount

Specifies an array of the number of access requests by a client for a service.

Type: UInt32[]
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-AsJob

Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-ChassisSerialNumber

Specifies an array of strings. Each member contains the UUID of a server.

Type: String[]
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-CimSession

Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a New-CimSession or Get-CimSession cmdlet. The default is the current session on the local computer.

Type: CimSession[]
Parameter Sets: (All)
Aliases: Session

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-FirstSeen

Specifies an array of dates, as DateTime objects. A time represents when the client accessed the service for the first time.

Type: DateTime[]
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-IPAddress

Specifies an array of IP addresses for clients that request a service.

Type: String[]
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-LastSeen

Specifies an array of dates, as DateTime objects. A time represents when the client accessed the service for the most recent time.

Type: DateTime[]
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-ThrottleLimit

Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of 0 is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer.

Type: Int32
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-UUID

Specifies an array of UUIDs for servers. UAL gets this identifier from the SMBIOS.

Type: String[]
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

OUTPUTS

NOTES

RELATED LINKS

Get-UalDailyUserAccess

Get-UalOverview

Get-UalServerUser

Get-UalUserAccess