views:

487

answers:

2

Does anyone know if it is possible to change homescreen.

I have a setup that installs all necessary xml files and Homescreen plugins, but I don’t know how to change Homescreen to mine during installation (and remove it during uninstallation)

A: 

I don't believe there is any method provided by Microsoft to do what you want.

You can install the SP HomeScreen plugin but it's up to the user to select the homescreen plugin themselves. You could provide a description of how to do this with the installer dll if you like. The same is true for PPC Today Items as well.

Shane Powell
+3  A: 

For smartphone devices you can use provisioning xml. If you include the provisioning xml in your cab file as "post-xml" then uninstallation should be handled automatically. Alternatively you could process the provisioning xml yourself using the DMProcessConfigXML API inside a custom setup dll. Check out the following MSDN links for more details.

Home screen provisioning xml
prexml and /postxml
DMProcessConfigXML

Just a Bill