11 lines
267 B
Markdown
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}
|
|
``` |