PowerShell Logo Small

Get-UalDailyUserAccess



This is the built-in help made by Microsoft for the command 'Get-UalDailyUserAccess', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 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 for client requests per user for each day.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


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


This cmdlet organizes information by user for each day. For each user that accesses a service on a server, the cmdlet returns a record that specifies the user, 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.


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

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287591
Get-UalDailyAccess
Get-UalDailyDeviceAccess
Get-UalDeviceAccess
Get-UalUserAccess

REMARKS

<

Examples


Example 1: Get daily usage for a specific user

PS C:\>Get-UalDailyUserAccess -Username "western\sarahjones"
AccessCount : 1

AccessDate : 8/17/2012

UserName : western\sarahjones

ProductName : Windows Server 2012 Datacenter

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

RoleName : File Server

PSComputerName :


AccessCount : 1

AccessDate : 8/27/2012

UserName : western\sarahjones

ProductName : Windows Server 2012 Datacenter

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

RoleName : File Server

PSComputerName :



This command gets the UAL records for a client user with a specified name. The results show access requests on sample dates 8/17/2012 and 8/27/2012.