PowerShell The term is not recognized as cmdlet function script file or operable program

前端 未结 3 685
灰色年华
灰色年华 2020-12-28 12:13

I am implementing a script in powershell and getting the below error. The sceen shot is there exactly what I entered and the resulting error.

3条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-28 12:48

    You first have to 'dot' source the script, so for you :

    . .\Get-NetworkStatistics.ps1
    

    The first 'dot' asks PowerShell to load the script file into your PowerShell environment, not to start it. You should also use set-ExecutionPolicy Unrestricted or set-ExecutionPolicy AllSigned see(the Execution Policy instructions).

提交回复
热议问题