我想编写一个PowerShell脚本,该脚本创建一个GPO并将其链接到一个允许启用代理的OU,以阻止属于该OU的用户访问Internet。
我的脚本仅创建GPO和两个密钥,而没有真正阻止Internet访问。我该如何运作?
Import-Module ActiveDirectory
Import-Module GroupPolicy
$GPOName = 'Proxy'
$GPO = New-GPO -Name $GPOName -Domain 'Administrateur.6NLG-AD'
Set-GPPrefRegistryValue -Name $GPOName -Context User -Key 'HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings' -ValueName ProxyServer -Value 0.0.0.0:80 -Type String -Action Create
Set-GPPrefRegistryValue -Name $GPOName -Context User -Key 'HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings' -ValueName ProxyEnable -Value 1 -Type DWord -Action Create
New-GPLink -Name $GPOName -Target 'OU=Nouvelle_UO,DC=Administrateur,DC=6NLG-AD'