Answers for "how to do run powershell command in basic"

PHP
4

cmd run powershell command

powershell -ExecutionPolicy Bypass -Command "your script here"
Posted by: Guest on November-12-2020
9

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 "how to do run powershell command in basic"

Browse Popular Code Answers by Language