我在一个批处理文件中运行了两个命令,但我需要该del
命令来等待执行 powershel 脚本。
我尝试使用以下链接中的命令,但没有成功:
the-batch-script-to-wait
批处理文件:
powershell -NoProfile -ExecutionPolicy Bypass -Command "Start-Process -Verb RunAs powershell -ArgumentList '-NoProfile -ExecutionPolicy Bypass -File \"D:\z_Batchs e Scripts\Batchs\Normaliza_LUFS\ArqsNorms_LUFS_pass.ps1\" -_vLUF %_vLUF%'"
del /q "C:\Users\%username%\Desktop\Logs_LUFS\LOG_*.*"
如何使del
命令仅在 powershell 脚本完成后运行?
最简单的方法是简单地将 del 命令移至 powershell 脚本。
您可以在脚本中将 %username% 替换为 $env:username。