当前位置:  开发笔记 > 编程语言 > 正文

特定的PowerShell模块不自动加载

如何解决《特定的PowerShell模块不自动加载》经验,为你挑选了0个好方法。

我在Windows Server 2012 R2上使用PowerShell 4.

调用来自此模块的Cmdlet时,特定模块WebAdministration不会自动加载.我试过的所有其他模块成功自动加载.我可以使用Import-Module手动加载此模块,它的行为符合预期.

PSModulePath环境变量包含模块的路径.此路径中的其他模块自动加载.

该模块不是自定义的.它是一个内置的IIS功能.该功能已启用.

自动加载已启用.$ PSModuleAutoLoadingPreference设置为"All"

Get-Command"Get-WebBinding"不起作用,但是Get-Command | 其中{$ _.Name -eq"Get-WebBinding"}的确如此.

Get-Module -ListAvailable | 其中{$ _.Name -eq"WebAdministration"}返回具有正确路径的模块.

PSModulePath =%SystemRoot%\ system32\WindowsPowerShell\v1.0\Modules \ WebAdministration Module Path = C:\ Windows\System32\WindowsPowerShell\v1.0\Modules\WebAdministration



简单测试输出


PS C:\ Users\Administrator> $ PSModuleAutoLoadingPreference ="All"

PS C:\ Users\Administrator> Get-WebBinding Get-WebBinding:术语"Get-WebBinding"未被识别为cmdlet,函数,脚本文件或可操作程序的名称.检查名称的拼写,或者如果包含路径,请验证路径是否正确,然后重试.at line:1 char:1 + Get-WebBinding + ~~~~~~~~~~~~~~ + CategoryInfo:ObjectNotFound:(Get-WebBinding:String)[],CommandNotFoundException + FullyQualifiedErrorId:CommandNotFoundException

PS C:\ Users\Administrator> Import-Module WebAdministration

PS C:\ Users\Administrator> Get-WebBinding

protocol bindingInformation sslFlags -------- ------------------ -------- http*:8082:0 http*:8081:0




任何关于为什么自动加载不起作用的建议将不胜感激.谢谢!

推荐阅读
wangtao
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有