根据用户名映射网络驱动器的脚本
我有一个 .cmd 脚本,我想根据运行它的人的用户名映射网络驱动器。所以像这样
net use K: \\nas001\users\[My_User_Name]
除了将 [My_User_name] 替换为运行脚本的用户名。这可能吗?
I have a .cmd script I want to map a network drive based on the username of the person running it. So something like this
net use K: \\nas001\users\[My_User_Name]
Except replace [My_User_name] with the name of the user running the script. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
环境变量 %USERNAME% 包含实际的用户名,因此您可以使用它,但我不建议这样做。
Windows 有“主驱动器”的概念,您可以使用以下方式连接到该概念:
我认为最好使用该概念。
The environment variable %USERNAME% contains the actual user name, so you could use this, but I wouldn't advice this.
Windows has the concept op 'home drive', to which you can connect using:
I think it's better to use that concept.