如何使用Powershell获取Azure中SQL服务器的防火墙规则?

huangapple go评论92阅读模式
英文:

How can i get firewall rules for a sql server in Azure using Powershell?

问题

在PowerShell中,我运行以下命令:

Get-AzSqlServerFirewallRule -ResourceGroupName <myRG> -ServerName <myServer>

但是出现了以下错误:

Get-AzSqlServerFirewallRule未将 'Get-AzSqlServerFirewallRule' 识别为 cmdlet 的名称

我需要安装一个模块吗?如何解决这个问题?

英文:

I run the following in powershell

 Get-AzSqlServerFirewallRule -ResourceGroupName &lt;myRG&gt; -ServerName &lt;myServer&gt;

But get the error

 Get-AzSqlServerFirewallRule : The term &#39;Get-AzSqlServerFirewallRule&#39; is not recognized as the name of a cmdlet

Is there a module i need to install ? How can i get this going ?

答案1

得分: 1

Get-AzSqlServerFirewallRule cmdlet是Az.Sql模块的一部分。

(Get-Command -Name Get-AzSqlServerFirewallRule).ModuleName

Az.Sql

您可能需要确保已安装此模块的适当版本。

英文:

The Get-AzSqlServerFirewallRule cmdlet is part of the Az.Sql module.

(Get-Command -Name Get-AzSqlServerFirewallRule).ModuleName

Az.Sql

You might want to make sure this module is installed with the appropriate version.

huangapple
  • 本文由 发表于 2023年3月7日 07:24:48
  • 转载请务必保留本文链接:https://go.coder-hub.com/75656725.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定