You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
217 B

  1. @echo off
  2. if "%1" == "help" (
  3. echo:Usage: %0 path
  4. echo:path Path to be added to the user PATH variable
  5. ) else (
  6. %windir%\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy Bypass -File %~dp0pa.ps1 %1
  7. )