Я вызываю простую следующую команду Powershell AppFabric:
powershell -noexit c:\scripts\ApplyClusterConfig.ps1
, а скрипт просто содержит:
Get-CacheStatistics
, и я получаю следующую ошибку:
The term 'Get-CacheStatistics' is not recognized as the name of a cmdlet, funct
ion, script file, or operable program. Check the spelling of the name, or if a
path was included, verify that the path is correct and try again.
At C:\scripts\ApplyClusterConfig.ps1:1 char:20
+ Get-CacheStatistics <<<<
+ CategoryInfo : ObjectNotFound: (Get-CacheStatistics:String) [],
CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Я сделал все, что могу найти в Интернете, включая
Set-ExecutionPolicy Unrestricted
и используя. \ Для ссылки на файл:
powershell -noexit .\ApplyClusterConfig.ps1
и настройкипуть к среде для включения c: \ Scripts
Но ошибка не устраняется.Может кто-нибудь помочь, пожалуйста, потому что у меня закончились все варианты Google.Благодаря.