You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>Active Directory Server and Workstation Audit with Report export option (Can also be piped to CSV if Report isn't specified).</p>
213
+
<p>Audit's Active Directory taking "days" as the input for how far back to check for a device's last sign in.<br>Output can be piped to a csv manually, or automatically to C:\temp\ADHostAudit or a specified path in<br>"AttachmentFolderPath" using the -Report Switch.<br><br>Use the Tab key to cycle through the -HostType Parameter.</p>
Copy file name to clipboardexpand all lines: source/Public/Get-ADUserLogonAudit.ps1
+24-24
Original file line number
Diff line number
Diff line change
@@ -1,29 +1,29 @@
1
1
functionGet-ADUserLogonAudit {
2
2
<#
3
-
.SYNOPSIS
4
-
Retrieves the most recent LastLogon timestamp for a specified Active Directory user account from all domain controllers and outputs it as a DateTime object.
5
-
.DESCRIPTION
6
-
This function takes a SamAccountName input parameter for a specific user account and retrieves the most recent
7
-
LastLogon timestamp for that user from all domain controllers in the Active Directory environment.
8
-
It then returns the LastLogon timestamp as a DateTime object. The function also checks the availability
9
-
of each domain controller before querying it, and writes an audit log with a list of available and
10
-
unavailable domain controllers.
11
-
.PARAMETERSamAccountName
12
-
Specifies the SamAccountName of the user account to be checked for the most recent LastLogon timestamp.
13
-
.INPUTS
14
-
A SamAccountName string representing the user account to be checked.
15
-
.OUTPUTS
16
-
A DateTime object representing the most recent LastLogon timestamp for the specified user account.
17
-
.EXAMPLE
18
-
Get-ADUserLogonAudit -SamAccountName "jdoe"
19
-
Retrieves the most recent LastLogon timestamp for the user account with the SamAccountName "jdoe" from all
20
-
domain controllers in the Active Directory environment.
21
-
.NOTES
22
-
This function is designed to be run on the primary domain controller, but it can be run on any domain
23
-
controller in the environment.
24
-
It requires the Active Directory PowerShell module and appropriate permissions to read user account data.
25
-
The function may take some time to complete if the Active Directory environment is large or the domain
26
-
controllers are geographically distributed.
3
+
.SYNOPSIS
4
+
Retrieves the most recent LastLogon timestamp for a specified Active Directory user account from all domain controllers and outputs it as a DateTime object.
5
+
.DESCRIPTION
6
+
This function takes a SamAccountName input parameter for a specific user account and retrieves the most recent
7
+
LastLogon timestamp for that user from all domain controllers in the Active Directory environment.
8
+
It then returns the LastLogon timestamp as a DateTime object. The function also checks the availability
9
+
of each domain controller before querying it, and writes an audit log with a list of available and
10
+
unavailable domain controllers.
11
+
.PARAMETERSamAccountName
12
+
Specifies the SamAccountName of the user account to be checked for the most recent LastLogon timestamp.
13
+
.INPUTS
14
+
A SamAccountName string representing the user account to be checked.
15
+
.OUTPUTS
16
+
A DateTime object representing the most recent LastLogon timestamp for the specified user account.
17
+
.EXAMPLE
18
+
Get-ADUserLogonAudit -SamAccountName "jdoe"
19
+
Retrieves the most recent LastLogon timestamp for the user account with the SamAccountName "jdoe" from all
20
+
domain controllers in the Active Directory environment.
21
+
.NOTES
22
+
This function is designed to be run on the primary domain controller, but it can be run on any domain
23
+
controller in the environment.
24
+
It requires the Active Directory PowerShell module and appropriate permissions to read user account data.
25
+
The function may take some time to complete if the Active Directory environment is large or the domain
0 commit comments