Running an 08 domain level and have the need to convert the below .reg file into an .adm, so we can use it in a GPO. This is to allow win 7 users to modify network printers without a UAC elevation prompt. I have looked everywhere for a fix and found 2. The below and upgrade the domain level to 08 R2, as it adds the below configurations into the new GPO options. I unfortunately cannot updgrade the domain level.

.reg file
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Win dows NT\Printers\PointAndPrint]
"Restricted"=dword:00000000
"TrustedServers"=dword:00000000
"InForest"=dword:00000000

.adm file

CLASS MACHINE

CATEGORY "Point and Print Restrictions"
KEYNAME "SOFTWARE\Policies\Microsoft\Windows NT\Printers\PointAndPrint"

POLICY "Restricted"
PART "Restricted" NUMERIC MIN 0 MAX 3
VALUENAME "Restricted"
END PART
END POLICY

POLICY "TrustedServers"
PART "TrustedServers" NUMERIC MIN 0 MAX 3
VALUENAME "TrustedServers"
END PART
END POLICY

POLICY "InForest"
PART "InForest" NUMERIC MIN 0 MAX 3
VALUENAME "InForest"
END PART
END POLICY

END CATEGORY

The above adm file works in a local computer policy, but it will not work in a GPO. After adding it and configuring it in a GPO, I get the below RSOP for Computer settings. I get the same below RSOP results if I enable any of the policies with any numeric values or if I set the policies to disabled in the GPO.

Computer Configuration Summary
No data available.

I am far from a an ADM syntax specialist and I am hoping someone on here can point out a simple syntax/adm configuration issue.

Thanks for the help!
Travis