Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio Setup Project Remove install for all users

I am creating a setup project and want to remove the option to install for "everyone" or "just me" and have it default to just me.

like image 814
gberg927 Avatar asked Sep 29 '11 18:09

gberg927


2 Answers

View->Editor->User Interface. Click on Installation folder. In the properties window there is a key InstallAllUsersVisible. Set it to false –

like image 183
2 revs, 2 users 57% Avatar answered Nov 16 '22 15:11

2 revs, 2 users 57%


If you don't want to show the option at all in the screen. You can do the above said one "View->Editor->User Interface." in the properties window, Set the InstallAllUsersVisible. Set it to false.

If you wish not to show the details, then: click on the setup project, select "F4" button to open the setup project properties. In the properties list "InstallAllUser" properties to be set to false. This will make the option invisible.

like image 20
Ashwin Avatar answered Nov 16 '22 14:11

Ashwin