active questions tagged registry - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:21:07Z http://stackoverflow.com/feeds/tag/registry http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1816631/how-to-read-a-display-name-from-a-dll 0 How to read a display name from a DLL? Zyphrax 2009-11-29T20:14:31Z 2009-11-29T20:58:25Z <p>In the registry and in theme files you'll notice a lot of references to DLLs when it comes to display names.</p> <p>For example:</p> <pre><code>[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default] @="Windows" "DispFileName"="@mmres.dll,-5856" </code></pre> <p>I've opened the mmres.dll file in PE Explorer, but I don't see any display names.</p> <p>How can I retrieve the actuale display name behind the <strong>@mmres.dll,-5856</strong> reference in C#?<br> How can I do this efficiently for many references?</p> http://stackoverflow.com/questions/1649283/issue-with-inf-file-for-registering-activex 0 Issue with .INF file for registering ActiveX Ummar 2009-10-30T11:30:08Z 2009-11-27T09:00:03Z <p>I have made an INF file, its contents are as follows</p> <pre><code>[version] Signature="$CHICAGO$" AdvancedINF=2.0 [Add.Code] MyControl.dll=MyControl.dll ; Now installing the ActiveX [MyControl.dll] file-win32-x86=thiscab clsid={05B7BC83-FCA1-452d-9D33-193784FEC637} FileVersion=1,0,0,1 RegisterServer=yes </code></pre> <p>but the Control is not registered after Internet Explorer has finished installation, and each time I press F5 to refresh the webpage, my browser shows the Installation prompt.?? which means that it is not installed in my machine. And when I run <code>regasm /tlb /codebase MyControl.dll</code> command it starts working fine... I have written my ActiveX control in C# and here are registering function</p> <pre><code>[ComRegisterFunction()] public static void RegisterClass ( string key ) { // Strip off HKEY_CLASSES_ROOT\ from the passed key as I don't need it StringBuilder sb = new StringBuilder ( key ) ; sb.Replace(@"HKEY_CLASSES_ROOT\","") ; // Open the CLSID\{guid} key for write access RegistryKey k = Registry.ClassesRoot.OpenSubKey(sb.ToString(),true); // And create the 'Control' key - this allows it to show up in // the ActiveX control container RegistryKey ctrl = k.CreateSubKey ( "Control" ) ; ctrl.Close ( ) ; // Next create the CodeBase entry - needed if not string named and GACced. RegistryKey inprocServer32 = k.OpenSubKey ( "InprocServer32" , true ) ; inprocServer32.SetValue ( "CodeBase" , Assembly.GetExecutingAssembly().CodeBase ) ; inprocServer32.Close ( ) ; // Finally close the main key k.Close ( ) ; //MessageBox.Show("Registered"); } </code></pre> <p>Please help me out that why <code>RegisterServer=yes</code> is not calling this function, and I have to call it manually using <code>regasm /tlb /codebase MyControl.dll</code> command?</p> http://stackoverflow.com/questions/1633673/does-keywow6464key-have-any-effect-on-32-bit-windows 0 Does KEY_WOW64_64KEY have any effect on 32 bit Windows? Blorgbeard 2009-10-27T21:05:04Z 2009-11-25T15:00:04Z <p>It <em>appears</em> that specifying the <code>KEY_WOW64_64KEY</code> flag (<a href="http://msdn.microsoft.com/en-us/library/aa384129%28VS.85%29.aspx" rel="nofollow">reference</a>) when accessing a registry key under 32-bit Windows XP has no effect - that is, no error is thrown, and the key is opened as if you hadn't had the flag set.</p> <p>I know Windows 2000 throws an error when it encounters this flag.</p> <p>I want to make sure my app is compatible with as many versions of windows (2k and later) as possible. </p> <p>Is there a Microsoft reference that specifies each version of Windows' behaviour for this flag? In particular, I'd like something that validates my assumption that it has no effect at all on post-2k 32-bit Windows.</p> http://stackoverflow.com/questions/1193873/which-reasons-could-make-shellexecute-fail 2 Which reasons could make ShellExecute fail? MicSim 2009-07-28T12:47:59Z 2009-11-25T13:18:33Z <p>I have a VB6 application which opens files with their associated application using:</p> <pre><code>ShellExecute(0, "open", filename, params, vbNullString, vbNormalFocus) </code></pre> <p>This works perfectly. </p> <p>Now I got a customer (running XP with Adobe Reader) who can't open any PDF file using the above command. But the same file is being opened without any problems when double clicking it from Windows Explorer. I also tested the filename/-path combination on my machine to exclude those kind of problems.</p> <p>I'm searching for any hints on what I could check to make sure <code>ShellExecute</code> is working. Or what can cause ShellExecute to fail this way?</p> http://stackoverflow.com/questions/1074467/restore-registry-from-file 1 restore registry from file deovrat singh 2009-07-02T13:53:02Z 2009-11-23T06:00:02Z <p>I am trying to migrate microsoft office settings from one system to other system by backing up office registry and restoring it on the destination machine using Python.I am able to do the saving part,but on trying to restore the existing settings in destination machine to overwrite existing office settings,i am getting an error. This is the code for restoring :-</p> <pre><code>import os, sys import _winreg import win32api import win32con import win32security priv_flags = win32security.TOKEN_ADJUST_PRIVILEGES | win32security.TOKEN_QUERY hToken = win32security.OpenProcessToken (win32api.GetCurrentProcess (), priv_flags) backup_privilege_id = win32security.LookupPrivilegeValue (None, "SeBackupPrivilege") restore_privilege_id = win32security.LookupPrivilegeValue (None, "SeRestorePrivilege") win32security.AdjustTokenPrivileges ( hToken, 0, [ (backup_privilege_id, win32security.SE_PRIVILEGE_ENABLED), (restore_privilege_id, win32security.SE_PRIVILEGE_ENABLED) ] ) result = _winreg.LoadKey (_winreg.HKEY_CURRENT_USER, r"Software\Microsoft\Office",ur"Office.registry") print "Restored Office Settings" </code></pre> <p>here "office.registry" is the backed up hive HKEY_CURRENT_USER\Software\Microsoft\Office</p> <p>I am getting WindowsError: [Errno 5] Access is denied.</p> <p>Please help me to identify my mistake</p> http://stackoverflow.com/questions/787078/internet-explorer-tools-proxy-settings-how-to-add-menu-item-create-window 0 internet explorer -> Tools -> proxy settings: How to add menu item, create window when clicked, n perform opreations on registry Mayur M 2009-04-24T18:43:28Z 2009-11-22T16:00:03Z <p>Hi</p> <p>I want to add menu item to Internet Explorer-> tools.</p> <p>For example: Exactly like Intrnet explorer-> Tools -> Delete browsing history</p> <p>I want to add proxy related actions For example: tools -> Enable proxy tools -> Disable proxy </p> <p>Also to have proxy cache, i would like to display window exactly like what is displayed when we click on 'Delete browig history'. When clicked on internet ex. -> tools -> 'Edit proxy settings' menu item, it will display an additional window. From there user will be displayed cached data for proxy and user will be able to modify proxy data.</p> <p>I would like to know how i can do this? (which technology can help me in doing this ?)</p> <p>Thanks.</p> http://stackoverflow.com/questions/1742242/registry-key-for-install-update-and-hotfix-information-on-windows-7 0 Registry key for Install update and hotfix information on windows 7 amritad 2009-11-16T13:36:49Z 2009-11-20T02:55:50Z <p>Hi All,</p> <p>I am working on windows 7 support. In my application I want to gather installed updates and patches. Currently I am gathering it from WIn32_QuickFixEngineering. But it is not giving information for InstalledSDate , Description. </p> <p>I need to get this either from registry or API (C++ application). In other operating system like XP, 2k3 registry keys are- HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Hotfix HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Updates</p> <p>But these are not present on windows 7.</p> <p>Can any one give thought on this..</p> http://stackoverflow.com/questions/48278/how-to-print-css-applied-background-images-with-the-winforms-webbrowser-control 1 How to print css applied background images with the winforms webbrowser control Geir-Tore Lindsve 2008-09-07T09:51:09Z 2009-11-19T19:22:32Z <p>I am using the webbrowser control in winforms and discovered now that background images which I apply with css are not included in the printouts.</p> <p>Is there a way to make the webbrowser print the background of the displayed document too?</p> <p>Edit: Since I wanted to do this programatically, I opted for this solution:</p> <pre><code>using Microsoft.Win32; ... RegistryKey regKey = Registry.CurrentUser .OpenSubKey("Software") .OpenSubKey("Microsoft") .OpenSubKey("Internet Explorer") .OpenSubKey("Main"); //Get the current setting so that we can revert it after printjob var defaultValue = regKey.GetValue("Print_Background"); regKey.SetValue("Print_Background", "yes"); //Do the printing //Revert the registry key to the original value regKey.SetValue("Print_Background", defaultValue); </code></pre> <p>Another way to handle this might be to just read the value, and notify the user to adjust this himself before printing. I have to agree that tweaking with the registry like this is not a good practice, so I am open for any suggestions.</p> <p>Thanks for all your feedback</p> http://stackoverflow.com/questions/1762310/effects-of-changing-nlslang-setting-in-the-registry-for-oracle-client 0 Effects of changing NLS_LANG setting in the registry for Oracle Client LauraB 2009-11-19T10:27:28Z 2009-11-19T16:24:51Z <p>We are in the process of moving from the .NET Microsoft oracle driver to the ODP.NET driver.</p> <p>One of the problems we have had is this error:</p> <p>ORA-12705: Cannot access NLS data files or invalid environment specified</p> <p>We were able to stop the error by modifying the registry and changing the setting (<a href="http://stackoverflow.com/questions/1629327/ora-00604-ora-12705">see this question</a>)</p> <p>In our case we changed </p> <p><code>HKEY_LOCAL_MACHINE - SOFTWARE - ORACLE - NLS_LANG </code> </p> <p>which was set to NA</p> <p>to be the same as </p> <p><code>HKEY_LOCAL_MACHINE - SOFTWARE - ORACLE - HOME0 - NLS_LANG </code> </p> <p>which was set correctly </p> <p>My question is why would there be different NLS_LANG settings in the registry, and might there be any knock on effects of changing this value?</p> <p><hr></p> <p>Update: I've just found in the <a href="http://www.oracle.com/technology/tech/globalization/htdocs/nls%5Flang%20faq.htm" rel="nofollow">Oracle NLS FAQ</a> the following</p> <blockquote> <p>For Oracle version 7:</p> <p><code>HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE</code></p> <p>For Oracle Database versions 8, 8i and 9i:</p> <p><code>HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HOMEx\</code></p> <p>where "x" is the unique number identifying the Oracle home.</p> <p>HOME0 is the first installation</p> <p>For Oracle Database 10g:</p> <p><code>HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_&lt;oracle_home_name&gt;</code></p> <p>There you have an entry with name <code>NLS_LANG</code></p> </blockquote> <p>OK, so there are different registry settings for different versions...</p> <blockquote> <p>Note:</p> <p>Some people are confused by finding a NLS_LANG set to "NA" in <code>HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE</code> when no version 7 was installed. This is used for backwards compatibility, and can be ignored.</p> </blockquote> <p>I have Oracle 9i, so now I'm even more confused - why is the ODP.NET dll looking at the Oracle 7 registry setting?</p> http://stackoverflow.com/questions/285277/where-to-store-program-settings-instead-of-hkeylocalmachine 7 Where to store program settings instead of HKEY_LOCAL_MACHINE? Robo 2008-11-12T20:41:37Z 2009-11-17T22:15:28Z <p>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 belong to HKEY_LOCAL_USER either (it has to be the same for all users), what's the best alternative location for storing these?</p> <p>Majority of settings are stored in the DB already, but there are some that the program needs to know about before connecting to the DB. Ideally I'll like a way to implement this without needing to check what operating system is running.</p> <p>This is for a desktop app written in Delphi.</p> http://stackoverflow.com/questions/1751250/how-to-check-visible-resolution-of-system 0 How to check visible resolution of system Ian Kremer 2009-11-17T19:40:57Z 2009-11-17T20:20:13Z <p>I am not entirely sure how to word this questions so I am just going to explain my problem.</p> <p>My VB 6 program saves the location of the screen in the registry so that when it loads up again it can have a default location. This works as expected, but I encountered a problem. I had a computer setup with 2 monitors. I dragged the window to the second screen, then the next day when I unplugged the second monitor. Every time I would load the program it would appear in the dock, but the form itself was not.</p> <p>I figured it was hiding on the second monitor's space (or were the second monitor should be) Now at first I connected a second monitor to grab it back, but it did not show up. The monitor setup was such that the main monitor (1) was to the left of the new monitor (2). I had to drag (2) over to the left of (1) at which point it showed up, and I was able do drag it back to the main window and everything worked fine. I mention this because I figured each monitor number's resolution was relative to itself. Is the multimonitor one giant coordinate plane?</p> <p>What I want to know is when I grab the location numbers from the registry (Form.left and Form.top) is there a way to check it against what is available to the system? This is not a huge issue, but I know I am going to get clients calling in eventually asking, "Its loading, but I cant find it!" and would like to avoid those calls if possible.</p> <p>Thank you all</p> http://stackoverflow.com/questions/1733906/how-to-remove-the-inherited-rules-for-a-registry-key 0 How to remove the inherited rules for a registry key duke 2009-11-14T10:31:18Z 2009-11-17T02:49:34Z <p>I want to allow read/write permissions to only administrators group for a registry key which is already created in the system. Other than administrators, no one should be able to access the key. </p> <p>I have written code to enumerate all the registryaccess rules associated with the registry key and start removing each rule.</p> <p>The problem i am facing here is i am not able to delete some of the registryaccess rules becuase these are inherited from its parent registry key. For example, i am not able to remove the access rules for the following windows groups as these rules are inherited from its parent registry key -</p> <p>BUILTIN\Users BUILTIN\Power Users NT AUTHORITY\SYSTEM</p> <p>Here is the code snippet which i am trying -</p> <p>RegistryKey objReg = Registry.LocalMachine.OpenSubKey(GlobalValues.RegKey_Sample, RegistryKeyPermissionCheck.ReadWriteSubTree, RegistryRights.FullControl); RegistrySecurity security = objReg.GetAccessControl();</p> <pre><code> foreach (RegistryAccessRule ar in security.GetAccessRules(true, true, typeof(NTAccount))) { MessageBox.Show(ar.IdentityReference.ToString()); if (ar.IdentityReference.ToString().CompareTo("BUILTIN\\Administrators") != 1) { MessageBox.Show("need not to be removed"); } else { //Trying to reset the inheritance value and then removing the rule RegistryAccessRule rule = new RegistryAccessRule(ar.IdentityReference, ar.RegistryRights, InheritanceFlags.None, PropagationFlags.None, AccessControlType.Allow); //try 1 - to remove inheritace flag security.ResetAccessRule(rule); objReg.SetAccessControl(security); //try 2- to remove inheritace flag security.AddAccessRule(rule); objReg.SetAccessControl(security); //Assuming now it is not inheriting rule for this identity, removing this rule for this registry key security.RemoveAccessRuleAll(ar); objReg.SetAccessControl(security); } } </code></pre> <p>Is there a way to create a rule for a registry key to not to inherit any rules from its parent registry key. Appreciate your help, thanks...</p> http://stackoverflow.com/questions/1736743/vb-2005-2008-help-needed-registry 0 VB 2005/2008 Help Needed - Registry yihang 2009-11-15T06:05:32Z 2009-11-16T18:29:23Z <p>How do i read, write and delete a registry using VB 2005/2008.<br> Please give your explanation to your answer. I am really a registry noob...<br> Thanks. I can't read any programming language other than vb.</p> http://stackoverflow.com/questions/259972/clsidfromprogid-is-successful-but-createinstace-fails-why 1 CLSIDFromProgID is successful but CreateInstace fails! Why? Shao 2008-11-03T21:10:40Z 2009-11-16T14:18:55Z <p>I am trying to create an instance of a COM object. I have the class name that implements the interface and I get a CLSID by using CLSIDFromProgID(). So since I am getting a CLSID I thought everything should be fine from now on. However when I do a call to CreateInstance and pass in the CLSID, I get an error saying "Class not registered". Also I get this error only in some computers. It runs error free on several computers. I don't understand where the problem could be. Is my registry dirty? Does anyone know what is going on here? Thanks for your help!</p> <p>I just want to add that this is a .NET COM class. The appropriate entries are in the registry and the DLL is in the GAC.</p> http://stackoverflow.com/questions/1740393/regarding-dll-registration 0 regarding dll registration sandeep kumar 2009-11-16T06:20:03Z 2009-11-16T06:20:03Z <p>I have a dll obtained from compiling a VS2005 project. But it is not regestering in my system im running VS 08.wat might be the probable reasons?</p> http://stackoverflow.com/questions/1735563/how-can-i-access-64-bit-registry-hive-information-from-a-application-running-in-3 1 How can I access 64 bit registry hive information from a application running in 32 bit mode on a 64 bit machine(WOW) using WMI through C# Mark 2009-11-14T20:52:50Z 2009-11-15T18:44:04Z <p>I think the question really sums up what i'm trying to do. Here is the code that i'm using. It works in every scenario except if my application is running in 32 bit mode on a 64 bit machine. No matter how I play arround with the __ProviderArchitecture and __RequiredArchitecture flags, i can always only seem to access the 32 bit section of the hive (WOW6432Node)</p> <pre><code>uint LOCAL_MACHINE = 0x80000002; string results = ""; ConnectionOptions options = new ConnectionOptions(); options.Impersonation = ImpersonationLevel.Impersonate; options.EnablePrivileges = true; options.Username = this.txtUser.Text; options.Password = this.txtPassword.Text; ManagementScope myScope = new ManagementScope("\\\\" + this.txtMachine.Text + "\\root\\default", options); ManagementPath mypath = new ManagementPath("StdRegProv"); ManagementClass mc = new ManagementClass(myScope, mypath, null); ManagementBaseObject inParams = mc.GetMethodParameters("EnumKey"); inParams["hDefKey"] = LOCAL_MACHINE; inParams["sSubKeyName"] = @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"; ManagementNamedValueCollection objCtx = new ManagementNamedValueCollection(); objCtx.Add("__ProviderArchitecture", 64); objCtx.Add("__RequiredArchitecture", true); InvokeMethodOptions invokeOptions = new InvokeMethodOptions(); invokeOptions.Context = objCtx; ManagementBaseObject outParams = mc.InvokeMethod("EnumKey", inParams, invokeOptions); inParams = mc.GetMethodParameters("GetStringValue"); inParams["hDefKey"] = LOCAL_MACHINE; foreach(string name in (string[])outParams["sNames"]) { inParams["sSubKeyName"] = @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" + "\\" + name; inParams["sValueName"] = "DisplayName"; outParams = mc.InvokeMethod("GetStringValue", inParams, invokeOptions); if (!string.IsNullOrEmpty(((string)outParams["sValue"]))) { results += outParams["sValue"] + "\t"; } } </code></pre> http://stackoverflow.com/questions/1245151/deploy-registry-change 0 Deploy Registry Change JoeLangley 2009-08-07T14:43:02Z 2009-11-15T05:34:29Z <p>What is the best way to deploy a HKCU registry change for <strong>anyone</strong> who logs onto the machine. Someone mentioned to me Active Setup...but I am not sure.</p> http://stackoverflow.com/questions/510852/where-odbc-file-dsn-in-windows-vista 1 where ODBC File DSN in Windows Vista Mark 2009-02-04T10:51:26Z 2009-11-13T20:00:03Z <p>Hi,</p> <p>In Windows XP, 2003 there is one entry in the registry for ODBC file DNS location in the system:</p> <p>HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC.INI\ODBC File DSN\DefaultDSNDir</p> <p>Where can I get the default DSN folder in Windows Vista and/or Windows 2008</p> <p>Thanks,</p> http://stackoverflow.com/questions/1720710/register-file-extension-in-window-registry 1 Register file extension in window registry? qulzam 2009-11-12T08:18:44Z 2009-11-13T11:23:47Z <p>I want to register my own project extension in window registry. I searched on google, at least i found this code, this works well, but I don't understand one line. What is meaning of "%L".</p> <p>The C# code is</p> <pre><code>string ext = ".ext"; RegistryKey key = Registry.ClassesRoot.CreateSubKey(ext); MessageBox.Show(exePath); key.SetValue("", "My Project"); key.Close(); key = Registry.ClassesRoot.CreateSubKey(ext + "\\Shell\\Open\\command"); //key = key.CreateSubKey("command"); key.SetValue("", "\"" + Application.ExecutablePath + "\" \"%L\""); key.Close(); key = Registry.ClassesRoot.CreateSubKey(ext + "\\DefaultIcon"); key.SetValue("", Application.StartupPath + "\\icon.ico"); key.Close(); </code></pre> <p>that is line which confuse me, </p> <pre><code> key.SetValue("", "\"" + Application.ExecutablePath + "\" \"%L\""); </code></pre> <p>Please explain, I'm very thankful to you in advance.</p> http://stackoverflow.com/questions/104383/vb6-error-error-accessing-the-system-registry 0 VB6 error : Error accessing the system registry phill 2008-09-19T18:36:22Z 2009-11-12T18:36:43Z <p>In visual basic 6, when I attempt to access Project > References, it throws an error</p> <p>"Error accessing system registry" </p> <p>I'm logged in as the local computer administrator running windows XP professional and I can execute regedt32.exe and access all the registry keys just fine. VB6 was installed as the local administrator. </p> <p>any ideas why this happens? </p> <p>thanks in advance</p> <p>-Phill </p> http://stackoverflow.com/questions/1722860/how-to-run-an-application-on-windows-start-up-in-win32-api-using-visual-c 0 How to run an Application on windows start up in win32 API using visual c++ Ravi shankar 2009-11-12T15:07:37Z 2009-11-12T15:33:14Z <p>I have a Window (win32 API) Application in visual c++. I am not using MFC. I have to run my application on windows start up. I am using windows 7 and visual studio 2008. Can any one help me out in achieving the above task? Thanks in advance.</p> http://stackoverflow.com/questions/1470770/accessing-registry-using-net 2 Accessing Registry using .Net? Manigandan 2009-09-24T10:01:58Z 2009-11-12T15:26:37Z <p>Hello Everyone, I am finding a strange behavior with a .Net module accessing registry using RegistryKey class. For eg I have written .Net module testcom.dll which access registry. This testcom.dll is used both by native 32 bit application and 64 bit application. My requirement is to get the value of a regkey (path being HKEY_LOCAL_MACHINE\SOFTWARE\Test\MyParameters and key name is Age). This "Age" key will be in 32 bit registry in 32 bit machines and 64 bit registry(Not WOW64) in 64 machines.</p> <p>In a 64 bit machine, When a 32 bit application is using testcom.dll, the key "Age" is searched in WOW64 registry. When a 64 bit application is using testcom.dll, the key "Age" is searched in 64 bit registry.</p> <p>My requirement is to read the key in 64 bit registry in 64 bit machines whatever application uses the testcom.dll. Has anyone come across this? Could anyone help me out?</p> <p>Thanks in Advance, -Mani.</p> http://stackoverflow.com/questions/1721679/installing-a-windows-service-as-a-user 2 Installing a Windows Service as a user manemawanna 2009-11-12T11:51:28Z 2009-11-12T12:49:58Z <p>Hello,</p> <p>I'm currently in the process of creating a Windows service application which will monitor changes to certain keys made in the HKEY_USERS registry. The way I do this is by collecting the SID of the current user. The issue I'm having is that its returning the administrators SID due to the service currently running as local system.</p> <p>What I need the system to do is collect and return the SID of the currently logged in user (by this I dont mean the local service, local system or network service but the person whos logged into windows via the GINA), so what I need the service to do is run as that user. This will also allow the service to write back to the users network drive which is the intention of this program.</p> <p>The issue I'm having is that when I try and install a user service using installutil.exe it asks for a username and password now I've tried my own credentials (I have an admin and non admin account) but it isn't having any of it plus I want the user to change depending on the person logging on and not to be fixed. Is there any way to do this?</p> http://stackoverflow.com/questions/1717453/why-might-the-net-framework-v2-0-be-trying-to-mess-with-the-internet-explorer 2 Why might the .NET framework (V2.0) be trying to mess with the Internet Explorer registry? Richard J Foster 2009-11-11T19:22:23Z 2009-11-11T19:56:41Z <p>One of our applications recently got installed in a system that is tightly locked down.</p> <p>On startup, the application tries to modify the registry at HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\AutoDetect. There are no known references to that location in the source code. In fact the application in question should not be making <em>any</em> modifications to the registry.</p> <p>Can anyone suggest what might be wrong with the application which would cause it (or the .NET framework) to access the registry in this way?</p> http://stackoverflow.com/questions/1205585/how-to-write-a-registry-entry-on-uninstallation-using-wix 1 How to write a registry entry on uninstallation using wix Wamiq Ansari 2009-07-30T09:50:59Z 2009-11-11T14:00:04Z <p>Hi,</p> <p>Is it possible to write to windows registry during uninstallation of an application? Is such functionality supported by Wix. I want to avoid doing it in an assembly and calling the function using custom actions. However, I would not mind creating an in-script custom action.</p> <p>Regards,</p> <p>Wamiq</p> http://stackoverflow.com/questions/1558836/how-to-share-windows-registry-on-remote-machine 0 How to share windows registry on remote machine? unknown (google) 2009-10-13T08:13:26Z 2009-11-09T13:51:55Z <p>Hello, Is it possible to share windows registry on remote machine? Or we can keep in synch two machines windows registry.</p> <p>Please help..</p> <ul> <li>Kartik</li> </ul> http://stackoverflow.com/questions/1689903/windows-7-c-excel-add-in-registry-getvalue-is-always-returning-null 0 Windows 7 - C# Excel Add-In - Registry.GetValue is always returning null nickfranceschina 2009-11-06T19:44:07Z 2009-11-06T21:24:04Z <p>I don't know what's going on here... but the Microsoft.Win32.Registry class is returning all kinds of strange stuff. When I say GetSubKeys it returns a bunch of things that aren't there in regedit (for example, I call Registry.LocalMachine.OpenSubKey("SOFTWARE").SubKeyCount and it returns "81"... but there are only 30 keys when I view it using regedit)</p> <p>when I try to get the value of something it always returns null.</p> <p>I have gone through the registry and set permissions on various keys to everyone:full just to test, but still nothing.</p> <p>am I missing something? I did just upgrade to Windows7 Ultimate from a Vista Ultimate machine... </p> <p>??</p> http://stackoverflow.com/questions/313991/c-net-importing-a-registry-hive-and-parsing-its-contents 1 C#.NET Importing a registry hive and parsing its contents chiefy 2008-11-24T11:59:50Z 2009-11-06T14:49:52Z <p>I have been given a .Hive file from a registry which i have to parse and use the contents as part of a html report(from this i assume i have to convert to text somehow). The whole thing must be done within the program so i cant just convert the hive file and then run it through my program. I currently have no idea how to even start this so any help on this would be great. </p> <p>Any ideas would be fantastic!</p> http://stackoverflow.com/questions/1686457/windows-run-regkey-and-rdp 1 Windows Run regkey and RDP Prashant 2009-11-06T09:29:53Z 2009-11-06T09:43:08Z <p>Is there any difference in behavior of HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run registry key, when an user Logs in via console and/or does a RDP to the Machine.</p> <p>I have a exe listed in Run key to be launched when somebody logs in. If I log in to a Win 2003 machine via console the exe is launched, keeping this session open if I do an RDP I get another session but this time the exe is not launched.</p> http://stackoverflow.com/questions/1684657/access-all-registry-keys-as-administrator-permission-exception 0 Access all registry keys as Administrator (permission exception) lajos 2009-11-06T00:39:32Z 2009-11-06T00:42:55Z <p>I'm traversing the registry on Windows 7 from C#. When opening certain subkeys, I get a SecurityException:</p> <p><code>Requested registry access is not allowed.</code></p> <p>An example is "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer".</p> <p>I've searched similar questions and found suggestions to run Visual Studio with Administrator privileges. I tried that and also tried running the build as Administrator, but I still get SecurityExceptions.</p> <p>Is there a way to get full access to the registry from C#?</p>