Archive

Posts Tagged ‘cmd.exe’

Quickie: DOSKEY macro

July 29th, 2013 2 comments

Couple times in row I write on command line commands which are misspelled. One of my most popular is command exot instead of exit. 🙂 So I started to look around how I can fix my quick fingers. There is one built-in utilitky to create macros in command prompt (cmd.exe) and it’s called DOSKEY. So I started to play with it and I defined my first command macro:

C:\Users\Cievo>DOSKEY exot=exit

and now let’s list my first macro:

DOSKEY MACRO

There is one bad thing about this macros. There are active only in current session. This can be solved by exporting all macros into file and import this file everytime you start command prompt. To export macros you can use command:

C:\Users\Cievo>DOSKEY /MACROS:ALL > my_macros.cmd

When you want to import your saved macros, you have to just run file my_macros.cmd.

That’s it and now “exot” 🙂

 

Categories: Quickie Tags: , ,

Custom cmd.exe appearance

February 29th, 2012 No comments

When you start cmd.exe in Windows 2008 or Windows 7 you will get little small tinny window:

 

Small cmd.exe

Small cmd.exe

 

This is getting on my nerves to change is on every server/workstation I log in.

Read more…

Categories: Windows Tags: , , ,