How do I save “color configs” command in Windows CMD?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
Recently , i was learning about windows cmd commands.
I was blocked with a command color 2e
, which will change the foreground and background color of the interface.
i can change it and the foreground and background color has been applied successfully , but after i closed and reopen again. the color has return to the default.
so how should i do to fix it ,i do not want to modify other files,thanks!
windows cmd
add a comment |
Recently , i was learning about windows cmd commands.
I was blocked with a command color 2e
, which will change the foreground and background color of the interface.
i can change it and the foreground and background color has been applied successfully , but after i closed and reopen again. the color has return to the default.
so how should i do to fix it ,i do not want to modify other files,thanks!
windows cmd
add a comment |
Recently , i was learning about windows cmd commands.
I was blocked with a command color 2e
, which will change the foreground and background color of the interface.
i can change it and the foreground and background color has been applied successfully , but after i closed and reopen again. the color has return to the default.
so how should i do to fix it ,i do not want to modify other files,thanks!
windows cmd
Recently , i was learning about windows cmd commands.
I was blocked with a command color 2e
, which will change the foreground and background color of the interface.
i can change it and the foreground and background color has been applied successfully , but after i closed and reopen again. the color has return to the default.
so how should i do to fix it ,i do not want to modify other files,thanks!
windows cmd
windows cmd
asked Jan 4 at 7:41
AibinAibin
164
164
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
For me works this way from UI:
- Open cmd.
- Type
color 2e
. - Click on the icon at the top left of the window.
- Click on
Properties
. - Click
OK
.
Now you can close the window and it saved color settings (if it won't work please try the dame but select Defaults
in step 4 - it seems there is a difference for some versions of Windows).
Default colour settings are stored in registry, for example you may have a look into
HKEY_CURRENT_USERSoftwareMicrosoftCommand ProcessorDefaultColor
and the same for HKEY_LOCAL_MACHINESoftwareMicrosoftCommand ProcessorDefaultColor
trying exportingimporting it.
They contain two-digit hexadecimal value where first digit stands for background color and the second one for text color. Color codes are like this:
0 - black
1 - blue
2 - green
3 - aqua
4 - red
5 - purple
6 - yellow
7 - white
8 - grey
9 - light blue
A - light green
B - light aqua
C - light red
D - light purple
E - light yellow
F - bright white
So that you can configure the color theme you like, export the registry to *.reg file and reuse later
1
thank you very much, select and configDefaults
in step 4 did work , thanks again
– Aibin
Jan 4 at 8:43
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54034851%2fhow-do-i-save-color-configs-command-in-windows-cmd%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
For me works this way from UI:
- Open cmd.
- Type
color 2e
. - Click on the icon at the top left of the window.
- Click on
Properties
. - Click
OK
.
Now you can close the window and it saved color settings (if it won't work please try the dame but select Defaults
in step 4 - it seems there is a difference for some versions of Windows).
Default colour settings are stored in registry, for example you may have a look into
HKEY_CURRENT_USERSoftwareMicrosoftCommand ProcessorDefaultColor
and the same for HKEY_LOCAL_MACHINESoftwareMicrosoftCommand ProcessorDefaultColor
trying exportingimporting it.
They contain two-digit hexadecimal value where first digit stands for background color and the second one for text color. Color codes are like this:
0 - black
1 - blue
2 - green
3 - aqua
4 - red
5 - purple
6 - yellow
7 - white
8 - grey
9 - light blue
A - light green
B - light aqua
C - light red
D - light purple
E - light yellow
F - bright white
So that you can configure the color theme you like, export the registry to *.reg file and reuse later
1
thank you very much, select and configDefaults
in step 4 did work , thanks again
– Aibin
Jan 4 at 8:43
add a comment |
For me works this way from UI:
- Open cmd.
- Type
color 2e
. - Click on the icon at the top left of the window.
- Click on
Properties
. - Click
OK
.
Now you can close the window and it saved color settings (if it won't work please try the dame but select Defaults
in step 4 - it seems there is a difference for some versions of Windows).
Default colour settings are stored in registry, for example you may have a look into
HKEY_CURRENT_USERSoftwareMicrosoftCommand ProcessorDefaultColor
and the same for HKEY_LOCAL_MACHINESoftwareMicrosoftCommand ProcessorDefaultColor
trying exportingimporting it.
They contain two-digit hexadecimal value where first digit stands for background color and the second one for text color. Color codes are like this:
0 - black
1 - blue
2 - green
3 - aqua
4 - red
5 - purple
6 - yellow
7 - white
8 - grey
9 - light blue
A - light green
B - light aqua
C - light red
D - light purple
E - light yellow
F - bright white
So that you can configure the color theme you like, export the registry to *.reg file and reuse later
1
thank you very much, select and configDefaults
in step 4 did work , thanks again
– Aibin
Jan 4 at 8:43
add a comment |
For me works this way from UI:
- Open cmd.
- Type
color 2e
. - Click on the icon at the top left of the window.
- Click on
Properties
. - Click
OK
.
Now you can close the window and it saved color settings (if it won't work please try the dame but select Defaults
in step 4 - it seems there is a difference for some versions of Windows).
Default colour settings are stored in registry, for example you may have a look into
HKEY_CURRENT_USERSoftwareMicrosoftCommand ProcessorDefaultColor
and the same for HKEY_LOCAL_MACHINESoftwareMicrosoftCommand ProcessorDefaultColor
trying exportingimporting it.
They contain two-digit hexadecimal value where first digit stands for background color and the second one for text color. Color codes are like this:
0 - black
1 - blue
2 - green
3 - aqua
4 - red
5 - purple
6 - yellow
7 - white
8 - grey
9 - light blue
A - light green
B - light aqua
C - light red
D - light purple
E - light yellow
F - bright white
So that you can configure the color theme you like, export the registry to *.reg file and reuse later
For me works this way from UI:
- Open cmd.
- Type
color 2e
. - Click on the icon at the top left of the window.
- Click on
Properties
. - Click
OK
.
Now you can close the window and it saved color settings (if it won't work please try the dame but select Defaults
in step 4 - it seems there is a difference for some versions of Windows).
Default colour settings are stored in registry, for example you may have a look into
HKEY_CURRENT_USERSoftwareMicrosoftCommand ProcessorDefaultColor
and the same for HKEY_LOCAL_MACHINESoftwareMicrosoftCommand ProcessorDefaultColor
trying exportingimporting it.
They contain two-digit hexadecimal value where first digit stands for background color and the second one for text color. Color codes are like this:
0 - black
1 - blue
2 - green
3 - aqua
4 - red
5 - purple
6 - yellow
7 - white
8 - grey
9 - light blue
A - light green
B - light aqua
C - light red
D - light purple
E - light yellow
F - bright white
So that you can configure the color theme you like, export the registry to *.reg file and reuse later
edited Jan 4 at 8:07
answered Jan 4 at 7:48
AkceptorAkceptor
1,40911825
1,40911825
1
thank you very much, select and configDefaults
in step 4 did work , thanks again
– Aibin
Jan 4 at 8:43
add a comment |
1
thank you very much, select and configDefaults
in step 4 did work , thanks again
– Aibin
Jan 4 at 8:43
1
1
thank you very much, select and config
Defaults
in step 4 did work , thanks again– Aibin
Jan 4 at 8:43
thank you very much, select and config
Defaults
in step 4 did work , thanks again– Aibin
Jan 4 at 8:43
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54034851%2fhow-do-i-save-color-configs-command-in-windows-cmd%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown