|
How do I see what files/registry keys are being accessed by my application in Windows?
Started by HeavyWave on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Check out Process Monitor at
http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx.
Check out process explorer: http://technet.microsoft.com/de-de/sysinternals/bb896653.aspx
If it actually is 'your' application, look at the source code .
|
|
I have always swapped CapsLock and L-Ctrl . I'd like to now swap Esc with the Tilde/Backtick keys.
What Windows (XP) registry setting do I use for scancode to ensure both of those keys are appropriately swapped?
Started by Xepoch on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Keytweak is also easy to use and effective..
Customize your keyboard layout with the Microsoft Keyboard Layout Creator .
|
|
So I was browsing through my website access logs recently, and noticed several attempts to do things like this
?page=pics//?_SERVER[DOCUMENT_ROOT]= http://www.wdiet.co.kr//skin_shop/.../cms/idf.txt ??
Of course, I'm not completely stupid and this had ...
Started by Shadow on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
(And why did Jeff change that wanted....
OK, I see your edit.
The registry key?) Let me rephrase - can we find out which exact registry keys they were and what exact help if you told us what the registry key was.
|
Ask your Facebook Friends
|
In attempting to upgrade some C++ software to run in Windows 7 I have experienced some problems in being able to create registry keys from scratch.
This is my code:
// // Create a brand new registry key // LONG Registry::CreateRegister( std::string path...
Started by AndyUK on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The calling process must have KEY_CREATE_SUB_KEY access to the keySince Vista, access....
See Registry Key Security and Access Rights and RegCreateKeyEx
For parameter "hKey [in] A handle to an open registry key.
|
|
Is there a website dedicated to windows installation tips/information for programmers, like registry keys modified by different products (Office, SQL server, etc) at installation time? How to uninstall programmatically different packages, etc etc
Started by Nestor on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
To find out exactly what an installer's it easier to pinpoint registry....
In short, as far as installations go that documents all registry keys modified by products very well.
Scheme of registry keys and installation directories.
|
|
Is it possible to push out changes to the registry on a local computer from the domain policy? Or does a special script need to be written to do so?
Answer Snippets (Read the full thread at serverfault):
It's perfectly acceptable to use Group Policy to push out registry changes....
In a W2K3 domain you can only set security on registry keys via GPO, AFAIK.
You can set registry keys via GPO prefence settings in a W2K8 domain.
|
|
Hi,
Say there is a group policy that prevents the user from using the "run" command in Windows. What would happen if there was a registry key that contradicted this i.e. allowed the user to use the run command?
Would the user be able to use "run" or not...
Started by Davie on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Group policy is periodically applied to the registry so if a group policy is set to a certain setting it will change the relevant registry setting to conform to it, so in that sense group policy the run command it will only....
Precedence.
|
|
How to rename key in registry using C++?
I want rename key "Myapp\Version1" to "Myapp\Version2".
I don't see any function in MSDN about renaming keys in registry.
Started by Jasmin25 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There is no function to rename on older versions of windows, you need to copy/delete on your own AFAIK. .
If your app requires Vista or newer versions of Windows, you can use RegCopyTree () followed by RegDeleteTree () .
|
|
Couldn't access registry HKLM keys from windows xp limited/guest user accounts
public int GetEnabledStatus() { RegistryKey hklm = Registry.LocalMachine; int Res; try { RegistryKey run1 = hklm.OpenSubKey(@"Software\Microsoft\Windows\myApp", true); hkcu...
Started by Suriyan Suresh on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
As a limited user, you do GetEnabledStatus() { const int defaultStatus... .
You are opening the keys in "write" mode (2nd parameter is set to 'true').
If you only want to read the key, use the overload of OpenSubKey which takes only a string.
|
|
If I want to create the registry key
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\MyApp
with the string value
EventMessageFile : C:\Path\To\File.dll
how do I define this in my WiX 3.0 WXS file? Examples of what the XML should...
Started by Iain on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
An example would be:
<registry action="write" root"HKLM" key="SYSTEM\CurrentControlSet\Services="RegInstallDir32" Key="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\MyApp" Root with this:
<Component....
|