PowerShell Logo Small

Get-UalDailyAccess



This is the built-in help made by Microsoft for the command 'Get-UalDailyAccess', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Gets UAL records of client requests for each day.

SYNTAX


Get-UalDailyAccess [-AccessCount <UInt32[]>] [-AccessDate <DateTime[]>] [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-IPAddress
<String[]>] [-ProductName <String[]>] [-RoleGuid <String[]>] [-RoleName <String[]>] [-TenantIdentifier <String[]>] [-ThrottleLimit <Int32>]
[-Username <String[]>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


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


For each client that accesses a service, the cmdlet returns a record that specifies IP address of the device, the user name, the server role
that the client requested, and the name of the server product. If the service uses a tenant client, the record includes a tenant identifier.
The record also includes the date that the client accessed the service and how many times the client accessed the service during that day.


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, user name, or role.


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



<

RELATED LINKS

Get-UalDailyDeviceAccess
Get-UalDailyUserAccess
Get-UalDeviceAccess
Get-UalUserAccess

REMARKS

<

Examples


Example 1: Get daily access for specific IP address

PS C:\>Get-UalDailyAccess -IPAddress 10.17.44.6

AccessCount : 2

AccessDate : 9/19/2012

IPAddress : 10.17.44.6

UserName : western\_sersvc

TenantIdentifier : 00000000-0000-0000-0000-000000000000

ProductName : Windows Server 2012 Datacenter

RoleGuid : 10a9226f-50ee-49d8-a393-9a501d47ce04

RoleName : File Server

PSComputerName :



AccessCount : 2

AccessDate : 9/26/2012

IPAddress : 10.17.44.6

UserName : western\_sersvc

TenantIdentifier : 00000000-0000-0000-0000-000000000000

ProductName : Windows Server 2012 Datacenter

RoleGuid : 10a9226f-50ee-49d8-a393-9a501d47ce04

RoleName : File Server

PSComputerName :



This command gets UAL daily access requests for a client with the specified IP address. This request returns two client request objects.