根据用户名映射网络驱动器的脚本

发布于 2024-09-13 22:26:05 字数 158 浏览 8 评论 0原文

我有一个 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

复古式 2024-09-20 22:26:05

环境变量 %USERNAME% 包含实际的用户名,因此您可以使用它,但我不建议这样做。

Windows 有“主驱动器”的概念,您可以使用以下方式连接到该概念:

NET USE K: /HOME

我认为最好使用该概念。

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:

NET USE K: /HOME

I think it's better to use that concept.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文