473,748 Members | 10,569 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How change default install from "Just Me" to "Everyone"?

I created an MSI install for a Windows app I wrote. When installing,
however, it defaults to install for "Just Me" instead of "Eveveryone "
(meaning anyone who uses this computer). I would like the default
deslection to be the latter. How can I change this, please?

Thanks!

Ron
Apr 5 '06 #1
4 15105
Not possible with the basic packager with VS.NET. You need something called
ORAC editor , that manipulates the MSI. You can download this of Microsoft
web site.. All this I am saying with VS2003, I am not sure of 2005

VJ

"Ronald S. Cook" <rc***@westinis .com> wrote in message
news:%2******** *********@TK2MS FTNGP04.phx.gbl ...
I created an MSI install for a Windows app I wrote. When installing,
however, it defaults to install for "Just Me" instead of "Eveveryone "
(meaning anyone who uses this computer). I would like the default
deslection to be the latter. How can I change this, please?

Thanks!

Ron

Apr 5 '06 #2
Hello Vijay,

ORCA only. it's available with Windows Installer SDK

V> Not possible with the basic packager with VS.NET. You need something
V> called ORAC editor , that manipulates the MSI. You can download this
V> of Microsoft web site.. All this I am saying with VS2003, I am not
V> sure of 2005
V>
V> VJ
V>
V> "Ronald S. Cook" <rc***@westinis .com> wrote in message
V> news:%2******** *********@TK2MS FTNGP04.phx.gbl ...
V>
I created an MSI install for a Windows app I wrote. When installing,
however, it defaults to install for "Just Me" instead of "Eveveryone "
(meaning anyone who uses this computer). I would like the default
deslection to be the latter. How can I change this, please?

Thanks!

Ron

---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
Apr 5 '06 #3
Ahh thanks.. I don't know where that name "editor" popped in my mind...

VJ

"Michael Nemtsev" <ne*****@msn.co m> wrote in message
news:9c******** *************** ***@msnews.micr osoft.com...
Hello Vijay,

ORCA only. it's available with Windows Installer SDK

V> Not possible with the basic packager with VS.NET. You need something
V> called ORAC editor , that manipulates the MSI. You can download this
V> of Microsoft web site.. All this I am saying with VS2003, I am not
V> sure of 2005
V> V> VJ
V> V> "Ronald S. Cook" <rc***@westinis .com> wrote in message
V> news:%2******** *********@TK2MS FTNGP04.phx.gbl ...
V>
I created an MSI install for a Windows app I wrote. When installing,
however, it defaults to install for "Just Me" instead of "Eveveryone "
(meaning anyone who uses this computer). I would like the default
deslection to be the latter. How can I change this, please?

Thanks!

Ron

---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do
not cease to be insipid." (c) Friedrich Nietzsche

Apr 5 '06 #4
Yay!!! They fixed this for VS2005. You can now do this. From the
Documentation
http://msdn2.microsoft.com/en-us/library/5f981xa1.aspx

=============== =============== =============== ==============
"The InstallAllUsers property for a deployment project determines
whether an application is installed for all users of a computer or only
for the user performing the installation. The InstallAllUsers property
can be set in the Properties window when a deployment project is
selected in the Solution Explorer.

Settings

False - The application will only be installed for the current user
and will not be visible to other users of the computer (the default).

True - The application will be installed for all users.

InstallAllUsers Visible Property

The InstallAllUsers Visible property for the Installation Folder user
interface dialog box determines whether the Install MyApplication for
yourself, or for anyone who uses this computer label and corresponding
Everyone and Just me option buttons appear during installation. The
InstallAllUsers Visible can be set in the Properties window when the
Installation Folder node is selected in the User Interface editor.

Settings

True - The Install MyApplication for yourself, or for anyone who uses
this computer label and corresponding Everyone and Just me option
buttons will be shown during installation, and the user's choice
determines the installation method.

False - The Install MyApplication for yourself, or for anyone who
uses this computer label and corresponding Everyone and Just me option
buttons will not be visible during installation."

=============== =============== =============== ==============
So here's Step-by-step what you do to install for Everyone as default
without the radio button choices appearing for your users who are
installing your product.:
1. Click on your setup project in your Solution Explorer.
2. Look in the Properties window and set the property InstallAllUsers
to be True
3. Click on the icon in the Solution Explorer toolbar that has the
pop-up tooltip "User Interface Editor"
4. Click on the "Installati on Folder" item in the panel that appears.
5. Look in the Properties window and set the InstallAllUsers Visible to
be False.
6. Rebuild your solution.

Best wishes...

Apr 26 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

99
6224
by: Jim Hubbard | last post by:
It seems that Microsoft not only does not need the classic Visual Basic developer army (the largest army of developers the world has ever seen), but now they don't need ANY Windows developer at a small or mid-sized business. http://groups-beta.google.com/group/microsoft.public.msdn.general/browse_thread/thread/9d7e8f9a00c1c7da/459ca99eb0e7c328?q=%22Proposed+MSDN+subscription+changes%22&rnum=1#459ca99eb0e7c328 Damn! To be that...
1
1294
by: Praveen | last post by:
Here is an easy issue to reproduce: 1) Create a new project. 2) Drop a DataGrid control into the Page. Also drop a OleDbDataAdapter into the page. 3) Select "Configure Data Adapter..." and pick the NWind.mdb (for example). Go ahead and run through the wizard, selecting a table via sql query. Note that at the end of this a Nwind.ldb lock has been created in that dir. 4) Generate the Dataset and set the datagrid's datasource property to...
0
1273
by: Michael Fitzpatrick | last post by:
I have a .NET application with an installer. The customer wants the install page with the "Everyone" or "Just Me" selection to default to "Everyone". Presently it defaults to "Just Me". Any hints on how I can achieve this? -- : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - : my email address zfarjf@pbqrvafvtug.com is encrypted with www.rot13.org
32
2710
by: Next | last post by:
Hi folks, Years ago, it occurred to me that a lot of the trouble of writing web browsers is caused by the upside-down arrangement of things: Javascript code exists inside a document, when really it should be the other way around. And yet, although this seems fairly obvious to me, having tried myself to write a web browser and given up, I don't see a lot of movement by major web browser projects in a direction that might TRULY fix the...
1
12584
by: ImageAnalyst | last post by:
Yay!!! They fixed this for VS2005. You can now set the default installation to be "Everyone" instead of "Just Me" and you can control whether you even want those radio button installed in your Setup program. >From the Documentation http://msdn2.microsoft.com/en-us/library/5f981xa1.aspx =========================================================== "The InstallAllUsers property for a deployment project determines whether an application is...
24
2836
by: M O J O | last post by:
Hi, Instead of doing this.... Public Class Form1 Public Shared Sub CreateAndShow() Dim f As New Form1 f.Show() End Sub
4
10995
JimWu
by: JimWu | last post by:
As title, I'd like to add a "Everyone" group to a file and give this account a full control right. I have try to use FileSecurity class to add a account, ASPNET ,for example. code as follow: try { AddFileSecurity(@"c:\TestACL.txt", "ASPNET", FileSystemRights.FullControl, AccessControlType.Allow); }
0
8991
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9548
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9374
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9325
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
6796
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6076
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4876
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2787
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2215
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.