Update Group Policy To Client By PowerShell
Copy Command
$clients = Get-ADComputer -Filter *
$clients| ForEach-Object -Process {Invoke-GPUpdate -Computer $_.name -RandomDelayInMinutes 0 -Force}