Jump to content

Recommended Posts

Posted

I used this on my K-Jam and it works on the 818 too. This takes away the niggly screen warning you get when you install an App.

Been using for over a week so its stable and is from HTC itself

Default_Cert_SPCS.CAB

Guest Paul [MVP]
Posted

Where on earth did that come from?

It seems to disable security, and is signed with a HTC cert.

;)

P

Posted
Where on earth did that come from?

It seems to disable security, and is signed with a HTC cert.

;)

P

<{POST_SNAPBACK}>

From the extended ROM of an XDA 11 I think ... Tis cool though :D

Guest netimpact
Posted

Another way is to use register edit.

HKLM\Security\Policies\Policies,

Value 0000101a 0 to 1

  • 2 weeks later...
Guest jberezin
Posted

I wished to remove the prompts for running uncertified apps from the Dell Axim X51, I tried this with a register editor and it works well, and the cab file in the first post above worked well also, but when I tried to code this myself in a C++ program it didn't change the registry value:

HKEY hkey;

DWORD dwData = 1;

RegOpenKeyEx( HKEY_LOCAL_MACHINE, TEXT("\\Security\\Policies\\Policies\\0000101a"),0,KEY_ALL_ACCESS, &hkey);

RegSetValueEx( hkey, NULL,0,REG_DWORD,(LPBYTE) &dwData, // pointer to value data

sizeof(DWORD) );

RegCloseKey(hkey);

I think the problem may be that the program doesn't have enough rights to edit the key. Any ideas? I first had a zero in place of KEY_ALL_ACCESS.

  • 2 months later...
Guest mattball
Posted

just tried this on a m600 running wm5 and sorry to say it doesn't work.

Iwill keep trying though.................

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.