2

在Windows上,我有AWSDevTools在前些天工作正常。我是使用Elastic Beanstalk的新手,前些天我在电脑上安装了eb CLI工具。我能够部署他,你好世界教程,但重启后,我得到以下错误:问题w。 AWSDevTools未加载(git aws.push)

Import-Module : The specified module 'AWSDevTools' was not loaded because no valid module file was found in any module directory. At line:1 char:18 + & { Import-Module <<<< AWSDevTools; $e, $c = Get-Options $args; Invoke-AWSElasticBeanstalkPush $e $c } + CategoryInfo : ResourceUnavailable: (AWSDevTools:String) [Import-Module], FileNotFoundException + FullyQualifiedErrorId : Modules_ModuleNotFound,Microsoft.PowerShell.Commands.ImportModuleCommand

The term 'Get-Options' is not recognized as the name of a cmdlet, function, 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 line:1 char:52 + & { Import-Module AWSDevTools; $e, $c = Get-Options <<<< $args; Invoke-AWSElasticBeanstalkPush $e $c } + CategoryInfo : ObjectNotFound: (Get-Options:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException

The term 'Invoke-AWSElasticBeanstalkPush' is not recognized as the name of a cmdlet, function, 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 line:1 char:90 + & { Import-Module AWSDevTools; $e, $c = Get-Options $args; Invoke-AWSElasticBeanstalkPush <<<< $e $c } + CategoryInfo : ObjectNotFound: (Invoke-AWSElasticBeanstalkPush:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException

有谁知道我该如何解决这个问题?

CNC中

看来,我要运行的PowerShell作为管理员...不能完全确定这是为什么,在我的Windows 7旗舰版的笔记本电脑,我可以使用AWSDevTools模块在PowerShell中不提高权限,但在Windows 8.1预览版中我也有...但前些天有效?

回答