Last active
September 26, 2024 21:34
-
-
Save wise-io/e299a7113d48d3e16f1c24aa3575cc76 to your computer and use it in GitHub Desktop.
Reset Local Group Policies
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Clears (resets) local group policies. | |
.DESCRIPTION | |
Clears (resets) local group policies by deleting registry.pol and associated files after creating a backup. | |
.EXAMPLE | |
./ResetLocalPolicies.ps1 | |
#> | |
# Local group policy files | |
$PolicyFiles = "$env:SystemRoot\System32\GroupPolicy" | |
$PolicyUserFiles = "$env:SystemRoot\System32\GroupPolicyUsers" | |
function Backup-Policies { | |
# Define variables for policy backups | |
$Timestamp = Get-Date -Format 'yyyy-MM-dd HH.mm.ss' | |
$BackupDir = "$env:SystemDrive\Backups\Group Policy\$Timestamp" | |
Write-Output "`nCreating backups of local group policy files..." | |
try { | |
if ((Test-Path $PolicyFiles) -or (Test-Path $PolicyUserFiles)) { | |
if (Test-Path $PolicyFiles) { Copy-Item -Path $PolicyFiles -Destination $BackupDir -Recurse } | |
if (Test-Path $PolicyUserFiles) { Copy-Item -Path $PolicyUserFiles -Destination $BackupDir -Recurse } | |
Write-Output "Complete - backups stored at $BackupDir." | |
} | |
else { Write-Warning 'No existing local group policy files found - backup aborted.' } | |
} | |
catch { | |
Write-Warning 'Error creating backup.' | |
Write-Warning $_ | |
} | |
} | |
function Reset-Policies { | |
# Clear existing local policies | |
Write-Output "`nResetting local policies..." | |
try { | |
# Clears policy files | |
Remove-Item -Path $PolicyFiles -Recurse -Force -ErrorAction Ignore | |
Remove-Item -Path $PolicyUserFiles -Recurse -Force -ErrorAction Ignore | |
# Apply new policies | |
gpupdate /force /wait:0 | |
} | |
catch { | |
Write-Warning 'Error resetting local group policies.' | |
Write-Warning $_ | |
} | |
} | |
$ErrorActionPreference = 'Stop' | |
Backup-Policies | |
Reset-Policies |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment