deploying a c# app...

  • Thread starter Thread starter Daniel Bass
  • Start date Start date
D

Daniel Bass

Hi all,

I've created a c# application, and included a "Setup project" in the same
solution. How do I default it so that the application (say i were to run the
setup "quietly") installs with "Everyone" rather than the "Just me" option?

Thanks

Daniel.
 
You need to get the Windows Installer SDK and use Orca from it on the
msi file. I can't remember the exact name of the table but I think it's
CustomActions or something very like that. Within that table there are
4 items which control the display of the Everyone/Just me bits - text and
radio buttons. Set the ones you don't want to Hide, not Show.
Sorry about not being more exact, but I don't have access to Orca on this
machine.

Simon Smith
simon dot s at ghytred dot com
http://www.ghytred.com/NewsLook - Usenet for Outlook
 
Get Orca as described, and edit the Property table to set the property
ALLUSERS (case-sensitive) to 1. If you want the default UI choice to be
Everyone, change the value of the FolderForm_AllUsers property from ME to
ALL.
 
Found and changed...

Cheers!

Dan.

Phil Wilson said:
Get Orca as described, and edit the Property table to set the property
ALLUSERS (case-sensitive) to 1. If you want the default UI choice to be
Everyone, change the value of the FolderForm_AllUsers property from ME to
ALL.
--
Phil Wilson [MVP Windows Installer]
----
"Daniel Bass" <DanielBass TAKE at OUT CAPS WORDS Postmaster.co.uk> wrote in
message news:[email protected]...
Hi all,

I've created a c# application, and included a "Setup project" in the same
solution. How do I default it so that the application (say i were to run the
setup "quietly") installs with "Everyone" rather than the "Just me" option?

Thanks

Daniel.
 
Back
Top