CD 无法在批处理文件中运行

CD 无法在批处理文件中运行

创建一个批处理文件来替换文件但我无法使命令运行。

命令:cd "C:\Program Files\example_folder\"

该命令在命令行中有效,但在运行脚本时无效。

脚本被保存为,我在文件所在的目录中的test.bat管理员 powershell 窗口上运行它。test.bat

我在这里做错了什么?

答案1

如果您想以管理员身份运行批处理文件:

@echo off
net session >nul 2>&1 || (powershell start -verb runas '"%~0"' &exit /b)

cd "C:\Program Files\example_folder"

:: next command
:: next command

相关内容