|
|
Right-Click Command PromptJuly 22, 2005
Author: Shane Boudreaux - sboudrea at tulane dot edu
Description: Adds a "command prompt here" entry to the right-click context menu. Works on Windows 5.x (Win2k, XP, 2k3). Scroll down to view the script. Script Code: ' Add context menu for Right-CLick >> Command Prompt Here... Set objShell = CreateObject("WScript.Shell") objShell.RegWrite "HKCRFolderShellMenuTextCommand", "cmd.exe /k cd " & chr(34) & "%1" & chr(34) objShell.RegWrite "HKCRFolderShellMenuText", "Command Prompt Here" Disclaimer: We hope that the information in these pages is valuable to you. Your use of the information contained in these pages, however, is at your sole risk. All information on these pages is provided "as - is", without any warranty, whether express or implied, of its accuracy, completeness, fitness for a particular purpose, title or non-infringement, and none of the third-party products or information mentioned in the work are authored, recommended, supported or guaranteed by me. I shall not be liable for any damages you may sustain by using this information, whether direct, indirect, special, incidental or consequential, even if it has been advised of the possibility of such damages.
|
|