Skip to content

Instantly share code, notes, and snippets.

@mcandre
Created July 1, 2016 22:50
Show Gist options
  • Save mcandre/2dee4a8409d697b26d1289673354a735 to your computer and use it in GitHub Desktop.
Save mcandre/2dee4a8409d697b26d1289673354a735 to your computer and use it in GitHub Desktop.
windows get home directory

How to retrieve the current user's home directory from either Command Prompt or PowerShell:

C:\> cmd /c "echo %homedrive%%homepath%"
C:\Users\andrew

PS C:\> cmd /c "echo %homedrive%%homepath%"
C:\Users\andrew
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment