PowerShell PSModulePath 查看默认的模块存放路径

知识就是力量,时间就是生命。这篇文章主要讲述PowerShell PSModulePath 查看默认的模块存放路径相关的知识,希望能为你提供帮助。
环境配置说明

  • Windows 21H1
  • PSVersion 5.1.19041.1320

示例
PS C:\\Users\\admin> Get-Content Env:\\PSModulePath C:\\Users\\admin\\Documents\\WindowsPowerShell\\Modules; C:\\Program Files\\WindowsPowerShe ll\\Modules; C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules

  • 为了美观,加一些格式处理代码
PS C:\\Users\\admin> $psmp = Get-Content Env:\\PSModulePath | Out-String PS C:\\Users\\admin> $psmp.Split("; ") C:\\Users\\admin\\Documents\\WindowsPowerShell\\Modules C:\\Program Files\\WindowsPowerShell\\Modules C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules


存疑
C:\\Program Files\\WindowsPowerShell\\Modules
C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules 都可以正常访问。
唯独C:\\Users\\admin\\Documents\\WindowsPowerShell\\Modules,在访问时出现报错
PowerShell PSModulePath 查看默认的模块存放路径

文章图片

有待后续的学习了
【PowerShell PSModulePath 查看默认的模块存放路径】
学习资料
  • PowerShell 版本 + 工具
  • PowerShell/PowerShell
  • 51CTO社区

感恩曾经帮助过 师万物 的人。
学有余力的话,可以了解具有开源、跨平台特性的Powershell Core。
欢迎关注公众号:悟为生心

    推荐阅读