千家信息网

SQLPS不同版本的差异

发表于:2025-11-14 作者:千家信息网编辑
千家信息网最后更新 2025年11月14日,服务器上装了SQL Server 2014的默认实例,以及SQL Server 2017的命名实例SQL2017$env:PSModulePath为%SystemRoot%\system32\Wind
千家信息网最后更新 2025年11月14日SQLPS不同版本的差异


服务器上装了SQL Server 2014的默认实例,以及SQL Server 2017的命名实例SQL2017

$env:PSModulePath为

%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules\;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\PowerShell\Modules\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\PowerShell\Modules\

在执行Powershell命令

New-SqlAvailabilityGroup -Name $AgName -InputObject $Primary -AvailabilityReplica $Replicas -Database $DatabaseList

时,报错如下:

去掉了SQL Server 2014的SQLPS目录路径

%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\PowerShell\Modules\

再加载SQL Server 2017默认的SQLPS,执行New-SqlAvailabilityGroup正常。

说明两个版本SQLPS里New-SqlAvailabilityGroup对应的参数-InputObject类型有差异。


后记:

后来再尝试加载SQL Server 2014SQLPS模块,针对SQL Server 2014默认实例创建AG失败。索性直接调用新装的SqlServer模块,可以向后兼容。


Powershell模块安装


#https://www.powershellgallery.com

#在线下载安装

Install-Module -Name Powershellget -force


#离线下载安装

#https://www.powershellgallery.com/packages/CredentialsManager/1.1

#保存模块

Save-Module -Name CredentialsManager -Path C:\powershellgallery

#拷贝到

%ProgramFiles%/WindowsPowershell/Module/

#加载即用、用时注册

Import-Module -Name CredentialsManager


PowerShell 2.0 uses the appropriately-named Import-Module cmdlet to import modules. When this cmdlet is run, Windows PowerShell searches for the specified module within the directories specified in the PSModulePath variable. When the specified directory is found, Windows PowerShell searches for files in the following order: module manifest files (.psd1), script module files (.psm1), binary module files (.dll). For more information about adding directories to the search, see Modifying the PSModulePath Installation Path.

Beginning in Windows PowerShell 3.0, modules are imported automatically when any cmdlet or function in the module is used in a command. This feature works on any module in a directory that this included in the value of the PSModulePath environment variable. If you do not save your module on a valid path however, you can still load them using the explicit Import-Module option, described above.

模块 实例 差异 版本 上装 两个 参数 后记 命令 在线下载 拷贝 新装 服务器 目录 类型 路径 在线 尝试 服务 不同 数据库的安全要保护哪些东西 数据库安全各自的含义是什么 生产安全数据库录入 数据库的安全性及管理 数据库安全策略包含哪些 海淀数据库安全审计系统 建立农村房屋安全信息数据库 易用的数据库客户端支持安全管理 连接数据库失败ssl安全错误 数据库的锁怎样保障安全 空空如也下载软件开发 云服务器管理工具美国 计算机网络安全验证 网络安全公司需要投资多少 电子科大网络安全专业就读校区 个人信用信息数据库的核心内容 基本的软件开发流程图 青海医院时钟监控网关服务器 如何学习网络技术自学 绍兴赛服网络技术有限公司怎么样 数据库职工工资数据库 电脑游戏服务器维护 霞浦县凑勇网络技术服务部 试述数据库设计步骤 服务器加电测试报告 数据库导输出数据脚本 毕业设计网络技术 牟平区商城软件开发公司 山东淄博网络安全比赛 网络安全法第49条 万州区一站式软件开发流程标志 数据库运维堡机需求 华为服务器生产线在哪里 服务器bmc监控管理功能 政府机关网络安全行业介绍 网络安全优秀创新评选活动主题 道德黑客和网络安全 崇明区个人数据库研发优点 湖南运营网络技术服务单价 网络技术人员招聘试题
0