บันทึกการตั้งค่าเริ่มต้นไว้ที่ไหนสำหรับค่าเริ่มต้นที่พร้อมรับคำสั่ง?


20

การตั้งค่าเริ่มต้นถูกบันทึกไว้ที่ไหนสำหรับค่าเริ่มต้นของพรอมต์คำสั่ง พวกเขาเก็บไว้ในรีจิสทรีที่ไหนสักแห่งหรือในไฟล์?

ฉันชอบที่จะทำ.regไฟล์เพื่อตั้งค่ากำหนดเริ่มต้นของฉันเมื่อเข้าสู่ระบบเป็นครั้งแรก

ฉันกำลังพูดถึงการตั้งค่าแอปพลิเคชันเริ่มต้น: โหมด QuickEdit ขนาดบัฟเฟอร์สีข้อความ ฯลฯ

คำตอบ:


21

ภายใต้HKEY_CURRENT_USER\Consoleมีการตั้งค่าเริ่มต้นสำหรับคอนโซลและคีย์ย่อยทั้งหมดพร้อมการตั้งค่าส่วนบุคคลสำหรับโปรแกรมคอนโซล คุณอาจต้องการที่จะดูที่การตั้งค่าเหล่านี้โดยเฉพาะอย่างยิ่งQuickEdit, ScreenBufferSize, ScreenColorsฯลฯ


1
สิ่งที่ฉันกำลังมองหา
Keltari

2
เช่นนี้สำหรับคำถามอื่นที่กล่าวถึงหากคุณใช้ Windows 10 การตั้งค่าจะไม่ถูกบันทึกในรีจิสทรี แต่จะอยู่ในไฟล์. lnk เท่านั้น (ดูคำตอบสำหรับรายละเอียด)
RobH

@ RobH ค่าเริ่มต้นยังคงอยู่ใน Registry แต่Propertiesอยู่ในไฟล์ lnk ใน Windows 10
WesternGun

6

อัปเดตคำตอบเพื่อตอบคำถามที่แก้ไขแล้ว

ฉันขอแนะนำให้คุณสร้างทางลัดสำหรับ CMD.EXE บนเดสก์ท็อปของคุณและแก้ไขคุณสมบัติเพื่อรับการตั้งค่าที่คุณต้องการ จากนั้นคัดลอกทางลัดไปยังอุปกรณ์พกพาเช่น USB Thumb Drive หรือโฟลเดอร์เครือข่าย คุณควรจะสามารถเปิดใช้ทางลัดจากคอมพิวเตอร์เครื่องใดก็ได้และรับการตั้งค่าที่คุณต้องการ

คำตอบดั้งเดิมเกี่ยวกับการตั้งค่าที่แตกต่างอย่างสิ้นเชิง

ฉันทราบถึงการตั้งค่าสี่อย่างที่รีจิสทรีอาจควบคุมได้:

  • เรียกใช้อัตโนมัติ
  • ส่วนขยาย
  • การขยายตัวล่าช้า
  • เสร็จสิ้นชื่อไฟล์

การตั้งค่ารีจิสทรีมีการบันทึกไว้ในวิธีใช้ในตัวซึ่งสามารถเข้าถึงได้จากบรรทัดคำสั่งโดยพิมพ์HELP CMDหรือCMD /?

นี่คือข้อความที่ตัดตอนมาจากความช่วยเหลือที่เกี่ยวข้อง:

If /D was NOT specified on the command line, then when CMD.EXE starts, it
looks for the following REG_SZ/REG_EXPAND_SZ registry variables, and if
either or both are present, they are executed first.

    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\AutoRun

        and/or

    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\AutoRun

Command Extensions are enabled by default.  You may also disable
extensions for a particular invocation by using the /E:OFF switch.  You
can enable or disable extensions for all invocations of CMD.EXE on a
machine and/or user logon session by setting either or both of the
following REG_DWORD values in the registry using REGEDIT.EXE:

    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\EnableExtensio

        and/or

    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\EnableExtension

to either 0x1 or 0x0.  The user specific setting takes precedence over
the machine setting.  The command line switches take precedence over the
registry settings.

In a batch file, the SETLOCAL ENABLEEXTENSIONS or DISABLEEXTENSIONS argume
takes precedence over the /E:ON or /E:OFF switch. See SETLOCAL /? for deta

The command extensions involve changes and/or additions to the following
commands:

    DEL or ERASE
    COLOR
    CD or CHDIR
    MD or MKDIR
    PROMPT
    PUSHD
    POPD
    SET
    SETLOCAL
    ENDLOCAL
    IF
    FOR
    CALL
    SHIFT
    GOTO
    START (also includes changes to external command invocation)
    ASSOC
    FTYPE

To get specific details, type commandname /? to view the specifics.

Delayed environment variable expansion is NOT enabled by default.  You
can enable or disable delayed environment variable expansion for a
particular invocation of CMD.EXE with the /V:ON or /V:OFF switch.  You
can enable or disable delayed expansion for all invocations of CMD.EXE on
machine and/or user logon session by setting either or both of the
following REG_DWORD values in the registry using REGEDIT.EXE:

    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\DelayedExpansi

        and/or

    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\DelayedExpansio

to either 0x1 or 0x0.  The user specific setting takes precedence over
the machine setting.  The command line switches take precedence over the
registry settings.

In a batch file the SETLOCAL ENABLEDELAYEDEXPANSION or DISABLEDELAYEDEXPAN
arguments takes precedence over the /V:ON or /V:OFF switch. See SETLOCAL /
for details.

If delayed environment variable expansion is enabled, then the exclamation
character can be used to substitute the value of an environment variable
at execution time.

You can enable or disable file name completion for a particular
invocation of CMD.EXE with the /F:ON or /F:OFF switch.  You can enable
or disable completion for all invocations of CMD.EXE on a machine and/or
user logon session by setting either or both of the following REG_DWORD
values in the registry using REGEDIT.EXE:

    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\CompletionChar
    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\PathCompletion

        and/or

    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\CompletionChar
    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\PathCompletionC

with the hex value of a control character to use for a particular
function (e.g.  0x4 is Ctrl-D and 0x6 is Ctrl-F).  The user specific
settings take precedence over the machine settings.  The command line
switches take precedence over the registry settings.

If completion is enabled with the /F:ON switch, the two control
characters used are Ctrl-D for directory name completion and Ctrl-F for
file name completion.  To disable a particular completion character in
the registry, use the value for space (0x20) as it is not a valid
control character.

Completion is invoked when you type either of the two control
characters.  The completion function takes the path string to the left
of the cursor appends a wild card character to it if none is already
present and builds up a list of paths that match.  It then displays the
first matching path.  If no paths match, it just beeps and leaves the
display alone.  Thereafter, repeated pressing of the same control
character will cycle through the list of matching paths.  Pressing the
Shift key with the control character will move through the list
backwards.  If you edit the line in any way and press the control
character again, the saved list of matching paths is discarded and a new
one generated.  The same occurs if you switch between file and directory
name completion.  The only difference between the two control characters
is the file completion character matches both file and directory names,
while the directory completion character only matches directory names.
If file completion is used on any of the built in directory commands
(CD, MD or RD) then directory completion is assumed.

The completion code deals correctly with file names that contain spaces
or other special characters by placing quotes around the matching path.
Also, if you back up, then invoke completion from within a line, the
text to the right of the cursor at the point completion was invoked is
discarded.

The special characters that require quotes are:
     <space>
     &()[]{}^=;!'+,`~

3

นี่คือสิ่งที่ฉันทำสำหรับ Windows 10:

  1. วางสิ่งนี้ลงใน Windows Explorer ตรงตามที่เขียนไว้:

    %LOCALAPPDATA%\Microsoft\Windows\WinX\Group3\
    
  2. คลิกขวาทั้งทางลัด "พร้อมรับคำสั่ง" และเลือก "คุณสมบัติ"

  3. การแก้ไขแท็บเหล่านี้จะเปลี่ยนการตั้งค่าเริ่มต้นสำหรับพรอมต์คำสั่ง:

    • ตัวอักษร
    • แบบ
    • สี
    • ตัวเลือก

โปรดจำไว้ว่าการเปลี่ยนแปลงการตั้งค่าจำเป็นต้องใช้สำหรับทางลัดทั้งสอง ฉันไม่แน่ใจว่าทำไมมีสอง:/


คำตอบนี้ไม่ทำงานบน Windows รุ่นก่อนหน้าคำถามถูกถามในปี 2556 ดังนั้นคำตอบที่ใช้ได้กับ Windows 10 นั้นไม่ได้มีประโยชน์สำหรับผู้เขียน ฉันจะบอกได้อย่างไรว่านี่ใช้ได้กับ Windows 10 เท่านั้น? ตำแหน่งของการตั้งค่าเหล่านี้มีความชัดเจนสำหรับพรอมต์คำสั่งปรับปรุงที่มีอยู่ใน Windows 10 เนื่องจากWinXในพา ธ
Ramhound

2
เพียงเพราะคำถามถูกถามในปี 2013 ไม่ได้หมายความว่าผู้ถามไม่ได้อัพเกรดระบบปฏิบัติการเป็น Windows 10 ตั้งแต่นั้นมา นอกจากนี้ยังเป็นคำตอบที่ง่ายมากสำหรับคำถามที่จะช่วยให้ผู้อื่นที่มี windows 10 ค้นหาการตั้งค่าพรอมต์คำสั่งเริ่มต้น ฉันไม่คิดว่าคำตอบของฉันควรได้รับจาก -1 ที่คุณให้มา
Daniel Tonon

1
การออกเสียงลงคะแนนเป็นแบบ Annymous ด้วยเหตุผลฉันไม่คิดว่าฉันควรถูกโจมตีเป็นการส่วนตัวเพื่อออกการโหวต
Ramhound

สิ่งสุดท้ายที่โลกต้องการคืออีกคนหนึ่งที่พยายามหลีกเลี่ยงการรับผิดชอบต่อการกระทำของพวกเขา
kreemoweet
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.