/* Adds a Command Prompt Here command to the Windows Explorer system menu. If a user selects
* Command Prompt Here from the system menu, a command window will be displayed, open to
* the same folder as the current Windows Explorer folder
*/
objshell = createcomobject("WScript.Shell")
objshell~regwrite("HKCR\Folder\Shell\MenuText\Command\", 'cmd.exe /k cd "%1"')
objshell~regwrite("HKCR\Folder\Shell\MenuText\", "Command Prompt Here")