You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a full list of modules found in this repository, please see the [Azure PowerShell Modules][AzurePowerShelModules] document.
19
19
@@ -27,7 +27,7 @@ Run the following command in an elevated PowerShell session to install the rollu
27
27
Install-Module -Name Az
28
28
```
29
29
30
-
This module runs on Windows PowerShell with [.NET Framework 4.7.2][DotNetFramework] or greater, or [PowerShell Core][PowerShellCore]. The Az module replaces AzureRM. You should not install Az side-by-side with AzureRM.
30
+
This module runs on Windows PowerShell with [.NET Framework 4.7.2][DotNetFramework] or greater, or [PowerShell Core][PowerShellCore]. The `Az` module replaces `AzureRM`. You should not install `Az` side-by-side with `AzureRM`.
31
31
32
32
If you have an earlier version of the Azure PowerShell modules installed from the PowerShell Gallery and would like to update to the latest version, run the following commands in an elevated PowerShell session:
33
33
@@ -43,7 +43,7 @@ For detailed instructions on installing Azure PowerShell, please refer to the [i
43
43
44
44
### Log into Azure
45
45
46
-
To connect to Azure, use the [Connect-AzAccount][ConnectAzAccount] cmdlet:
46
+
To connect to Azure, use the [`Connect-AzAccount`][ConnectAzAccount] cmdlet:
47
47
48
48
```powershell
49
49
# Device Code login - Provides a link to sign into Azure via your web browser
### Getting and setting your Azure PowerShell session context
64
64
65
-
A session context persists login information across Azure PowerShell modules and PowerShell instances. To view the context you are using in the current session, which contains the subscription and tenant, use the [Get-AzContext][GetAzContext] cmdlet:
65
+
A session context persists login information across Azure PowerShell modules and PowerShell instances. To view the context you are using in the current session, which contains the subscription and tenant, use the [`Get-AzContext`][GetAzContext] cmdlet:
66
66
67
67
```powershell
68
68
# Gets the Azure PowerShell context for the current PowerShell session
@@ -72,7 +72,7 @@ Get-AzContext
72
72
Get-AzContext -ListAvailable
73
73
```
74
74
75
-
To get the subscriptions in a tenant, use the [Get-AzSubscription][GetAzSubscription] cmdlet:
75
+
To get the subscriptions in a tenant, use the [`Get-AzSubscription`][GetAzSubscription] cmdlet:
76
76
77
77
```powershell
78
78
# Get all of the Azure subscriptions in your current Azure tenant
@@ -82,7 +82,7 @@ Get-AzSubscription
82
82
Get-AzSubscription -TenantId $TenantId
83
83
```
84
84
85
-
To change the subscription that you are using for your current context, use the [Set-AzContext][SetAzContext] cmdlet:
85
+
To change the subscription that you are using for your current context, use the [`Set-AzContext`][SetAzContext] cmdlet:
86
86
87
87
```powershell
88
88
# Set the Azure PowerShell context to a specific Azure subscription
@@ -139,13 +139,13 @@ Alternatively, be sure to check out the [Azure Community Support](https://azure.
139
139
140
140
### Feedback
141
141
142
-
If there is a feature you would like to see in Azure PowerShell, please use the [Send-Feedback][SendFeedback] cmdlet, or file an issue in our [GitHub issues][GitHubIssues] page to provide the Azure PowerShell team direct feedback.
142
+
If there is a feature you would like to see in Azure PowerShell, please use the [`Send-Feedback`][SendFeedback] cmdlet, or file an issue in our [GitHub issues][GitHubIssues] page to provide the Azure PowerShell team direct feedback.
143
143
144
144
## Contribute Code
145
145
146
146
If you would like to become an active contributor to this project, please follow the instructions provided in [Microsoft Azure Projects Contribution Guidelines][ContributionGuidelines].
147
147
148
-
Additional information about contributing to this repository can be found in the [Contributing][Contributing] document and the [Azure PowerShell Developer Guide][DeveloperGuide] document.
148
+
Additional information about contributing to this repository can be found in the [`CONTRIBUTING.md`][Contributing] document and the [_Azure PowerShell Developer Guide_][DeveloperGuide] document.
Copy file name to clipboardExpand all lines: documentation/Debugging-StaticAnalysis-Errors.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ _Note_: Sometimes the error listed in the .csv file can be a false positive (for
42
42
We take breaking changes very seriously, so please be mindful about the violations that you suppress in our repo.
43
43
44
44
### Signature Issues
45
-
Signature issues occur when your cmdlets do not follow PowerShell standards. Please check [this page](https://github.com/Azure/azure-powershell/blob/master/documentation/development-docs/azure-powershell-design-guidelines.md) to ensure you are following PowerShell guidelines. Issues with severity 0 or 1 must be addressed, while issues with severity 2 are advisory. If you have an issue with severity 0 or 1 that has been approved by the Azure PowerShell team, you can suppress them following these steps:
45
+
Signature issues occur when your cmdlets do not follow PowerShell standards. Please check the [_Cmdlet Best Practices_](https://github.com/Azure/azure-powershell/blob/master/documentation/development-docs/design-guidelines/cmdlet-best-practices.md) and the [_Parameter Best Practices_](https://github.com/Azure/azure-powershell/blob/master/documentation/development-docs/design-guidelines/parameter-best-practices.md) documents to ensure you are following PowerShell guidelines. Issues with severity 0 or 1 must be addressed, while issues with severity 2 are advisory. If you have an issue with severity 0 or 1 that has been approved by the Azure PowerShell team, you can suppress them following these steps:
46
46
47
47
- Download the `SignatureIssues.csv` file from the Jenkins build
48
48
- Open the file using a text editor (such as VS Code) and copy each of the errors you'd like to suppress
0 commit comments