我正在使用以下命令更改Windows Box浏览器代理设置,但这仅对登录到Box的用户启用,而不是作为系统范围的设置启用。必须对命令进行哪些更改才能使设置系统更广泛。
用于更新代理的命令:
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /t REG_SZ /d proxyserveraddress:proxyport /f
启用代理的命令:
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f
禁用代理的命令:
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f
如何为所有访问该框的用户启用此设置。