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
In PowerShell 5, the certificate store can be managed and inspected with the [PKI](/powershell/module/pkiclient) module. For PowerShell 6, the process is more complicated. The following scripts show you how to import an existing certificate into the certificate store accessible by PowerShell.
74
+
In PowerShell 5.1, the certificate store can be managed and inspected with the [PKI](/powershell/module/pkiclient) module. For PowerShell Core 6.x and later, the process is more complicated. The following scripts show you how to import an existing certificate into the certificate store accessible by PowerShell.
Copy file name to clipboardExpand all lines: docs-conceptual/azps-2.1.0/install-az-ps.md
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ are supported.
19
19
20
20
Azure PowerShell works with PowerShell 5.1 or higher on Windows, or PowerShell Core 6.x and later on
21
21
all platforms. If you aren't sure if you have PowerShell, or are on macOS or Linux,
22
-
[install the latest PowerShell Core](/powershell/scripting/install/installing-powershell#powershell-core).
22
+
[install the latest version of PowerShell Core](/powershell/scripting/install/installing-powershell#powershell-core).
23
23
24
24
To check your PowerShell version, run the command:
25
25
@@ -95,12 +95,17 @@ across PowerShell sessions, see [Persist user credentials across PowerShell sess
95
95
96
96
## Update the Azure PowerShell module
97
97
98
-
You can update your Azure PowerShell installation by running [Update-Module](/powershell/module/powershellget/update-module). This command does __not__ uninstall older versions.
98
+
Because of how the Az module is package, the [Update-Module](/powershell/module/powershellget/update-module)
99
+
command won't update your installation correctly. Az is technically a meta-module, encompassing all of
100
+
the submodules that contain cmdlets to interact with Azure services. That means that to update the
101
+
Azure PowerShell module, you will need to __reinstall__, rather than just __update__. This is done in the
102
+
same way as installing, but you may need to add the `-Force` argument:
99
103
100
-
```powershell-interactive
101
-
Update-Module -Name Az
104
+
```powershell
105
+
Install-Module -Name Az -AllowClobber -Force
102
106
```
103
107
108
+
Although this can overwrite installed modules, you may still have older versions left on your system.
104
109
To learn how to remove old versions of Azure PowerShell from your system, see [Uninstall the Azure PowerShell module](uninstall-az-ps.md).
Copy file name to clipboardExpand all lines: docs-conceptual/azps-2.1.0/migrate-az-1.0.0.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -186,15 +186,15 @@ The tools for these services are no longer actively supported. Customers are en
186
186
### Windows PowerShell 5.1 and .NET 4.7.2
187
187
188
188
Using Az with PowerShell 5.1 for Windows requires the installation of .NET Framework 4.7.2. Using PowerShell
189
-
Core 6.x or later does not have a .NET Framework dependency.
189
+
Core 6.x or later does not require .NET Framework.
190
190
191
191
### Temporary removal of User login using PSCredential
192
192
193
-
Due to changes in the authentication flow for .NET Standard, we are temporarily removing user login via PSCredential. This capability will be re-introduced in the 1/15/2019 release for Windows PowerShell 5.1. This is discussed in detail in [this GitHub issue.](https://github.com/Azure/azure-powershell/issues/7430)
193
+
Due to changes in the authentication flow for .NET Standard, we are temporarily removing user login via PSCredential. This capability will be re-introduced in the 1/15/2019 release for PowerShell 5.1 for Windows. This is discussed in detail in [this GitHub issue.](https://github.com/Azure/azure-powershell/issues/7430)
194
194
195
195
### Default device code login instead of web browser prompt
196
196
197
-
Due to changes in the authentication flow for .NET Standard, we are using device login as the default login flow during interactive login. Web browser based login will be re-introduced for Windows PowerShell 5.1 as the default in the 1/15/2019 release. At that time, users will be able to choose device login using a Switch parameter.
197
+
Due to changes in the authentication flow for .NET Standard, we are using device login as the default login flow during interactive login. Web browser based login will be re-introduced for PowerShell 5.1 for Windows as the default in the 1/15/2019 release. At that time, users will be able to choose device login using a Switch parameter.
198
198
199
199
## Module breaking changes
200
200
@@ -207,7 +207,7 @@ This section details specific breaking changes for individual modules and cmdlet
207
207
- Set-AzureRmApiManagementHostnames
208
208
- Update-AzureRmApiManagementDeployment
209
209
- Import-AzureRmApiManagementHostnameCertificate
210
-
- Use **Set-AzApiManagement** cmdlet to set these properites instead
210
+
- Use **Set-AzApiManagement** cmdlet to set these properties instead
211
211
- Removed the following properties:
212
212
- Removed property `PortalHostnameConfiguration`, `ProxyHostnameConfiguration`, `ManagementHostnameConfiguration` and `ScmHostnameConfiguration` of type `PsApiManagementHostnameConfiguration` from `PsApiManagementContext`. Instead use `PortalCustomHostnameConfiguration`, `ProxyCustomHostnameConfiguration`, `ManagementCustomHostnameConfiguration` and `ScmCustomHostnameConfiguration` of type `PsApiManagementCustomHostNameConfiguration`.
213
213
- Removed property `StaticIPs` from PsApiManagementContext. The property has been split into `PublicIPAddresses` and `PrivateIPAddresses`.
@@ -259,8 +259,8 @@ This section details specific breaking changes for individual modules and cmdlet
Copy file name to clipboardExpand all lines: docs-conceptual/azps-2.1.0/uninstall-az-ps.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -145,7 +145,7 @@ part of the `Az.Accounts` module. This removes _all_ AzureRM modules from your m
145
145
Uninstall-AzureRm
146
146
```
147
147
148
-
If you can't successfully run the `Uninstall-AzureRM` command, use the [`Uninstall-AllModules` script](#uninstall-script) provided in this article, with the following invocation:
148
+
If you can't successfully run the `Uninstall-AzureRM` command, use the [`Uninstall-AllModules` script](#uninstall-script) provided in this article with the following invocation:
0 commit comments