GPLINK
Summary
Description
Identification
PowerShell
Active Directory Module
function Find-GPLINK {
[CmdletBinding()]
param (
[string]$Target, # Optional OU name
[string]$OutputPath = "GPLINK.csv" # CSV output file path
)
$OUs = Get-ADOrganizationalUnit -Filter * -Properties gPLink |
Select-Object Name, gPLink
if ($Target) {
$OUs = $OUs | Where-Object { $_.Name -eq $Target }
}
$OUs | Export-Csv -Path $OutputPath -NoTypeInformation -Encoding UTF8
return $OUs
}.NET Directory Services
Group Policy Management

Exploitation
Mitigation

Detection
Event ID
Description
Fields/Attributes
References
References
Last updated
Was this helpful?