G
Gabe Matteson
Hello,
I'm currently creating an ADM file for my group policies to add some
features that I need. One of them is to redirect the Users IE Favorites to
their home folder on the server.... the problem is, when I add the registry
path to the KEYNAME if it has spaces the policy will not show up, if I take
it out, then it will, does anyone know how to fix this? below is what I have
so far..also, how do i make it so that if they disable this policy it
reverts back to the default path "their local profile\favorites"?
#if VERSION >= 3
CLASS USER
CATEGORY !!strRedirectFavorites
KEYNAME "Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\"
POLICY !!strEnableRedirection
EXPLAIN !!strHelp
VALUENAME "Enable"
VALUEON NUMERIC 1
VALUEOFF NUMERIC 0
PART !!strPart1 EDITTEXT
VALUENAME "Favorites"
END PART
END POLICY
END CATEGORY
#endif
[strings]
strRedirectFavorites="Internet Explorer Favorites"
strEnableRedirection="Favorites Directory Path"
strHelp="Allows you to specify the directory path that Internet Explorer
will use for it's favorites directory"
strPart1="Redirect favorites to:"
I'm currently creating an ADM file for my group policies to add some
features that I need. One of them is to redirect the Users IE Favorites to
their home folder on the server.... the problem is, when I add the registry
path to the KEYNAME if it has spaces the policy will not show up, if I take
it out, then it will, does anyone know how to fix this? below is what I have
so far..also, how do i make it so that if they disable this policy it
reverts back to the default path "their local profile\favorites"?
#if VERSION >= 3
CLASS USER
CATEGORY !!strRedirectFavorites
KEYNAME "Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\"
POLICY !!strEnableRedirection
EXPLAIN !!strHelp
VALUENAME "Enable"
VALUEON NUMERIC 1
VALUEOFF NUMERIC 0
PART !!strPart1 EDITTEXT
VALUENAME "Favorites"
END PART
END POLICY
END CATEGORY
#endif
[strings]
strRedirectFavorites="Internet Explorer Favorites"
strEnableRedirection="Favorites Directory Path"
strHelp="Allows you to specify the directory path that Internet Explorer
will use for it's favorites directory"
strPart1="Redirect favorites to:"