Jump to content

Decert your 818


Guest wardy

Recommended Posts

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

Link to comment
Share on other sites

  • 2 weeks later...
Guest jberezin

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.

Link to comment
Share on other sites

  • 2 months later...

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.