Tagged Questions
1
vote
2answers
166 views
Removal of admin rights from each desktop using C# .NET
How should i remove admin rights for each desktop user on Win XP, Win Vista and Win 7 programmatically using C# .NET ?
1
vote
2answers
173 views
Receiving arguments from Windows Context menu
I have done this before but for the life of me can't remember how to do this...
In my explorer context menu I added a new entry (go to regedit...go to HKEY_CLASSES_ROOT...bla bla bla)... Now when i ...
1
vote
4answers
873 views
Regedit file format
I would like to document the file format of regedit utility, so data can be merged into the registry.
From the command-line you can (silently) merge data from a batch file like this:
regedit /s ...
0
votes
0answers
22 views
Plesk doesn't detect multiple PHP versions [closed]
I have installed two PHP versions on my Windows Server 2008 R2 box.
The paths of the installations are:
C:\Program Files (x86)\Parallels\Plesk\Additional\PleskPHP5 (5.3 version)
C:\Program ...
0
votes
0answers
39 views
How to change or remove Screen Resolution from context menu on desktop?
I want to remove context menu shortcut key "c" that is running "Screen Resolution" when i press right click on desktop (not on any file, folder, just righnt click to empty desktop space). Reason for ...
0
votes
0answers
16 views
How to get performance configurations values via Regedit (windows 2003)
Is it possible to get what was set in performance configurations via regedit?
I want to know what was set for the following configurations:
System Properties->Advanced tab->Performance->Advanced ...
0
votes
2answers
42 views
If StartMenuInternet is not set, where else can I look for the default browser?
key = Registry.CurrentUser.OpenSubKey(@"Software\Clients\StartMenuInternet", false);
if (key == null)
{
key = Registry.LocalMachine.OpenSubKey(@"Software\Clients\StartMenuInternet", false);
}
On ...
0
votes
0answers
106 views
What are Windows configuration files (text files and binary files)? [closed]
I want to know about Windows configuration files.
In my opinion: the .INI files (in WindowsNT) and config.sys, autoexec.bat(in Windows 3.x) are text configuration files.
Registry (in WindowsNT, ...
0
votes
1answer
109 views
Rclick menuext fails with internet explorer
i'm trying to get the url and title of any website with this javascript we wrote. i made the javascript in a .HTM and get it from out my regedit in the menuExt. like file://C:\Users\lala\script.htm
...
0
votes
3answers
168 views
Copy as path in windows context menu
I'm trying to implement "Copy as path" option in windows context menu ,which copies current file or folder path to clip board
instead of installing a software for this , i would like to implement it ...
0
votes
3answers
393 views
add shortcut to my program when right click
Im not sure what the exact term should i called. I want to add shortcut to my C# program when i right click in windows.
From my findings, it got something to do with configure the "regedit". I have ...