Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 .cmd 脚本,我想根据运行它的人的用户名映射网络驱动器。所以像这样
net use K: \\nas001\users\[My_User_Name]
除了将 [My_User_name] 替换为运行脚本的用户名。这可能吗?
环境变量 %USERNAME% 包含实际的用户名,因此您可以使用它,但我不建议这样做。
Windows 具有 op 'home drive' 的概念,您可以使用以下方式连接到它:
NET USE K: /HOME
我认为最好使用这个概念。