Reputation: 11
I'm trying to set the mouse cursor size at logon and keep users from changing it. I have tried using a GPO with these settings.
USER CONFIG > ADMIN TEMPLATE > CONTROL PANEL > PERSONALIZATION > PREVENT CHANGING MOUSE POINTERS
And then adding these registry values HKEY_CURRENT_USER\Control Panel\Cursors\CursorBaseSize v:20
When the user logs on it adjusts the cursor, but if they change it the policy will not reset the cursor size. Also even thought the policy says it prevents changing the cursor sizer, users can still slide the slider and enlarge or shrink the mouse cursor.
Upvotes: 1
Views: 4305
Reputation: 75
To prevent the users from changing the cursors, enable below policy: Please note, the policy applies this a reg key and you should check for below reg key on the machines first:
HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Personalization\NoChangingMousePointers
User Configuration\Administrative Templates\Control Panel\Personalization\Prevent changing mouse pointers
Then, set the cursor to what you want from GPP side:
HKEY_CURRENT_USER\Control Panel\Cursors
(Default) string (REG_SZ) needs to be updated to one of the names, so it sets the cursor to that "theme":
To customize individual pointers, modify the following string values:
Double-click on any of the expandable strings then type in the full path of the .ani or .cur file you want to use for the pointer and click OK
You should test this on your machine from GUI side as well. have a look at your registry on the test machine, then apply the same from GPP side of your GPMC/AGPM.
a reboot is required for above changes to take effects.
Upvotes: 0