Tagged Questions

25
votes
13answers
1k 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 …
22
votes
4answers
2k views

Adding a guideline to the editor in Visual Studio

I've always been searching for a way to make Visual Studio draw a guideline (a vertical line after a certain amount of characters). I recently found a simple solution I would like to share: If you …
15
votes
10answers
2k 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 …
11
votes
9answers
7k views

read/write to Windows Registry using Java

Is it possible to read/write to windows registry using java?
11
votes
15answers
2k 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 …
9
votes
9answers
363 views

Why does the Windows registry exist?

Hi, 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 …
8
votes
4answers
355 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!
7
votes
1answer
721 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' …
7
votes
9answers
1k 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 …
6
votes
4answers
406 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 …
6
votes
4answers
401 views

Does having a registry full of old stuff slow down Windows?

I know this isn't strictly speaking a programming question but something I always hear from pseudo-techies is that having a lot of entries in your registry slows down your Windows-based PC. I think …
5
votes
3answers
246 views

What is the problem with DLLs and the Registry?

Hi all, I was watching the WWDC 2009 Keynote and something someone said about Windows 7/Vista got me curious.. The speaker claimed that 7 was still a poor operating system because it still used the …
5
votes
4answers
1k views

Registry Watcher C#

I'm a newbie to WMI and I need to implement RegistryValueChangeEvent in a C# service. I need an event handler that gets triggered each time any one of a set of registry values is changed. I want …
5
votes
8answers
943 views

Clearing the Windows “Run” dialog history without rebooting

I am currently working on a program to immediately clear the list of previously-run-commands which appears in the Windows Start -> Run dialog. The procedure for clearing this list by removing the …
4
votes
1answer
450 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 …

1 2 3 4 5 23 next
15 30 50 per page