create adm fileHi. I'm trying to create an administrative template for changing decimal point in regional settings of users via Group Policy.<br/> This setting is controlled by key sDecimal in HKEY_CURRENT_USER\Control Panel\International.<br/> I’ve created this template:<br/> [code]CLASS USER<br/> CATEGORY &quot;my Settings&quot; <br/>     POLICY !!decimal_policy_name<br/>         KEYNAME &quot;Software\Policies\Microsoft\Windows\Control Panel\International&quot;<br/>         EXPLAIN !!decimal_explain<br/>        <br/>         PART !!decimal_part_name EDITTEXT<br/>             VALUENAME &quot;sDecimalNew&quot;<br/>             MAXLEN 1<br/>         END PART<br/>        <br/>     END POLICY<br/> END CATEGORY<br/> <br/> [strings]<br/> decimal_policy_name=&quot;Decimal simbol&quot;<br/> decimal_explain=&quot;This policy change decimal simbol in the regional settings of the user invironment.&quot;<br/> decimal_part_name=&quot;Decimal simbol&quot;[/code]<br/> <br/> When I apply a policy whith this template, the key in Software\Policies\Microsoft\Windows\Control Panel\International sucesfully created.<br/> But in GUI decimal symbol is not changed.<br/> Where do I have a mistake?© 2009 Microsoft Corporation. All rights reserved.Mon, 13 Jul 2009 04:16:16 Z888feca2-4128-4e23-8317-8237f55c170chttp://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/888feca2-4128-4e23-8317-8237f55c170c#888feca2-4128-4e23-8317-8237f55c170chttp://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/888feca2-4128-4e23-8317-8237f55c170c#888feca2-4128-4e23-8317-8237f55c170cYakov Barinovhttp://social.technet.microsoft.com/Profile/en-US/?user=Yakov%20Barinovcreate adm fileHi. I'm trying to create an administrative template for changing decimal point in regional settings of users via Group Policy.<br/> This setting is controlled by key sDecimal in HKEY_CURRENT_USER\Control Panel\International.<br/> I’ve created this template:<br/> [code]CLASS USER<br/> CATEGORY &quot;my Settings&quot; <br/>     POLICY !!decimal_policy_name<br/>         KEYNAME &quot;Software\Policies\Microsoft\Windows\Control Panel\International&quot;<br/>         EXPLAIN !!decimal_explain<br/>        <br/>         PART !!decimal_part_name EDITTEXT<br/>             VALUENAME &quot;sDecimalNew&quot;<br/>             MAXLEN 1<br/>         END PART<br/>        <br/>     END POLICY<br/> END CATEGORY<br/> <br/> [strings]<br/> decimal_policy_name=&quot;Decimal simbol&quot;<br/> decimal_explain=&quot;This policy change decimal simbol in the regional settings of the user invironment.&quot;<br/> decimal_part_name=&quot;Decimal simbol&quot;[/code]<br/> <br/> When I apply a policy whith this template, the key in Software\Policies\Microsoft\Windows\Control Panel\International sucesfully created.<br/> But in GUI decimal symbol is not changed.<br/> Where do I have a mistake?Fri, 03 Jul 2009 07:20:39 Z2009-07-03T07:20:39Zhttp://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/888feca2-4128-4e23-8317-8237f55c170c#48119721-b471-4f0f-ba23-8c6523d75282http://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/888feca2-4128-4e23-8317-8237f55c170c#48119721-b471-4f0f-ba23-8c6523d75282gotsch-ithttp://social.technet.microsoft.com/Profile/en-US/?user=gotsch-itcreate adm fileYakov, sorry I am not directly helping you with your ADM file, but for regional settings I strongly recommend to use GP Preferences.<br/>If it is possible for you to go this way (only need 1 admin machine with Vista or Win2008 and the GPP CSE on your clients), then Regional Settings<br/>are really easy to manage.<br/>Are you familar with GPP? If not, start here:<br/><a href="http://www.microsoft.com/DOWNLOADS/details.aspx?familyid=42E30E3F-6F01-4610-9D6E-F6E0FB7A0790&amp;displaylang=en">http://www.microsoft.com/DOWNLOADS/details.aspx?familyid=42E30E3F-6F01-4610-9D6E-F6E0FB7A0790&amp;displaylang=en</a><br/>And the forum here includes many other helpful threads, just use the search.<hr class="sig"> PatrickFri, 03 Jul 2009 11:43:14 Z2009-07-03T11:43:14Zhttp://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/888feca2-4128-4e23-8317-8237f55c170c#cb6c7122-1be4-4cdc-ac54-54e88c44d7d9http://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/888feca2-4128-4e23-8317-8237f55c170c#cb6c7122-1be4-4cdc-ac54-54e88c44d7d9Florian Frommherzhttp://social.technet.microsoft.com/Profile/en-US/?user=Florian%20Frommherzcreate adm fileHowdie!<br/><br/>If the registry is correctly modified (accroding to the data provided in the ADM template file), chances are that Windows doesn't honor (simply ignores) the registry key. Is that the correct Registry location to set this? Have you tried locating the correct registry location using a registry monitor like regmon/procmon and changing the setting on a test machine (manually)?<br/><br/>Other than that, I second Patrick's advice here to look into Group Policy Preferences. They can do that natively with a nice GUI without extra cost (they're free from MSFT!).<br/><br/>Cheers,<br/>Florian<hr class="sig">Microsoft MVP - Group Policy (http://www.frickelsoft.net/blog)Mon, 06 Jul 2009 06:22:44 Z2009-07-06T06:22:44Zhttp://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/888feca2-4128-4e23-8317-8237f55c170c#375d6204-abfb-441e-abbd-2742e4fbcb62http://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/888feca2-4128-4e23-8317-8237f55c170c#375d6204-abfb-441e-abbd-2742e4fbcb62Yakov Barinovhttp://social.technet.microsoft.com/Profile/en-US/?user=Yakov%20Barinovcreate adm filePolicy correctly modify Registry key.<br/> If I try to change the key in &quot;HKEY_CURRENT_USER\Control Panel\International&quot; directly, decimal point sucesfully changing in gui.<br/> But this policy not is &quot;true policy&quot;.<br/> &quot;true policy&quot; must use keys in &quot;HKEY_CURRENT_USER\Software\Policies\&quot;.<br/> But I don't know, which key is required for my setting.Mon, 06 Jul 2009 17:31:05 Z2009-07-06T17:31:05Zhttp://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/888feca2-4128-4e23-8317-8237f55c170c#99835711-b595-4cf5-9c50-a979b1b511dfhttp://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/888feca2-4128-4e23-8317-8237f55c170c#99835711-b595-4cf5-9c50-a979b1b511dfgotsch-ithttp://social.technet.microsoft.com/Profile/en-US/?user=gotsch-itcreate adm file<p>Regional Settings were never part of Policies, therefore I am quite sure they are not &quot;policy aware&quot; which means they don't look into registry key like &quot;HKEY_CURRENT_USER\Software\Policies\&quot;. You are right saying &quot;HKEY_CURRENT_USER\Control Panel\International&quot; is not &quot;true policy&quot;.<br/>But this is the same for many other applications or even OS parts. For those types of applications you have to use the original registry keys.<br/>And even though it is not &quot;true policy&quot; the GPO processing (either via ADM =&gt; Registry CSE or via GPP =&gt; GPP CSE) will apply the setting during every refresh cycle.<br/>Thus you will have some kind of &quot;enforcement&quot; which - to my opinion - comes quite near to &quot;true policy&quot;.<br/><br/>So you have 2 options:<br/>1. Go on with your ADM file but change the registry key to  &quot;HKEY_CURRENT_USER\Control Panel\International&quot; <br/>2. Switch over to GPP (&quot;Regional Options&quot; module already includes a &quot;Decimal Symbol&quot; box within &quot;Numbers&quot; tab)</p> <hr class=sig> PatrickMon, 06 Jul 2009 20:13:55 Z2009-07-07T11:36:57Zhttp://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/888feca2-4128-4e23-8317-8237f55c170c#139f667d-d445-4cb3-86ff-7ab32f2ad1fdhttp://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/888feca2-4128-4e23-8317-8237f55c170c#139f667d-d445-4cb3-86ff-7ab32f2ad1fdJoson Zhouhttp://social.technet.microsoft.com/Profile/en-US/?user=Joson%20Zhoucreate adm file<p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:'Verdana','sans-serif'">Hi,</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:'Verdana','sans-serif'"> </span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:'Verdana','sans-serif'">Patrick is correct. In this case, it is not necessary to create a new registry entry in &quot;HKEY_CURRENT_USER\Software\Policies\&quot;. Instead, you need to edit the sDecimal registry entry in &quot;HKEY_CURRENT_USER\Control Panel\International&quot; directly.</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:'Verdana','sans-serif'"> </span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:'Verdana','sans-serif'">Thanks.</span></p>Tue, 07 Jul 2009 08:57:26 Z2009-07-07T08:57:26Z