Answers for "running powershell scripts from batch file"

0

powershell run bat file

cmd.exe /c '\my-app\my-file.bat'
Posted by: Guest on May-21-2021
6

powershell script run

./myscript.ps1  //if is in the current directory
c:/scripts/myscript.ps1  //if you want to use the full path
&"C:/my path with space/myscript.ps1"  //if your path has spaces
Posted by: Guest on February-05-2020

Code answers related to "running powershell scripts from batch file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language