How do I install PCSX Powershell module?

前端 未结 5 2037
忘掉有多难
忘掉有多难 2021-02-13 11:28

I\'m running Windows 7 with PowerShell 2 installed.

I\'ve downloaded version 2.1 from here - http://pscx.codeplex.com/releases

The Release notes say

    <
5条回答
  •  醉酒成梦
    2021-02-13 12:21

    Just run

    choco install pscx
    

    See chocolatey.org for a one-liner to get the choco command.

    Keep in mind you may still have to call this in your scripts before running their commands:

    Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser #allows scripts to run from the interwebs, such as pcsx
    

提交回复
热议问题