Tagged Questions

The Windows Registry is a database where configuration settings for hardware, software and the Windows operating system itself are saved.

learn more… | top users | synonyms (1)

96
votes
6answers
16k views

Adding a guideline to the editor in Visual Studio [closed]

Introduction I've always been searching for a way to make Visual Studio draw a line after a certain amount of characters: Below is a guide to enable these so called guidelines for various versions ...
59
votes
13answers
3k views

When - and why - should you store data in the Windows Registry?

As a developer, tools that store configuration/options in the registry are the bane of my life. I can't easily track changes to those options, can't easily port them from machine to machine, and it ...
54
votes
15answers
40k views

read/write to Windows Registry using Java

Is it possible to read/write to windows registry using java?
23
votes
12answers
4k views

Registry vs. INI file for storing user configurable application settings

I'm a new Windows programmer and I'm not sure where I should store user configurable application settings. I understand the need to provide a user friendly means for the user to change application ...
18
votes
16answers
1k views

Why aren't .NET “application settings” stored in the registry?

Some time back in the nineties, Microsoft introduced the Windows Registry. Applications could store settings in different hives. There were hives for application-wide and user-specific scopes, and ...
18
votes
9answers
1k views

Why does the Windows registry exist? [closed]

this is more OS architecture question than programming directly, but still. Why was the Windows registry created as a completely separate subsystem for storing system/application settings? In *nix ...
15
votes
8answers
23k views

Detect whether Office 2010 is 32bit or 64bit via the registry

Now that Office 2010 also comes in a 64bit install, where in the registry do you find out if the version of Office installed is 32bit or 64bit?
14
votes
14answers
7k views

Best Way To Determine If .NET 3.5 Is Installed

I need to programatically determine whether .NET 3.5 is installed. I thought it would be easy: <% Response.Write(Environment.Version.ToString()); %> Which returns "2.0.50727.1434" so no such ...
13
votes
3answers
3k views

Reading 64bit Registry from a 32bit application

I have a c# unit test project that is compiled for AnyCPU. Our build server is a 64bit machine, and has a 64bit SQL Express instance installed. The test project uses code similar to the following to ...
13
votes
1answer
7k views

Where are environment variables stored in registry?

I need to access an environment variable remotely. To do this I think the best way is to read it from registry. Where are environment variables stored in registry?
13
votes
4answers
17k views

Programmatically Set Browser Proxy Settings in C#

I'm writing an winforms app that needs to set internet explorer's proxy settings and then open a new browser window. At the moment, I'm applying the proxy settings by going into the registry: ...
12
votes
6answers
15k views

Windows 64-bit registry v.s. 32-bit registry

I heard on Windows x64 architecture, in order to support to run both x86 and x64 application, there is two separate/different sets of Windows registry -- one for x86 application to access and the ...
12
votes
5answers
1k views

Is there a Windows Registry “dictionary” that explains the whole (or most of) the Windows Registry?

I'd like to be able to see what registry keys are used for. A book on the registry would be fine as well. Info on Windows Vista changes would be great!
11
votes
1answer
5k views

Visual Studio 2008\Backup Files folder created when every new VS instance is opened

I think I have something broken with the path that VS 2008 saves the backup files. Since few days, it creates a new "Visual Studio 2008" directory in the same folder that my .sln file exists. Then, ...
11
votes
5answers
6k views

How to read a value from the Windows registry

Given the key for some registry value (e.g. HKEY_LOCAL_MACHINE\blah\blah\blah\foo) how can I: Safely determine that such a key exists. Programmatically (i.e. with code) get its value. I have ...
10
votes
3answers
1k views

How to write in a registry key own by TrustedInstaller

In order to install a new property page into the Active Directory SnapIn, I need to write into the following registry key of W2K8 R2 (as documented by Microsoft) ...
10
votes
9answers
477 views

What's the point of a system registry?

Sorry for being really ignorant here, I just want to learn, why is the registry needed for programs? What's it for and why can't software just write variables to their own local files? Does it do ...
10
votes
1answer
2k views

How to associate application with existing file types using WiX installer?

related to this: http://stackoverflow.com/questions/138550/how-to-register-file-types-extensions-with-a-wix-installer but not a duplicate. I need to handle existing file types (.jpg files). I do not ...
10
votes
2answers
3k views

Create 64 bit registry key (non-WOW64) from a 32 bit application

I have a Visual Studio installer that is creating some registry keys: HKEY_LOCAL_MACHINE\SOFTWARE\MyApp but the registry keys it is creating are automatically appearing under Wow6432Node: ...
10
votes
3answers
3k views

WIX will not add HKLM registry setting during Windows 7 install

Good Morning, I have written a WiX installer that works perfectly with Windows XP but when installing to a Windows 7 box I am running into difficulty with Registry Entries. What I need to do is add a ...
10
votes
5answers
2k views

How do you clear your MRU list in Visual Studio?

I want to clear the list of projects on the start page...how do I do this? I know I can track it down in the registry, but is there an approved route to go?
9
votes
3answers
194 views

How to uninstall IE Addon

I am building an IE Addon in C#. I uninstall my addon using Programs and Features. But it doesn't work out. The toolbar stays there on the browser. Tried Manage Addons from Tool Menu in IE. It ...
9
votes
2answers
478 views

Which is better: Dependency Injection+Registry or Dependency Injection or Global Registry?

Firstly, I want to restrict this question to web development only. So this is language agnostic as long as the language is being used for web development. Personally, I am coming at this from a ...
9
votes
4answers
9k views

How to open a WOW64 registry key from a 64-bit .NET application

My .NET application (any-CPU) needs to read a registry value created by a 32-bit program. On 64-bit Windows this goes under the Wow6432Node key in the registry. I have read that you shouldn't ...
9
votes
5answers
10k views

Requested registry access is not allowed

I'm writing a tweak utility that modifies some keys under HKEY_CLASSES_ROOT. All works fine under Windows XP and so on. But I'm getting error Requested registry access is not allowed under Windows 7. ...
9
votes
9answers
3k views

Where to store program settings instead of HKEY_LOCAL_MACHINE?

I have some program settings that are currently stored in HKEY_LOCAL_MACHINE. Due to Vista and locked down users, some users don't have permission to HKEY_LOCAL_MACHINE, and those values don't really ...
8
votes
1answer
179 views

C# - Programmatically change the Windows Shell

I'm working on a project that will be "embedded" into a Windows 7 system, this is going to be achieved by disabling task manager and changing the windows shell to the application, as well as other ...
8
votes
1answer
796 views

How can a 32-bit program read the “real” 64-bit version of the registry?

I'm trying to read HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run with OpenKeyReadOnly, and GetValueNames, but it's returning values from ...
8
votes
3answers
187 views

Where does Windows store it's “Open With” settings?

I'm trying to programatically check file associations (for example .jnlp files). I keep reading that "HKEY_LOCAL_MACHINE\SOFTWARE\Classes\JNLPFile\Shell\Open\Command" is the place to check. However, ...
8
votes
1answer
308 views

Problem registering a COM server written for Excel registered on client machine (can't set full path to mscoree.dll)

In this previous question <How to get COM Server for Excel written in VB.NET installed and registered in Automation Servers list?> there is an example of how to create the full path to a registry ...
8
votes
4answers
3k views

How to change filetype association in the registry?

first time posting in StackOverflow. :D I need my software to add a couple of things in the registry. My program will use Process.Start(@"blblabla.smc"); to launch a file, but the problem is ...
8
votes
4answers
2k views

How to decide where to store per-user state? Registry? AppData? Isolated Storage?

When should the Windows Registry be used for per-user state, and when should we use the filesystem, particularly the user's AppData folder? (eg, C:\Users\USERNAME\AppData). Where does Isolated Storage ...
8
votes
8answers
2k views

Windows Registry best practices

In what way is the Windows registry meant to be used? I know it's alright to store a small amount of user preferences, but is it considered bad practice to store all your users data there? I would ...
8
votes
1answer
2k views

How do you register a Most Recently Used list with Windows in preparation for Windows 7?

With the upcoming release of Windows 7, one of the newly touted features is the Jump Lists, with their automatic population of most recently used items. Supposedly, if you've been 'properly' ...
8
votes
8answers
19k views

Detecting installed programs via registry

I need to develop a process that will detect if the users computer has certain programs installed and if so, what version. I believe I will need a list with the registry location and keys to look for ...
7
votes
1answer
392 views

Why can't I properly read 32bit registry values in HKCU on 64bit machine?

I'm stumped on a windows 7 registry problem and while various questions and answers get me some of the way there, nothings I've seen addresses my particular issue. I don't know if other windows ...
7
votes
3answers
225 views

Is this too many dependencies to inject into an object through the constructor?

I am working on a social network type project in OO PHP and I do not want to use an existing framework. The main point of doing this project is to help me learn about more stuff. This question is ...
7
votes
5answers
5k views

How can I find sql server port number from windows registry?

How can I find sql server port number from windows? Is there any generic way to find port number for sql server 2000, 2005 and 2008?
7
votes
2answers
11k views

Create registry entry to associate file extension with application in C++

I would like to know the cleanest way of registering a file extension with my C++ application so that when a data file associated with my program is double clicked, the application is opened and the ...
7
votes
4answers
2k views

Detecting registry virtualization

I have a set of C# (v2) apps and I am struggling with registry virtualization in Win7 (and to a lesser extent Vista). I have a shared registry configuration area that my applications need to access ...
7
votes
4answers
10k views

how to delete registry value in c#

I can get/set registry value using Microsoft.Win32.Registry class. For example Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run", "MyApp", ...
7
votes
7answers
7k views

How to run my program on before logout on windows XP?

I am looking for an inverse version of "RunOnceEx". RunOnceEx does run some program, before the user's shell(desktop&taskbar) start. The login progress will not continue before the runonceex ...
7
votes
4answers
11k views

Why is RegOpenKeyEx() returning error code 2 on Vista 64bit?

I was making the following call: result = RegOpenKeyEx(key, s, 0, KEY_READ, &key); (C++, Visual Studio 5, Vista 64bit). It is failing with error code 2 ("File not found") even though "regedit" ...
7
votes
4answers
5k views

How to launch a Windows process as 64-bit from 32-bit code?

To pop up the UAC dialog in Vista when writing to the HKLM registry hive, we opt to not use the Win32 Registry API, as when Vista permissions are lacking, we'd need to relaunch our entire application ...
7
votes
2answers
5k views

What registry access can you get without Administrator privleges?

I know that we shouldn't being using the registry to store Application Data anymore, but in updating a Legacy application (and wanting to do the fewest changes), what Registry Hives are ...
6
votes
1answer
124 views

How can I create a “Open with” list as in Explore in my own application

In my application the user can select reference to file, for example a image file. I would like to make button with a arrow that opens a list with the programs installed on the system witch can open ...
6
votes
1answer
118 views

How to display registry in A treeView in Delphi 7

I want to display a treeview with all the registry information in it ( i.e all the subkeys ). I have put together the following Fn to do the same. But i am getting the info of only one Key, not all. ...
6
votes
1answer
785 views

Reference directory install path in registry value using Wix

I want to save the path of my application, installed with wix, in the windows registry. I tried the following: <RegistryValue Root="HKLM" Key="Software\company\InstallLocation" ...
6
votes
2answers
3k views

How to check if a registry value is exist using C#?

How to check if a registry value is exists? by c# code? this is my code, I want to check if 'Start' is exist. public static bool checkMachineType() { RegistryKey winLogonKey = ...
6
votes
2answers
876 views

How to determine Windows Java installation location

I'm trying to dynamically run a .jar from a C# assembly (using Process.Start(info)). Now, from a console application I am able to just run: ProcessStartInfo info = new ProcessStartInfo("java", "-jar ...

1 2 3 4 5 34