0

I've got a Windows Mobile 5 and i need to hide settings icon

https://i.stack.imgur.com/VN2I8.png

We have employees that don't speak English, and I need the desktop to be very simplified. I just need hide the icon settings beacause got configuration that they cant to move

Class
  • 3,149
  • 3
  • 22
  • 31

1 Answers1

0

Here is an application including source code to hide elements from the home screen.

You have to look at the registry at HKLM\Software\Microsoft\Today\Items and set Enabled=0 for the items that should not be shown.

The settings icon is controlled separately by HKLM\Security\Shell\StartInfo:HideSettings registry key.

Although you can hide the settings icon, the user can still access settings using the top bar! To prohibit that you need to code more. See my KIOSK articles at my web blog above.

josef
  • 5,951
  • 1
  • 13
  • 24
  • thaks that is look for, but how can i acccess to HKLM\Software\Microsoft\Today\Items – user3281015 Feb 12 '14 at 16:43
  • You can use any registry editor that supports windows mobile. In example the RemoteRegistryEditor coming with Visual Studio, Tascal RegEdit (running on device), use a wap provisioning xml file, use CeRegeditor or any other supported. How to change the registry of a windows mobile device is a totally different question. – josef Feb 12 '14 at 17:36