I have a custom message form server which i am installing on terminal server based on windows server 2003 and 2008.
I want to do per machine install, i don’t seem to get how to install it for all the domain users logging on to the machine.
If i use http://msdn.microsoft.com/en-us/library/cc815785.aspx Installform, i can install to a local form library or a personal form library which are user specific.
I don’t want to install to organizational form library, if it cannot be done through msi based installer.
What do i have to do make the form server available to all users, i have tried doing MapiOpenLocalFormContainer and then InstallForm but that seems to only work for the calling user (administrator in this case)
Regards,
rui
In the end i had to install form on first launch of outlook for each user in their respective local form container and on uninstall of our software, i did all the user profile enumeration and cleared the FRMCACHE.DAT.
Also there is a very useful registry key ForceFormReload described here http://support.microsoft.com/kb/919596
Thanks for all the answers.