Files
docs/scripts/Powershell/General Purpose/Force GPUpdate Domain Wide.md
Nicole Rappe 67bdcc687f
All checks were successful
Automatic Documentation Deployment / Sync Docs to https://kb.bunny-lab.io (push) Successful in 5s
revert 59909dd12a
revert revert 51cdd1fdb6

revert Fixed Formatting of Files
2026-04-26 17:26:03 -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}
```