有没有办法制作一个可以访问不同工作站上同一位置的批处理文件?
示例路径:\\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%