This seems to be a problem discussed in the Windows section.
Union site: www.cn-dos.net Forum site: www.cn-dos.net/forum
DOS stands for freedom, openness and progress. Let us work hard, learn from the openness and GNU spirit of FreeDOS and Linux, and together build and grow a free GNU GPL world!
REGEDIT4
@="Check Disk with CHKDSK(&K)"
@="cmd.exe /k color 0b&CHKDSK.exe&color 0e&echo.&echo Check completed, press any key to exit...&pause>nul&exit"
Originally posted by pengfei at 2006-9-29 07:29:
After adding the right-click menu item, the first character has an underline. Is there any way for the moderator to remove it?
REGEDIT4
@="Command Prompt"
@="cmd.exe /k \"cd %L\""
@="Command Prompt"
@="cmd.exe /k \"cd %L\""
REGEDIT4
@="Services(&F)..."
"SuppressionPolicy"=dword:4000003c
@=hex(2):25,00,77,00,69,00,6e,00,64,00,69,00,72,00,25,00,5c,00,73,00,79,00,73, 00,74,00,65,00,6d,00,33,00,32,00,5c,00,6d,00,6d,00,63,00,2e,00,65,00,78,00, 65,00,20,00,2f,00,73,00,20,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52, 00,6f,00,6f,00,74,00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00, 32,00,5c,00,73,00,65,00,72,00,76,00,69,00,63,00,65,00,73,00,2e,00,6d,00,73, 00,63,00,20,00,2f,00,73,00,00,00
@="Manage(&G)..."
"SuppressionPolicy"=dword:4000003c
@=hex(2):25,00,77,00,69,00,6e,00,64,00,69,00,72,00,25,00,5c,00,73,00,79,00,73,\
00,74,00,65,00,6d,00,33,00,32,00,5c,00,6d,00,6d,00,63,00,2e,00,65,00,78,00,\
65,00,20,00,2f,00,73,00,20,00,25,00,77,00,69,00,6e,00,64,00,69,00,72,00,25,\
00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,63,00,6f,00,\
6d,00,70,00,6d,00,67,00,6d,00,74,00,2e,00,6d,00,73,00,63,00,00,00
@="Control(&C)..."
@="rundll32.exe shell32.dll,Control_RunDLL"
@="Devices(&W)..."
@="mmc.exe %%SYSTEMDRIVE%%\\WINDOWS\\SYSTEM32\\devmgmt.msc"
@="Policies(&Z)..."
@="mmc.exe %%SYSTEMDRIVE%%\\WINDOWS\\SYSTEM32\\gpedit.msc"
Originally posted by 3742668 at 2006-9-30 12:56:
Windows Registry Editor Version 5.00
...
Originally posted by pengfei at 2006-9-29 07:29:
After adding the right-click menu item, the first character has an underline. Is there any way for the moderator to remove it?
Windows Registry Editor Version 5.00
@="Open with cmd"
@="c:\\windows\\system32\\cmd.exe %1"Originally posted by qwe1234567 at 2006-10-1 03:59:
It can be done! The first character below has no underline!
Windows Registry Editor Version 5.00
@="用cmd打开"
@="c:\\windows\\system32\\cmd.exe %1"
Originally posted by flying008 at 2006-9-30 21:16:
You all great guys and moderators are really beyond reach... My admiration for you is like a continuous torrent of water!...
Another question, how to use batch processing to add "Inverse Selection" and "Select All" two items in the right-click menu in Windows Explorer? It is required to be available for both files and folders. This is quite practical.
Moderator 3742668, this is actually a misinformation on the internet. Although adding copy and move to folder is convenient, friends who like listening to music are in trouble....
How to use batch processing to add two items "Inverse Selection" and "Select All" in the mouse right-click menu in Windows Explorer? It should be available for both files and folders, which is quite practical...
1. Save the following script as *.reg and import it.
Windows Registry Editor Version 5.00
@="Select All(&z)"
@="wscript.exe d:\\Select_All.vbs"
2. Keep the following code as d:\Script.vbs
CreateObject("WScript.shell").SendKeys "^a"
Due to time constraints, I didn't complete the two scripts with one batch processing. You can figure it out yourself.
1. Registry part:
Windows Registry Editor Version 5.00
@="Inverse Selection(&x)"
@="wscript.exe d:\\Inverse_Selection.vbs"
2. VBS part:
With CreateObject("WScript.shell")
.SendKeys "%e"
Wscript.Sleep 500
.SendKeys "i"
End With