0

Is it possible to delete a registry key using a CAB installer that is generated using VS2005?

The CAB is targeted at Windows CE 6.


Edit:
I did find this http://forum.xda-developers.com/showthread.php?t=415990, but I was hoping to find a way to do it using VS2005 or VS2008 and in an easier way.
(I did not even start to try the instructions on that post)

Shaihi
  • 3,952
  • 4
  • 27
  • 47

1 Answers1

1

Yes.. you can.. But u need to mention the proper registry value.. see this link for more info..

Naruto
  • 9,476
  • 37
  • 118
  • 201
  • Thanks for the quick response, but I could not find in the post anything that mentions the removal of registry values. – Shaihi Oct 12 '09 at 14:05
  • u please checkout the code of link http://windowsteamblog.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/windowsphone/sms%20intercept.zip. reffer the creation of .cab using dynamic method.. here you can do – Naruto Oct 12 '09 at 14:18
  • This is in fact the method. The exact link I needed was http://msdn.microsoft.com/en-us/library/aa924308.aspx Adding this Dll enables to do in code what the wizard does not supply. – Shaihi Oct 12 '09 at 15:46
  • I might have marked this as the "Answer" too early. For some reason the code in the added Dll does not execute. Any idea how to debug? – Shaihi Oct 13 '09 at 08:12
  • Hey it works perfectly, can you tell what problem are you getting. – Naruto Oct 13 '09 at 08:46
  • I found it - I did not edit the Dll Project's setting to input the export file. Basically in the link they miss out completely the step of defining the entry functioning in an export file. – Shaihi Oct 13 '09 at 09:13