Tagged Questions
The program-files tag has no wiki summary.
14
votes
6answers
7k views
Use 32bit “Program Files” directory in msbuild
In 64 bit versions of windows, 32 bit software is installed in "c:\program files (x86)". This means you cannot use $(programfiles) to get the path to (32 bit) software. So I need a $(ProgramFiles32) ...
9
votes
6answers
9k views
How do I programatically retrieve the actual path to “Program Files” folder?
I realize the odds of a user changing the Windows default of C:\Program Files is fairly slim, but stranger things have happened!
How can I get the correct path to Program Files from the system?
3
votes
2answers
733 views
Refer Program Files in 64 bit machine
In C#, show to refer the locations:
Program Files (x86)
Program Files
rather than hard-coding C:\Program Files (x86) and C:\Program Files
3
votes
2answers
192 views
During Installation, where do the Various File Types go on Vista
Installing my software on Windows XP was always easy. Everything went in the "c:\Program Files\myprogram" directory. This included:
The executable program itself and any dlls.
Readme.txt and ...
2
votes
6answers
1k views
Environment.SpecialFolder.ProgramFiles value for a 32bit app on Windows7?
What would a 32 bit application running on Windows 7 return for the below -
Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles)?
C:\Program Files (x86) or
C:\Program Files ??
2
votes
2answers
210 views
How to check if application runs from \program files\
Is there a reliable method to check if an application is run from somewhere beneath program files?
If the user installs the application to program files on local machine, we need to put writable ...
1
vote
4answers
641 views
Finding Silverlight version & Installation Folder programmatically
Is it possible to find the version of the installed Silverlight (e.x. 4.0.51204.0) and its installation folder (e.x. C:\Program Files (x86)\Microsoft Silverlight\4.0.51204.0) in a C# program?
Some ...
1
vote
1answer
344 views
Windows 7: Can't save files to Program Files? So where to write?
The question is related to the Title:
Windows 7: Can't save files to Program Files? So where to write?
I know that there is a AppData, but I don't know how to obtain the directory correclty? Is there ...
1
vote
3answers
297 views
Access to “Program Files” folder needed
I ran into this quite often stated problem but even after looking up nearly every scource I didn’t get an aswer. Problem is as follows:
I wrote a little updater tool that connects to a server to ...
1
vote
1answer
999 views
How do get the path of Program Files regardless of the architecture of the target machine
I'm programming in C#.NET. I want to be able to return the Program Files directory from the target machine no matter what the architecture of the target machine is.
To clarify, I want it to return ...
1
vote
1answer
759 views
How to get log4net to generate log files when running as non-administrator user?
A process running as a non-administrator user does not have rights to write to the program files folder. What is the best way to configure log4net to write to a location that a non-administrator user ...
0
votes
2answers
15 views
Do applications installed to Program Files have permissions to modify their folder?
If I install my app to program files, will it always be able to create and write files within its install directory? It seems to work in a lot of different versions of windows, but are there ...
0
votes
1answer
76 views
Unusual Python exe behavior when running from Progam Files X86 versus Program FIles on Win7 is there some virtualization going on?
I have an EXE that I built that I am trying to have installed in the Program Files (x86) folder on Win7 machines. There is really interesting behavior going on. The program has a gui-we used ...
0
votes
5answers
521 views
create a folder and files in c:\program files\myApp\data in windows 7
I have an old c++ application that needs to be modified to work with windows 7.
Problem is in creating a new folder and saving a file in that folder. This folder should be created in
c:\program ...