Disable Windows Mobile security features

I am currently writing an application for Windows Mobile 5.0 and seems to have some firewall-esqe feature where I need to allow any deployed executable to run. Is there some kind of registry key that I can use to disable it during development as it frustrates having to babysit the device.

0


source to share


2 answers


Have you seen Device Security Powertoy ?



+3


source


The Windows Mobile SDK provides a CPF configuration file (for example, a CAB file, but only for configuration) to disable security settings on the device you are running on. Copy C: \ Program Files \ Windows Mobile 6 SDK \ Tools \ Smartphone \ SecurityConfiguration \ SecurityOff.cpf to your device and run it. After that, you will no longer see the hints.



BTW: Looks like you are talking about the "No Signature" security policy. Below is a list of security policies: http://msdn.microsoft.com/en-us/library/aa455966.aspx

+3


source







All Articles