; CmdPromptHere ; ------------- ; Creates a registry entry to add a Command Prompt item to the ; right click context menu. Note use of Script winver command ; to determine the Windows family version and sysdir to get ; the windows system directory. ; report on setvar A,HKCR\Folder\shell\Command Prompt makekey %A\command winver C,F sysdir D setvar B,%D\command.com ifvar F,9X,doreg setvar B,%D\cmd.exe /k :doreg setreg %A\command\(default),s,%B iferror error msgbox Command Prompt Here,Registry setting stored successfully,0,C goto end :error msgbox Problem,Unable to change registry settings,0 :end