PowerShell Logo Small

Get-UalDailyDeviceAccess



This is the built-in help made by Microsoft for the command 'Get-UalDailyDeviceAccess', 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 per device for each day.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Get-UalDailyDeviceAccess 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 day. For each device that accesses a service, the cmdlet returns a record that specifies
the IP address of the device, the server role that the client requested, and the name of the server product. The record also includes the date
that the user accessed the service and how many times the user 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 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-UalDailyAccess
Get-UalDailyUserAccess
Get-UalDeviceAccess
Get-UalUserAccess

REMARKS

<

Examples


Example 1: Get daily access information for a specific device

PS C:\>Get-UalDailyDeviceAccess -IPAddress "10.17.44.6"
AccessCount : 34

AccessDate : 8/25/2012

IPAddress : 10.17.44.6

ProductName : Windows Server 2012 Datacenter

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

RoleName : File Server

PSComputerName :


AccessCount : 11

AccessDate : 9/2/2012

IPAddress : 10.17.44.6

ProductName : Windows Server 2012 Datacenter

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

RoleName : File Server

PSComputerName :



This command gets the UAL records for a client with the specified IP address. The results show access requests on 8/25/2012 and 9/2/2012.