在不同设备上访问相同路径的脚本

在不同设备上访问相同路径的脚本

有没有办法制作一个可以访问不同工作站上同一位置的批处理文件?

示例路径:\\station1\c$\windows\system32\spool\printers

当运行脚本时,我希望提示我想要访问哪个电台并station1用另一个电台名称替换,例如station2

答案1

尝试这个:

@echo off
set /p PcName=Please enter PC Name: || set PcName=station1
set DirPath=\\%PcName%\c$\windows\system32\spool\printers
echo Resulting path: %DirPath%

更多信息:SET:显示、设置或删除 CMD 环境变量。

相关内容