Windows 批处理脚本和在 HomePath 中工作的权限
有趣的是,我一直在使用 bash 等,但从未使用过 Windows 的批处理脚本。
我想做的是重命名我的 HomePath 中的某个目录。 所以我只是这样做:
cd %HOMEPATH%
ren dirName newDirName
然后我得到:
Access denied.
在 Windows XP / 7 中是否可能?
谢谢 !
Funny thing, but I've been working with bash, etc but never with Windows' batch scripting.
What I am trying to do is rename some directory in my HomePath.
So I simply do:
cd %HOMEPATH%
ren dirName newDirName
And then I get:
Access denied.
Is it even possible in Windows XP / 7 ?
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确定您已位于正确的驱动器上吗?
%HOMEPATH%
只提供目录,而不提供驱动器。我建议尝试:
Are you sure that you're already on the correct drive?
%HOMEPATH%
only gives you the directory, not the drive.I'd suggest trying: