例如:
把C盘下的windows目录内的EXPLORER.EXE复制到桌面(你的系统安装在C盘),则输入:
copy c:\windows\explorer.exe "C:\Documents and Settings\All Users\桌面"
可以用系统变量来替代路径:
copy %windir%\explorer.exe "%ALLUSERSPROFILE%\桌面"
用这命令就无论你的系统安装在哪个盘,都可以把explorer.exe复制到桌面!
希望能帮到你。
例如:
把C盘下的windows目录内的EXPLORER.EXE复制到桌面(你的系统安装在C盘),则输入:
copy c:\windows\explorer.exe "C:\Documents and Settings\All Users\桌面"
可以用系统变量来替代路径:
copy %windir%\explorer.exe "%ALLUSERSPROFILE%\桌面"
用这命令就无论你的系统安装在哪个盘,都可以把explorer.exe复制到桌面。
用上系统变量就简单了。
copy
"文件起始路径"
"%userprofile%\桌面"
vista是这样的:copy
"文件起始路径"
"%userprofile%\desktop"
copy
c:\1.txt
"c:\Documents
and
Settings\Administrator\桌面"
如果你的系统不是装在c盘,盘符你可以改一下,用户名也改成你对应的用户名就行了~
利用cd命令依次进入文件夹C:\Documents
and
Settings\用户名
然后输入命令:
copy
桌面
C:\再回车