从MFC程序中读取并设置组策略设置?

时间:2016-06-28 23:48:11

标签: winapi mfc group-policy

我希望能够通过MFC程序读取并稍后设置组策略设置。

这是我手动做的。以管理员身份运行gpedit.msc,在“本地组策略编辑器”中,我将转到

Computer Configuration->Administrative Templates->windows Components->Windows Update->Specify intranet Microsoft update service location

并设置更新服务位置http://192.168.1.1:8530

有没有办法做同样的MFC程序?任何代码示例都会被大量注释!

1 个答案:

答案 0 :(得分:-3)

HKEY_LOCAL_MACHINE \ SOFTWARE \ Policies \ Microsoft \ Windows \ WindowsUpdate \ AU \ UseWuServer:REG_DWORD设置为1

HKEY_LOCAL_MACHINE \ SOFTWARE \ Policies \ Microsoft \ Windows \ WindowsUpdate \ WUServer:REG_SZ设置为http://192.168.1.1:8530

HKEY_LOCAL_MACHINE \ SOFTWARE \ Policies \ Microsoft \ Windows \ WindowsUpdate \ WUStatusServer:REG_SZ设置为http://192.168.1.1:8530

我运行gpedit.msc并查看(在调试器和regedit下最终,在几个Windows版本上(从xp到win 10))如果 Microsoft更新服务位置 < / strong> set - 创建新的2个密钥(如果尚不存在) - HKEY_LOCAL_MACHINE \ SOFTWARE \ Policies \ Microsoft \ Windows \ WindowsUpdate HKEY_LOCAL_MACHINE \ SOFTWARE \ Policies \ Microsoft \ Windows \ WindowsUpdate \已设置AU 和WUServer,WUStatusServer,UseWuServer enter image description here enter image description here 而不是键/值名称 - 找到这个 - Configure Automatic Updates using Registry Editor