Skip to content

Commit f577c77

Browse files
authored
Added faq article and updated toc (MicrosoftDocs#1523)
1 parent 73a49f9 commit f577c77

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

docs-conceptual/azps-4.5.0/faq.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: Frequently Asked Questions (FAQ)
3+
description: Frequently Asked Questions about Azure PowerShell.
4+
ms.devlang: powershell
5+
ms.topic: conceptual
6+
ms.date: 08/17/2020
7+
---
8+
9+
# Frequently asked questions about Azure PowerShell
10+
11+
## What is Azure PowerShell?
12+
13+
Azure PowerShell is a set of cmdlets that allows you to manage Azure resources directly with
14+
PowerShell. In December 2018, the Az PowerShell module became generally available. It's now the
15+
recommended PowerShell module for interacting with Azure. To learn more about the Az PowerShell
16+
module, see
17+
[Introducing the new Azure PowerShell Az module](/powershell/azure/new-azureps-module-az).
18+
19+
## How do I disable breaking change warning messages in Azure PowerShell?
20+
21+
To suppress the breaking change warning messages in Azure PowerShell, you'll need to set the
22+
environment variable `SuppressAzurePowerShellBreakingChangeWarnings` to `true`.
23+
24+
```azurepowershell
25+
Set-Item -Path Env:\SuppressAzurePowerShellBreakingChangeWarnings -Value $true
26+
```

docs-conceptual/azps-4.5.0/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,3 +98,5 @@
9898
href: migrate-az-3.0.0.md
9999
- name: Az 4.1.0 breaking changes
100100
href: migrate-az-4.1.0.md
101+
- name: Frequently Asked Questions
102+
href: faq.md

0 commit comments

Comments
 (0)