Possible Duplicate:
Windows 7 Administrator Command Prompt “Start in” Path

I have it set to c:\myfolder. If i click Start->Command Prompt it opens a console window started at c:\myfolder.

If i use Ctrl+Shift+click (start a program w/ administrative rights) to start Command Prompt, it opens to c:\windows\system32.

Why? And how to fix this?

link|improve this question
Giscard - Refer to answer provided by Molly - superuser.com/questions/87398/… – Sathya Jan 4 '10 at 12:27
duplicate: superuser.com/questions/87398/… – quack quixote Jan 4 '10 at 12:34
feedback

closed as exact duplicate by Sathya, quack quixote, Diago Jan 4 '10 at 13:02

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

only if you change the default startup directory for the command prompt globabally, so it will always start in this directory:

  • Click Start, Run and type Regedit.exe
  • Navigate to the following branch:

HKEY_CURRENT_USER \ Software \ Microsoft \ Command Processor

  • In the right-pane, double-click Autorun and set the startup folder path as its data, preceded by "CD /d ". If Autorun value is missing, you need to create one, of type REG_EXPAND_SZ or REG_SZ in the above location.

alternatively you may add this option to your contect menu:

Launch an elevated Command Prompt from the context menu

To add the Open Command Window Here (Administrator) option to the context menu for file system folders, use the following REG file:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\shell\runas]
@="Open Command Window Here (Administrator)"

[HKEY_CLASSES_ROOT\Directory\shell\runas\command]
@="cmd.exe /s /k pushd \"%V\""

To add the entry to Computer (My Computer) context menu, use the following REG file:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\runas]
@="Open Command Prompt (Administrator)"

[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\runas\command]
@="cmd.exe"

Usage

Copy the above contents to Notepad, and save the file with .REG extension. Then right-click the REG file and choose Merge.

Source

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.