I?m trying to create a custom .ADM file.
What I will like to do is add these two functions to GPO
1) Enable Offline Files
2) Create an Offline File shortcut on the desktop
At this point we can setup the Synchronize all offline files when logging off and when logging on.
The reason why I will like to create the custom .ADM is to control who get the Offline file, and like this users would not have to go to folder option and enable the setting them self.
Any help on this is greatly appreciated. Thank you.
so far I try this
CLASS Machine
CATEGORY “Network”
KEYNAME “Software\Microsoft\Windows\CurrentVersion\policies\NetCache”
CATEGORY “Offline Files”
KEYNAME “Software\Microsoft\Windows\CurrentVersion\policies\NetCache”
Policy “Enable Offline Files”
EXPLAIN “This policy will place a check mark on enable offline file under folder option”
VALUENAME “Enable”
VALUEON NUMERIC 1
VALUEOFF NUMERIC 0
END POLICY
Policy “DefCacheSize”
EXPLAIN “”
VALUENAME “DefCacheSize”
VALUEON NUMERIC 1002
VALUEOFF NUMERIC 361
END POLICY
END CATEGORY
END CATEGORY
This will add the GPO but it does not work.