我想配置配额Windows 2008 R2
,但是当我尝试将值设置为 50GB (50000000ko) 时,它会引发一个错误,提示已达到最大值,并且值设置为 30GB:
我尝试这解决方案 :
<policy name="LimitSize" class="User" displayName="$(string.LimitSize)" explainText="$(string.LimitSize_Help)" presentation="$(presentation.LimitSize)" key="Software\Microsoft\Windows\CurrentVersion\Policies\System" valueName="EnableProfileQuota">
<parentcategory ref="UserProfiles" />
<supportedon ref="windows:SUPPORTED_Win2k" />
<elements>
<text id="SizeMessage" valueName="ProfileQuotaMessage" />
<decimal id="ProfileSize" valueName="MaxProfileSize" required="true" minValue="300" maxValue="30000000" />
<boolean id="IncludeRegInProQuota" valueName="IncludeRegInProQuota" />
<boolean id="WarnUser" valueName="WarnUser" />
<decimal id="WarnUserTimeout" valueName="WarnUserTimeout" required="true" />
</elements>
</policy>
但文件%SystemRoot%\Windows\PolicyDefinitions\UserProfiles.admx
已被锁定......
那么,我怎样才能跨越这一障碍呢?
答案1
如果组策略施加了限制,则更改该限制的唯一方法是编辑策略。听起来您不是计算机或域的管理员。因此,您将无法自行进行此更改。