Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
319 views

Inno Setup - Finding out what install options were used for an application - from the application

I have an Inno Setup installer for an app that offers the user a choice between "Install for all users" and "Install just for me". If it is installed for all users, the INI file is placed in ...
2
votes
3answers
10k views

Location of %allusersprofile% folder in Windows Vista?

What is the exact path to %allusersprofile% folder in Windows Vista? On some systems, I have seen the folder as 'c:\Users\All Users', on some it is mapped to 'C:\ProgramData', while on others it has ...
1
vote
1answer
266 views

Inno Setup - allowing user to choose “just me” or “anyone using this computer”

Some installers I come across give me the choice of installing the app "just for me" or "for "anyone who uses this computer". How can I get my Inno Setup script to present the user with this choice, ...
0
votes
0answers
48 views

Deleting “All Users” shortcut for the current user in C#

I have the following piece of C# .NET 4 code that lists out files that are part of the "All Users" desktop that are displayed on the current users desktop: foreach (String desktopFilePath in ...
0
votes
2answers
495 views

Per-Machine install problem with User Profile

When building my WXS data into an MSI I get the following error: ICE38: Component CreateFolder installs to user profile. It must use a registry key under HKCU as its KeyPath, not a file. This is ...
0
votes
1answer
169 views

Detecting if the user selected “All Users” or “Just Me” in a Custom Action

I'm trying to detect if the user has selected the "All Users" or the "Just Me" radio during the install of my program. I have a custom action setup that overrides several methods (OnCommit, ...