标签: windows batch-file cmd
如何更改为用户默认目录
是否有可以使用的默认变量,例如%USER%
将返回:C:\ Users \ MyUsername
答案 0 :(得分:28)
使用%HOMEPATH%。
%HOMEPATH%
所以:
CD %HOMEPATH%
答案 1 :(得分:27)
使用%UserProfile%。
%UserProfile%
cd /D %UserProfile%
/D : change the current DRIVE in addition to changing folder.