Skip to content

Commit edaccbf

Browse files
committed
Add note about old unsupported endpoints
1 parent f191286 commit edaccbf

File tree

3 files changed

+29
-24
lines changed

3 files changed

+29
-24
lines changed

powershell-gallery/docs-conceptual/getting-started.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: This article explains how to get started using the PowerShell Gallery and the PowerShellGet cmdlets
3-
ms.date: 06/19/2025
3+
ms.date: 09/09/2025
44
ms.topic: get-started
55
title: Get Started with the PowerShell Gallery
66
---
@@ -128,6 +128,8 @@ installed directly from the PowerShell Gallery.
128128

129129
## Network access to the PowerShell Gallery
130130

131+
[!INCLUDE [TLS 1.2 Requirement](../includes/tls-gallery.md)]
132+
131133
These hostnames should be added to the allow lists that control access from your network.
132134

133135
Hosts required for package discovery and download:
@@ -140,7 +142,9 @@ Hosts required when using the PowerShell Gallery website:
140142
- `*.powershellgallery.com` - website
141143
- `go.microsoft.com` and `aka.ms` - redirection services
142144

143-
[!INCLUDE [TLS 1.2 Requirement](../includes/tls-gallery.md)]
145+
> [!NOTE]
146+
> These endpoints have changed. The old endpoints that ended with `azureedge.net` are no longer
147+
> supported.
144148
145149
## Related links
146150

powershell-gallery/docs-conceptual/how-to/getting-support/troubleshooting-cmdlets.md

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: This article provide information and steps for troubleshooting errors using the PowerShell Gallery
3-
ms.date: 06/12/2025
3+
ms.date: 09/09/2025
44
title: Troubleshooting cmdlets
55
---
66
# Troubleshooting cmdlets
@@ -21,26 +21,31 @@ Update-Module Azure -Verbose
2121

2222
## Required network endpoints
2323

24-
The Install and Update cmdlets require internet access to connect to the network endpoints used by
25-
the PowerShell Gallery. Ensure that your network access policies allow you to connect to TCP port
26-
443 of the following endpoints.
24+
The `Install-*` and `Update-*` cmdlets require internet access to connect to the network endpoints
25+
used by the PowerShell Gallery.
26+
27+
[!INCLUDE [TLS 1.2 Requirement](../includes/tls-gallery.md)]
28+
29+
Ensure that your network access policies allow you to connect to TCP port 443 of the following
30+
endpoints.
2731

2832
Hosts required for package discovery and download:
2933

30-
- `cdn.oneget.org` - CDN hostname
31-
- `cdn.powershellgallery.com` - CDN hostname
34+
- `cdn.oneget.org`
35+
- `cdn.powershellgallery.com`
3236

3337
Hosts required when using the PowerShell Gallery website:
3438

35-
- `devopsgallerystorage.blob.core.windows.net` - storage account hostname
3639
- `*.powershellgallery.com` - website
37-
- `go.microsoft.com` - redirection service
40+
- `go.microsoft.com` and `aka.ms` - redirection services
3841

3942
> [!NOTE]
40-
> Cmdlets that interact with the PowerShell Gallery can fail with unexpected errors when there is an
41-
> outage of the PowerShell Gallery services. To see the current status of the PowerShell Gallery,
42-
> see the [PowerShell Gallery Status][01]
43-
> page on GitHub.
43+
> These endpoints have changed. The old endpoints that ended with `azureedge.net` are no longer
44+
> supported.
45+
46+
Cmdlets that interact with the PowerShell Gallery can fail with unexpected errors when there is an
47+
outage of the PowerShell Gallery services. To see the current status of the PowerShell Gallery, see
48+
the [PowerShell Gallery Status][01] page on GitHub.
4449

4550
<!-- link references -->
4651
[01]: https://github.com/PowerShell/PowerShellGallery/blob/master/psgallery_status.md
Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,16 @@
11
---
22
author: sdwheeler
33
ms.author: sewhee
4-
ms.date: 11/18/2020
4+
ms.date: 09/09/2025
55
ms.topic: include
66
---
77
<!-- markdownlint-disable first-line-h1 -->
88
> [!IMPORTANT]
9-
> As of April 2020, the PowerShell Gallery no longer supports Transport Layer Security (TLS)
10-
> versions 1.0 and 1.1. If you are not using TLS 1.2 or higher, you will receive an error when
11-
> trying to access the PowerShell Gallery. Use the following command to ensure you are using TLS
12-
> 1.2:
9+
> The PowerShell Gallery requires Transport Layer Security (TLS) 1.2 or higher. If you are not using
10+
> TLS 1.2 or higher, you will receive an error when trying to access the PowerShell Gallery. Use the
11+
> following command to ensure you are using TLS 1.2:
1312
>
1413
> ```powershell
15-
> [Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12
14+
> [Net.ServicePointManager]::SecurityProtocol =
15+
> [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12
1616
> ```
17-
>
18-
> For more information, see the
19-
> [announcement](https://devblogs.microsoft.com/powershell/powershell-gallery-tls-support/) in the
20-
> PowerShell blog.

0 commit comments

Comments
 (0)