The Windows Registry is a database where configuration settings for hardware, software and the Windows operating system itself are saved.
0
votes
0answers
8 views
CMake find_package(PythonLibs) not working
I am trying to use Python.h in a C++ project compiled with g++. I am using CMake to generate proper include/lib links. I am using the built-in feature
find_package(PythonLibs REQUIRED)
but cannot ...
0
votes
1answer
29 views
Check if Visual C++ 2010 is installed - No Work
For my program, I want it to check if Visual C++ is already installed and from a little bit of Googling, I can check if they are installed by checking the registry key as stated here:
...
0
votes
1answer
13 views
How to find Active Directory container from registry
I am looking for a way to retrieve a computers Active Directory container from the registry stored on that same machine. Is there any registry key in Windows that would contain the full LDAP path for ...
0
votes
0answers
5 views
Setting Chrome as Default Browser with regedit [closed]
I'm trying to set Chrome as the defacto default browser on a computer where I don't have administrative privileges. Hence, I'm using the registry editor. (Standard solutions like setting it through ...
2
votes
1answer
47 views
Catch opening of file if there's no program to open it
my code
var info = new ProcessStartInfo(path);
info.WorkingDirectory = path;
info.WindowStyle = ProcessWindowStyle.Maximized;
var p = Process.Start(info);
it will open a file (.pdf, but could be ...
0
votes
0answers
22 views
Is there a setting to control the timeout for 'Application Recovery and Restart'
I wanted to know, if a setting i.e. registry key exists to control the time-out that is used in the Application Recovery and Restart. To clarify by time-out, I'm referring to the 60 seconds mentioned ...
0
votes
1answer
22 views
Why can't I programatically replace perfc009.dat in windows 7?
We have an application that uses the Windows 7 performance counters to track the total CPU usage. Every so often the registry at HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows ...
0
votes
1answer
32 views
QT auto start aplication with OS
I have a problem with this operation only in windows 8.
here is the code which work in other Windwos OS (Win7/Vista/XP)
#ifdef Q_WS_WIN
QSettings ...
0
votes
0answers
7 views
How to disable HID device in registry?
Is there a way to disable/enable the "HID-compliant game controller" in the registry?
Or, any other programmatic way to do it?
If I manually do DeviceManager>machine>Human Interface ...
0
votes
1answer
21 views
Contextual menu entry - struggling with command
I'd like to be able to right click on a computer in the Windows Network and connect to it using VNC. I made the registry entries in
...
0
votes
3answers
30 views
RegEnumValue and REG_MULTI_SZ type
MSDN says about string data got by RegEnumValue that
If the data has the REG_SZ, REG_MULTI_SZ or REG_EXPAND_SZ type, the
string may not have been stored with the proper null-terminating
...
0
votes
1answer
18 views
Recommended registry key or value locations
I will be writing some sensitive information into the registry under HKLM\Software and HKCU\Software. This information is managed by a shared/common library and is not specific to a particular ...
0
votes
2answers
32 views
How to modify a reg_expand_sz value from command prompt?
I am trying to edit an existing registry key from a .reg file. I want to change the vaue of the key, which is a reg_expand_sz value to a different one (the value is a file path). I tried doing it like ...
0
votes
0answers
28 views
Python - List all Values in a registry Key
I would like to loop through all Values in the Windows Registry.
The goal is to delete all keys that have 'xxx' values.
I do this:
def DirRecur(dir):
aReg = ...
1
vote
2answers
54 views
Java System.getProperty(“user.home”) directory missing separator
Whenever a user enters "~" as an argument, my program replaces it with System.getProperty("user.home").
After debugging, I see that this replaces "~" with "C:UsersSoulBeaver" and not ...
0
votes
2answers
77 views
Why does RegSetValueEx work even when I break the rule about accounting for NUL termination in the length?
I've got a simple program that adds calc.exe to startup:
#include <windows.h>
#include <tchar.h>
int main(){
_tprintf(TEXT("Adding calc.exe to ...
0
votes
1answer
37 views
Unable to write registry in custom action of MSI installer
I have an MSI installer that installs my Windows Service and in my custom actions I need to write some values into the Registry in the HKEY_LOCAL_MACHINE/SOFTWARE/MYSoftware key.
I am trying to do ...
0
votes
0answers
27 views
Why does Python WMI GetBinaryValue return nothing when trying to get binary value in registry?
I am trying to retrieve values for certain registry subkeys and have not been able return values which are binary. I can use the getStringValue and EnumKey methods to retrieve information but for some ...
0
votes
0answers
10 views
Can I Read a key of Registry in DriverEntry?
I am writing a file system filter driver to forbid invalid file accessing. As a junior, I use the example provided by MS which is called Sfilter. Although it's a little old, while well basic.
My ...
-3
votes
0answers
25 views
Still possible to hide registry keys in Windows 7 [duplicate]
Is it still possible to hide registry keys in Windows 7? I have looked at http://www.codeproject.com/Articles/14508/Registry-Manipulation-Using-NT-Native-APIs?msg=2251094#xx2251094xx and reghide from ...
0
votes
1answer
34 views
Disable Fast user switching in vista and 7 without admin rights?
i'm writing a security program for vista and 7 (Right now my main os i'm using is 08 server which i'm testing it on as well) and I would like to block the fast user switching option from within ...
0
votes
1answer
32 views
Requirement for exposing a COM Object
In powershell, when using new-object to instantiate, or get a reference to (or whatever you want to call it), a COM object I recall that the COM object needed to have a certain property to be able to ...
0
votes
0answers
22 views
Access CurrentUser Registry Key for Impersonated User - Compatibility with .NET 3.5
I've recently written an application that impersonate user account, get a handle to CURRENT_USER registry key (using PInvoke "LoadUserProfile" to retrieve ProfileInfo.hProfile object) and create ...
0
votes
1answer
28 views
I need to create a logon script that adds two registry keys with the following values (P+IPAddress) & (S+IPAddress)
I need to create a logon script that lists the following values for each PC
(P+IPAddress) & (S+IPAddress), I managed to create the following .reg file:
HKEY_CURRENT_USER\Serial Numbers
...
0
votes
1answer
22 views
Registry path to find ALL the installed applications
I have a fast question:
IS there any other places in the registry but this:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
...
0
votes
0answers
13 views
What's the difference in how users are used between IIS 6 an later versions of IIS
I'm running into a problem with a WCF web services application I've developed.
I developed the application on IIS 7.5 and in the application, I use Registry.CurrentUser to retrieve the value of a ...
0
votes
0answers
13 views
Windows 7 XML File Context Menu
I am attempting to add a context menu for an XML file type and having some difficulties. On another Windows 7 machine, the registry key entry that I am using works correctly.
Specifically, I am ...
0
votes
2answers
37 views
Invalid/Foreign characters in value fetched from registry
I have an installer created using Installshield 2012 that depends greatly on the value of a Registry key written by some other application developed in-house.
I use RegDBGetKeyValueEx Installscript ...
0
votes
1answer
38 views
Silverlight 5 Trusted Application EnumKeys StdRegProv keeps getting Type Mismatch
I have a signed, trusted application in Silverlight 5 (and know its working correctly and AutomationFactory is enabled). However, no matter what I do, I get a COM exception of type mismatch, which is ...
-1
votes
1answer
38 views
Trying to install a Dll from legacy win 2003 server to 2008r2 server and failing
I'm moving a legacy application from a windows 2003 32 bit IIS 6 server to a windows 2008 r2 IIS 7.5 server.
Ultimately, I'm getting a Server.CreateObject(customobject) failed on the app.
...
0
votes
0answers
47 views
How can i add registry key with c++ on HKEY_LOCAL_MACHINE [duplicate]
i try add a key in HKEY_LOCAL_MACHINE but everything work without any problems and didn`t add my key but when i change HKEY_LOCAL_MACHINE to HKEY_CURRENT_USER, the code works fine and added my key in ...
1
vote
4answers
49 views
How to retrieve the value from registry?
I want to retrieve the value from registry. For example like: HKEY_LOCAL_MACHINE\SOFTWARE\Manufacturer's name\Application name\InstallInfo
Under the 'InstallInfo' there are so many variables, like
...
-1
votes
0answers
32 views
Change display language for all users [closed]
var key = Registry.CurrentUser.OpenSubKey(@"Control Panel\Desktop", true);
key.SetValue("PreferredUILanguagesPending", language, RegistryValueKind.MultiString);
Hi all,
As I know, the code above ...
0
votes
0answers
24 views
Changing assembly download location
I am trying to change HKCU\Software\Microsoft\Fusion\DownloadCacheLocation to another location (due to security reasons), but whenever my web app downloads assemblies the entry in registry gets ...
-1
votes
0answers
9 views
How do I enable Save As in an Outlook 2010 Message? [closed]
In Outlook 2010, I cannot save any message as an Outlook Template. Do I need to change a registry entry?
0
votes
0answers
22 views
Visual Basic - Check To See If Program Can Edit Registry
I am working on a Visual Basic 2008 program that has to edit the computer's registry, but I want to add a way for the program to check to see if it has permission to edit the registry, and if it ...
0
votes
0answers
13 views
Askpath value to registry key or app configuration file (app xml)
In my app I use 2 network locations to read and write files (one for reading, the other for writing). This locations should be configured in install process. So I need to add 2 askpath dialogs in ...
-1
votes
0answers
13 views
DownloadCacheLocation gets overwritten [closed]
I am trying to change HKCU\Software\Microsoft\Fusion\DownloadCacheLocation to another location (due to security reasons), but whenever my web app downloads assemblies the entry in registry gets ...
0
votes
1answer
75 views
Check if application is installed in registry
Right now I use this to list all the applications listed in the registry for 32bit & 64.
I have seen the other examples of how to check if an application is installed without any luck.
...
1
vote
1answer
26 views
QueryDWORDValue returns 0
I am using CRegKey to retreive a DWORD value from registry. The code below returns 0 (buf is zero), but the actual value in registry is 1354357483.
CRegKey reg;
reg.Open(HKEY_LOCAL_MACHINE, ...
0
votes
1answer
60 views
How to pop up message when user accesses facebook.com [closed]
In the company I work there is a general computer that I need to notify users not to enter to a specific website, for example: facebook.com (this is just an example).
How it should work:
when the ...
0
votes
1answer
59 views
custom pop up message when usb device is plugged in (Windows 7)
I know a little bit about programming. I wanted to know if there was a way to get a message box pop up every time someone plugs in a usb drive saying something like "is this an approved device?" . I ...
0
votes
0answers
12 views
C++ : Registry Keyerror pertaining to function returning success upon failure
I have been having an error recently that isnt really labeled an error but is theoretically.
I have been using the regopenkey function to try and establish access to a registry key in the ...
0
votes
0answers
40 views
C# disable TaskManager for localmachine [duplicate]
I would like to disable the TaskManager with my C# app using Registery Key, NOT with HKEY_CURRENT_USER but with HKEY_LOCAL_MACHINE.
This is one of the things I have tried:
string subKey = ...
1
vote
2answers
45 views
More succinct way of getting a registry value as a string than (Get-ItemProperty $key $valueName)._VALUENAME_?
The method for getting a value in a registry key from PowerShell is Get-ItemProperty HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion CommonFilesDir. This returns extra properties I don't usually want:
...
0
votes
1answer
38 views
How to export a registry in c#
I have been trying to export and save registry files to an arbitrary location, the code is running. However, on specifying the path and saving, the function does not work and no registry is exported. ...
0
votes
2answers
34 views
Deny user permissions to reg value?
I'm trying to make a basic trial period method to my application adding a invisible reg key and also denying the user to delete that value but I don't know how to deny user permission like ...
1
vote
2answers
50 views
vbs registry backup working in win7, but not in xp
I'm writing a VBScript to make some registry changes, so before I make the changes, I try to backup the registry to a file. This works fine in my Win7 64bit, but when I try to run it in WinXP 32 bit ...
0
votes
0answers
32 views
Class alias vs Variable class name
I'm creating my own PHP framework (for the learning experience), and I can't decide which of these would be a better practice.
Create a Registry class that has the name of every class. Other classes ...
2
votes
2answers
126 views
Memory allocation of (key, value) pair structure, and reading from the registry
I want to make a program, which collects some information from the Windows registry and then to save it to a file. However I´m having problems by collecting the information. I would like to store an ...


