The Computer Oracle

What is the equivalent of Linux's "~" (tilde) in Windows?

Become or hire the top 3% of the developers on Toptal https://topt.al/25cXVn

--

Music by Eric Matyas
https://www.soundimage.org
Track title: Puddle Jumping Looping

--

Chapters
00:00 Question
00:32 Accepted answer (Score 58)
00:58 Answer 2 (Score 72)
01:17 Answer 3 (Score 13)
02:11 Answer 4 (Score 7)
02:23 Thank you

--

Full question
https://superuser.com/questions/332871/w...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#windows #linux #commandline

#avk47



ANSWER 1

Score 76


You can use cd /d %USERPROFILE% if you use cmd.

or you can use cd ~ if you use PowerShell.




ACCEPTED ANSWER

Score 61


cd /d "%HOMEDRIVE%%HOMEPATH%" would do it -- but I 'm not sure if you consider it an improvement.

You can also define an alias for the above command:

doskey cdhome=cd /d "%HOMEDRIVE%%HOMEPATH%"

After this, it's simply cdhome.




ANSWER 3

Score 14


One possibility is to use the subst command from a command prompt:

subst z: C:\Document and Settings\freewind

Any time you navigate to drive Z:, you'll be looking at your user folder.

The downside is that you need to run it every time you log in. I used a batch file and just put it in my startup folder, but there are probably more elegant solutions to this.

The benefit is that unlike a doskey alias, it works universally (windows explorer, browse dialog, etc.), not just when changing directories at the command prompt. It's especially helpful for old programs with old browse dialogs that have drive letters at the topmost level, rather than "desktop".




ANSWER 4

Score 7


You can do this:

cd %homepath%