Files
docs/scripts/powershell/general-purpose/force-gpupdate-domain-wide.md
Nicole Rappe 59909dd12a
All checks were successful
Automatic Documentation Deployment / Sync Docs to https://kb.bunny-lab.io (push) Successful in 6s
revert 51cdd1fdb6
revert Fixed Formatting of Files
2026-04-26 17:22:05 -06:00

11 lines
267 B
Markdown

---
tags:
- Group Policy
- PowerShell
- Scripting
---
``` powershell
$computers = Get-ADComputer -Filter * -SearchBase "OU=Computers,DC=bunny-lab,DC=io"
$computers | ForEach-Object -Process {Invoke-GPUpdate -Computer $_.name -RandomDelayInMinutes 0 -Force}
```