How do I install PCSX Powershell module?

前端 未结 5 2034
忘掉有多难
忘掉有多难 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:18

    You can also use PsGet to easily search and install PowerShell modules.

    You can check which modules have been added to PsGet by browsing for all modules:

    > Get-PsGetModuleInfo *
    

    Or locate this one specfically:

    > Get-PsGetModuleInfo pscx
    

    Then you can install based on that information:

    > Install-Module pscx
    

提交回复
热议问题