System Grab Bag

View all TLDR pages from Windows (or from all pages)

doskey

Manage macros, windows commands and command-lines. More information: https://learn.microsoft.com/windows-server/administration/windows-commands/doskey.
  • List available macros:
    doskey /macros
  • Create a new macro:
    doskey {{name}} = "{{command}}"
  • Create a new macro for a specific executable:
    doskey /exename={{executable}} {{name}} = "{{command}}"
  • Remove a macro:
    doskey {{name}} =
  • Display all commands that are stored in memory:
    doskey /history
  • Save macros to a file for portability:
    doskey /macros > {{path\to\macinit_file}}
  • Load macros from a file:
    doskey /macrofile = {{path\to\macinit_file}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.