The Windows Registry is a database where configuration settings for hardware, software and the Windows operating system itself are saved.
1
vote
0answers
36 views
reg query; Windows 7 vs Windows XP [migrated]
I can run the following reg query command in Windows 7 and get the following results:
command-
Reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall /s /f "EMC Avamar for Windows"
...
0
votes
1answer
24 views
Registry key length - or what is it?
So i was using ProcessMonitor (the famous tool by Sysinternals) and i have an entry with the operation "RegQueryKey" which results in.
"Buffer Overflow" and Detail as : "Query: Full, Length :176"
...
-1
votes
0answers
7 views
APNIC Database Access API [closed]
I have been given a piece of software the looks at the ARIN database and compares it to an internal database. My task is to add APNIC support.
I have been looking all over the web for an API/ full ...
1
vote
1answer
23 views
Mount other users hive with C# .net
I'm writing an application that will write some registry key for every selected user.
I was wondering if there was a proper way to mount another user's hive to write in it.
At the moment, I'm using ...
1
vote
1answer
25 views
Setting a REG-BINARY value for a key in the Registry. - Visual Basic
I am creating a tool to change a key in the Registry. The RegistryKey I want to set is a REG_BINARY and what I want it to change to is a textbox-entry.
So in this case, the formatting of the key i ...
0
votes
2answers
26 views
Remote Registry using Enter-PSSession
I am trying to read strings in a remote registry. When I run the script I am working on, it connects to the workstation in the list, but it only reads the local computer when running, not the remote. ...
0
votes
0answers
5 views
Changing the altitude of Procmon minifilter still does not show activity
I just start to dig into a new legacy product that i am working on. The product uses file system and registry redirection.
I thought i would be able to run Procmon and see what is happening under ...
-2
votes
1answer
39 views
How to store current time in registry?
Is there a way I can store time in registry? I am using MFC and working with CTime objects (which allows me to use CTimeSpan to calculate time difference) but any c++ solution would be great.
0
votes
2answers
15 views
Registry editing using CMD , Path isn't added
lets start by giving you my code:
@echo off
echo.Add App Shortcut for use with
echo.Windows+R
echo.A.K.A Windows "RUN" Command
echo.===========================
color 0E
echo.Make Sure you do not run ...
0
votes
1answer
24 views
Registry Update via Batch File Issue
So I have created a batch file that is to check certain registry settings for Internet Explorer and set them accordingly. Web history is the primary target. The dilemma is that I can get the batch ...
0
votes
0answers
14 views
COM object (DLL) compiled in VB not accesible from python (accesible from VB)
I create dll in VB and register it into the registry for COM interoperations.
It is in regedit with its ProgID - perfect.
I run it from another project ( CreateObject("ProgID") ) - works - Perfect. ...
0
votes
0answers
58 views
Programmatically edit the BCD store on Windows 8?
On Windows Vista+ the BCD boot data is stored in the registry under HKEY_LOCAL_MACHINE\BCD00000000. The BCDEDIT command line tool just presents that data in a readable fashion.
So, theoretically, ...
0
votes
2answers
39 views
c# set a program to launch at startup using registry and a checkbox to modify the option
I know how to tell the registy to run my app on startup.
There are a lot of threads about it.
I used this one:
How do I set a program to launch at startup.
The problem I face is:
I give the user the ...
0
votes
2answers
106 views
How to add application in “Open with…” section of system menu in Windows 7?
Real problem and question is:
How to add key in Registry hive "HKEY_CLASSES_ROOT" in Windows 7?
I know where to create the key, but it can be achieved only when I run program as an administrator. Or ...
0
votes
2answers
20 views
Writing to users policy registry key
I want to be able to write values into a users policy key located in HKEY_CURRENT_USER\Software\Policies\ - but this location can only be written to by an admin user.
I have both an application ...
0
votes
0answers
16 views
Adding conditional registry entries with InstallShield Limited Edition?
In the old .vdproj projects I could set the Condition property of a key or value when adding registry entries -but I don't see the same kind of options with InstallShield Limited Edition. I've done ...
0
votes
1answer
15 views
Get domain join date of Windows Server 2008 (R2) machine?
Is there a record on a Windows Server 2008 (r2) machine where i can find out when the machine has joined it's domain?
Somewhere in the registry? Or a COM object?
0
votes
3answers
19 views
What arguments are passed to msiexec on uninstall
I know this information exists but I'm really struggling to find a source.
Where can I find what selecting "remove", from add/remove programs, passes as arguments to msiexec to uninstall the ...
0
votes
0answers
28 views
Windows shell extension tutorial won't add CLSID to registry
Context & What I've Done
I am attempting to learn how to write shell extensions for Windows, however the process isn't very well documented and information for beginners is scarce. From what ...
0
votes
0answers
13 views
WMI Performace Counter classes edit
After researching for hours and couldnt find a clear answer I would like your help in changing a performace counter WMI class (e.g. Win32_PerfRawData_[...]), to be exact - adding a key qualifier to a ...
0
votes
1answer
27 views
How to delete a registry key only if it has no values or subkeys using a *.bat file?
Problem is that I want to delete registry key only if no subkeys or values are present and I want to accomplish this using *.bat file. I have not found any viable solution. Anyone has any ideas?
0
votes
2answers
52 views
Common registry area for x32 and x64
I need to find a location in the registry that is common to both the x32 (windows xp), and x64 (Windows 7).
The x32 (c++) application writes an encrypted string to the registry, and the x64 (c#) ...
0
votes
1answer
40 views
RegQueryInfoKey not giving registry key name text
Using the RegQueryInfoKey as in the example available on http://msdn.microsoft.com/en-us/library/windows/desktop/ms724256(v=vs.85).aspx, doesn't give me the registry folder name in the output ...
2
votes
0answers
22 views
RegistryKey.CreateSubKey throws IOException randomly
We have an application deployed in the office, and, on only one out of fifteen machines, it will sometimes throw a System.IO.IOException with the message An internal error occurred. at this piece of ...
0
votes
0answers
10 views
Windows stops booting while EXE in runonce is active
I have written an MFC app (executable) that performs some tasks, and which is started via "Runonce" in Windows 7 registry.
My problem is that windows, or especially windows explorer does not boot ...
1
vote
0answers
24 views
what is difference between StartupFolder and registry key
I want to add my program to autostart. And see 2 ways to do it:
Add registry key to HKCU\Software\Microsoft\Windows\CurrentVersion\Run
Add program to Startup.
Which way is more appropriate and ...
0
votes
0answers
11 views
batch find reg key string and do a specific action
could someone help me out with something i'd like to do perhaps?
i'd like a batch scrip to find a specific key in registry and if that one exists import specific additional entries.
ie.
if this reg ...
0
votes
1answer
42 views
Setting InstallShield INSTALLDIR from registry
I'm working on a Basic MSI project in InstallShield 2012 Pro.
I'm trying to set the INSTALLDIR property with the value of a registry key with no success.
I've tried to set the property with the ...
2
votes
1answer
78 views
How to check if a registry key exists
I don't know wheres my mistake. It always jumps to the else branch, but the key exist, I checked it several times.
var
reg : TRegistry;
begin
with TRegistry.Create do try
...
0
votes
1answer
32 views
Wix:How Can I Create Shortcut Without Registry
In our project, we are going to remove registry entries to make non-admin users able to install it.
Our current code is as follow, I tried to comment out the section from the XML file but failed.
...
1
vote
3answers
48 views
C# P/Invoke Win32 function RegQueryInfoKey
I am trying to port the following C++ code:
BOOL SyskeyGetClassBytes(HKEY hKeyReg,LPSTR keyName,LPSTR valueName,LPBYTE classBytes) {
HKEY hKey,hSubKey;
DWORD dwDisposition=0,classSize;
BYTE ...
1
vote
1answer
55 views
How can I clean my registry from VB6 compile entries? [closed]
Arvo's answer to my question here, where he points out that every compile polutes the registry prompts me to ask
Is there a way I can clean out my registry of entries created by compile and builds?
2
votes
2answers
34 views
Reading registry keys using WMI
I am trying to read the registry key by using WMI. I have tried with following code but i am unable to get the registry key value.
Can anyone help me regarding this problem.
ConnectionOptions oConn ...
0
votes
1answer
16 views
Initialize array of HKEY correctly
How to effectively initialize array of HKEY?
Consider the following code snippet
HKEY hkey[2];
for(int i = 0 ; i < 2 ; i++)
LONG reval = RegOpenKeyEx(/* parameters */,&hkey[i]);
...
-1
votes
0answers
27 views
Camel under websphere : Cannot auto create component : sql
Hello dear Camel/websphere specialists
I am moving code (that run fine) with the eclipse maven plugin into websphere. It seems I do have a config problem with the camel sql component, entry in the ...
0
votes
0answers
9 views
how does chromium browser set registry value during installation?
I am working on a new browser based on chromium source code but in the chrome code they are setting the Display icon in
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall\google
...
0
votes
0answers
19 views
Example for the context menu of desktop with Radio switch type in Win7
everyone!
I want to add some items to the context menu(Right-Click menu)on desktop in Win7.
I have modified the registry like this:
HKEY_CLASSES_ROOT
DesktopBackground
Shell
Switch PowerPlan
...
0
votes
0answers
36 views
adding registry key for Windows local SYSTEM user
I am somewhat new to Registry Keys in Windows. What I want to do is add a registry key ONCE that will take effect on the local SYSTEM user (for as long as my program is installed). This registry key ...
-1
votes
0answers
5 views
VC++ testing RegSaveW results with Messagebox
Hi how does one test the output of RegSaveKeyW() with Messageboxes?
ScopedPriviledge takes the SE_BACKUP_NAME privilege, and applies it to the rest of the code, this has been tested and works fine.
...
0
votes
0answers
64 views
How to can work with conditions in prerequisite InstallShield 2010?
I want to install SQL server express r2 2008 in install shield 2010 and one of that requirements is power shell 1.0.the problem is windows power shell is not in default prerequisite install shield ...
1
vote
1answer
75 views
Get registry value using C#
I am not able to retrieve a software's Installdir. I have tried GetValue and even OpenSubKey but everytime I get a NULL. I am using VS2008, .Net 3.5, 64bit machine, 32bit process setting.
private ...
0
votes
0answers
44 views
How to query WSO2 UDDI registry (of Governance registry) via UDDI webservice?
Following the instructions here for how to query the UDDI registry of WSO2 Governance Registry. However, when I use the webservice 'find_service' or 'find_business' from the wsdl ...
-3
votes
1answer
73 views
Application running successfully on development machine but crashing on another machine [closed]
In the event log i am getting following line, could someone please help me for this.
Event Type: Error
Event Source: .NET Runtime
Event Category: None
Event ID: 1026
Date: 01/06/2013
Time: ...
0
votes
0answers
21 views
Delete registry key using batch file [closed]
I need a batch file to delete a registry key
Eg: HKLM\Software\Microsoft\CurrentVersion\Run\persistence .
I use reg delete, however it did not delete.
0
votes
1answer
32 views
Batch to change Mac Address Windows XP Pro
Hey guys I need to know how to change the MAC Address of my pc, I know that it has something to do with the registry and I dont like to dig into that to much, reason being, if something is messed up ...
0
votes
1answer
57 views
Adding Custom Protocol in Registry Editor for MikroTik Winbox
I have a small windows application called Winbox (It's a tiny application to control RouterBoard).
We are making a web application which needed to make a custom protocol URL like :
...
0
votes
1answer
26 views
Removing HKEY_CURRENT_USER Registyr Entries (uninstall)
Does anyone know how to remove the HKEY_CURRENT_USER registry keys for all users on Windows 7? I need to remove all of the registry keys for our product during uninstall. There could be many users ...
1
vote
2answers
52 views
Windows: Changing the name/icon of an application associated with a file type
I would like to associate a file type in Windows with a particular application, but I need to make it so when the user opens the "Open With" menu, the name and icon of the application in the list is ...
0
votes
2answers
55 views
I do not see registry key even though GetLastError returns all 0
I try to make file dropper and launch at startup but then it DOES start up correctly but when i navigate to said key using regedit i cannot see it? What is up with that? All error codes return 0.....
...
-1
votes
1answer
33 views
RegistryCallback and RegCreateKeyEx
I am monitoring some windows machine. I am running some windows service i was writing and my purpose is to get notification when process on the system tries to create a not existing registry keys.
...



