Skip to content

Commit c2f7463

Browse files
committed
Merge remote-tracking branch 'upstream/main' into AB#7246-Troubleshooting-and-Adjusting-Concurrent-Connection-Limits-in-SSH
2 parents 00b8877 + f0b0be3 commit c2f7463

File tree

58 files changed

+121
-144
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+121
-144
lines changed

support/azure/azure-storage/blobs/alerts/storage-explorer-troubleshooting.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@ Once added to the `docker` group, restart your machine. For more information, se
744744

745745
### Verify the Docker context
746746

747-
Make sure you're using the correct Docker context that is managing your containers. You can check your current context by running:
747+
Make sure you're using the correct Docker context that's managing your containers. You can check your current context by running:
748748

749749
```bash
750750
docker context ls
@@ -838,6 +838,34 @@ docker run \
838838
mcr.microsoft.com/azure-storage/azurite
839839
```
840840

841+
## Storage Explorer doesn't run within FSLogix session
842+
843+
If FSLogix manages your user profile, Storage Explorer might be unable to run due to an `EEXIST` error. The error occurs due to a known issue with recent versions of FSLogix. If you encounter the error, you can work around it by following these steps:
844+
845+
1. Open the Group Policy Management Console (gpmc.msc).
846+
847+
2. Create or edit a Group Policy Object (GPO) that targets your AVD session hosts.
848+
849+
3. Navigate to: Computer Configuration > Preferences > Windows Settings > Registry.
850+
851+
4. Add a new Registry Item with the following settings:
852+
853+
| Action | Update |
854+
|------------|--------------------------------------------|
855+
| Hive | HKEY_LOCAL_MACHINE |
856+
| Key Path | SYSTEM\CurrentControlSet\Services\frxdrvvt |
857+
| Value Name | SupportedFeatures |
858+
| Value Type | REG_DWORD |
859+
| Value Data | 11 (0xB) |
860+
861+
5. Apply the GPO and reboot the session hosts.
862+
863+
> [!TIP]
864+
> You can also add registry items to the following key paths:
865+
>
866+
> - SYSTEM\CurrentControlSet\Services\frxdrv
867+
> - SYSTEM\CurrentControlSet\Services\frxccd
868+
841869
## Next steps
842870

843871
If none of these solutions work for you, use one of the following methods:

support/azure/azure-storage/blobs/connectivity/storage-use-azcopy-troubleshoot.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Troubleshoot issues in AzCopy (Azure Storage)
33
description: Understand how to apply workarounds for common Azure Storage issues that occur in AzCopy version 10.
44
ms.service: azure-storage
5-
ms.date: 05/08/2024
5+
ms.date: 10/06/2025
66
editor: v-jsitser
77
ms.reviewer: abail, broder, schoag, dafalkne, shaas, raharina, normesta, azuresamfilesmigcic, azurestocic, v-weizhu, v-leedennis
88
ms.custom: sap:Connectivity
@@ -29,6 +29,8 @@ Any other nonzero exit code (such as `OOMKilled`) might be generated by the syst
2929

3030
In some cases, "403" errors can cause a failed transfer. If this issue occurs, other attempts to transfer files are likely to fail until you resolve the issue. "403" errors can be caused by authentication and authorization issues. They can also occur if requests are blocked by the storage account firewall configuration.
3131

32+
This section covers a few common causes for 403 errors. For a comprehensive troubleshooting guide, see [Troubleshoot 403 errors](../authentication/storage-troubleshoot-403-errors.md).
33+
3234
### Authentication and authorization issues
3335

3436
"403" errors that prevent data transfer occur because of issues that involve SAS tokens, role-based access control (Azure RBAC) roles, and access control list (ACL) configurations.
@@ -43,6 +45,8 @@ If you use a shared access signature (SAS) token, make sure that the following s
4345

4446
- You generated the token by using an official SDK or tool. Try Storage Explorer if you haven't already.
4547

48+
For a complete checklist of SAS issues that can cause 403 errors, see [SAS tokens](../authentication/storage-troubleshoot-403-errors.md#sas-tokens).
49+
4650
#### Azure RBAC
4751

4852
If you use Azure RBAC roles through the `azcopy login` command, verify that you have the appropriate Azure roles assigned to your identity (for example, the Storage Blob Data Contributor role).
@@ -78,19 +82,21 @@ For more information about this property and its associated configuration settin
7882

7983
#### Transfer data from or to a local hosting component
8084

81-
If you're uploading or downloading data between a storage account and an on-premises hosting component, make sure that the hosting component that runs AzCopy can access either the source or destination storage account. You might have to use IP network rules in the firewall settings of either the source or destination accounts to allow access from the public IP address of the hosting component.
85+
If you're uploading or downloading data between a storage account and an on-premises hosting component, make sure that the hosting component that runs AzCopy can access either the source or destination storage account. You might have to use IP network rules in the firewall settings of either the source or destination accounts to allow access from the public IP address of the hosting component. For a checklist of common causes, see [Public network endpoint](../authentication//storage-troubleshoot-403-errors.md#public-network-endpoint).
8286

8387
#### Transfer data between storage accounts
8488

8589
"403" authorization errors can prevent you from transferring data between accounts by using the client hosting component on which AzCopy is running.
8690

87-
If you're copying data between storage accounts, make sure that the hosting component that runs AzCopy can access both the source and the destination account. You might have to use IP network rules in the firewall settings of both the source and destination accounts to allow access from the public IP address of the hosting component. The service uses the IP address of the AzCopy client hosting component to authorize the source to destination traffic. To learn how to add a public IP address to the firewall settings of a storage account, see [Grant access from an internet IP range](/azure/storage/common/storage-network-security#grant-access-from-an-internet-ip-range).
91+
If you're copying data between storage accounts, make sure that the hosting component that runs AzCopy can access both the source and the destination account. You might have to use IP network rules in the firewall settings of both the source and destination accounts to allow access from the public IP address of the hosting component. The service uses the IP address of the AzCopy client hosting component to authorize the source to destination traffic. To learn how to add a public IP address to the firewall settings of a storage account, see [Grant access from an internet IP range](/azure/storage/common/storage-network-security#grant-access-from-an-internet-ip-range).
92+
93+
For a checklist of other issues to consider, see [Public network endpoint](../authentication//storage-troubleshoot-403-errors.md#public-network-endpoint).
8894

8995
In case your VM doesn't or can't have a public IP address, consider using a private endpoint. See [Use private endpoints for Azure Storage](/azure/storage/common/storage-private-endpoints).
9096

9197
#### Use Private Link
9298

93-
[Private Link](/azure/private-link/private-link-overview) is at the virtual network/subnet level. If you want AzCopy requests to go through Private Link, then AzCopy must make those requests from a VM that's running in that virtual network/subnet. For example, suppose that you configure Private Link in VNet1/Subnet1, but the VM on which AzCopy runs is in VNet1/Subnet2. In this scenario, AzCopy requests don't use Private Link, and the requests are expected to fail.
99+
[Private Link](/azure/private-link/private-link-overview) is at the virtual network/subnet level. If you want AzCopy requests to go through Private Link, then AzCopy must make those requests from a VM that's running in that virtual network/subnet. For example, suppose that you configure Private Link in VNet1/Subnet1, but the VM on which AzCopy runs is in VNet1/Subnet2. In this scenario, AzCopy requests don't use Private Link, and the requests are expected to fail. For a checklist of other issues to consider, see [Private endpoints](../authentication/storage-troubleshoot-403-errors.md#private-endpoints).
94100

95101
## Proxy-related errors
96102

@@ -163,5 +169,6 @@ If you're copying data between accounts by using AzCopy, the quality and reliabi
163169

164170
- [Get started with AzCopy](/azure/storage/common/storage-use-azcopy-v10)
165171
- [Find errors and resume jobs by using log and plan files in AzCopy](/azure/storage/common/storage-use-azcopy-configure)
172+
- [Troubleshoot 403 errors](../authentication/storage-troubleshoot-403-errors.md)
166173

167174
[!INCLUDE [Azure Help Support](../../../../includes/azure-help-support.md)]

support/dynamics/gp/activity-this-currency-already-exists.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To resolve this issue, follow these steps:
2929
1. Create a backup of the company database.
3030

3131
> [!NOTE]
32-
> If you want to, you can try the steps in a test company database, and then implement them in the company database. For more information, see [KB - Set up a test company that has a copy of live company data for Microsoft Dynamics GP by using Microsoft SQL Server](https://support.microsoft.com/help/871973).
32+
> If you want to, you can try the steps in a test company database, and then implement them in the company database. For more information, see [Set up a test company that has a copy of live company data by using Microsoft Dynamics GP on MSDE 2000, SQL Server 2005 Express, SQL Server 2008 Express, or SQL Server 2012 Express](./how-to-set-up-test-company-that-has-copy-of-live-company.md).
3333
3434
2. Run **Check Links** on the Multicurrency tables. To do it in Microsoft Dynamics 10.0, follow these steps:
3535

support/dynamics/gp/add-buckets-payables-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,6 @@ To assign security permissions to the modified report, use one of the following
220220

221221
- [How to add buckets to the Payables Management "Aged Trial Balance" report for the summary print option in Report Writer in Microsoft Dynamics GP](https://support.microsoft.com/help/948664)
222222

223-
- [How to add a new bucket to the "Aged Trial Balance-Detail with Options" report in Payables Management in Microsoft Dynamics GP](https://support.microsoft.com/help/864847)
223+
- [How to add a new bucket to the "Aged Trial Balance-Detail with Options" report in Payables Management in Microsoft Dynamics GP](./add-a-new-bucket-balance-detail-report.md)
224224

225225
[!INCLUDE [Publishing Disclaimer](../../includes/publishing-disclaimer.md)]

support/dynamics/gp/add-vendor-ship-to-address-to-purchase-order-blank-form.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,4 @@ To assign security permissions to the modified report, use one of the following
9494
9595
## References
9696

97-
For more information about the ship-to address, click the following article number to view the article in the Microsoft Knowledge Base:
98-
99-
[887113](https://support.microsoft.com/help/887113) How the ship-to addresses for purchase orders work in Microsoft Dynamics GP
97+
For more information about the ship-to address, see [How the ship-to addresses for purchase orders work in Microsoft Dynamics GP](./how-the-ship-to-addresses-for-purchase-orders-work.md).

support/dynamics/gp/bank-country-region-is-missing-inactive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,4 @@ This error message can occur if the VADCDTRO (Vendor Address Code - Remit To) fi
109109
110110
## References
111111
112-
For more information and troubleshooting tips to generate the EFT file for Payables Management in Microsoft Dynamics GP 10.0, see [KB - Guidelines to follow when you generate EFT files or EFT prenote files in Electronic Funds Transfer for Payables Management or Receivables Management in Microsoft Dynamics GP](https://support.microsoft.com/help/945955).
112+
For more information and troubleshooting tips to generate the EFT file for Payables Management in Microsoft Dynamics GP 10.0, see [Guidelines to follow when you generate EFT files or EFT prenote files in Electronic Funds Transfer for Payables Management or Receivables Management in Microsoft Dynamics GP](./guidelines-generate-eft-files.md).

support/dynamics/gp/change-the-current-sql-server-name.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ The following steps assume the computer on which the Web Services for Microsoft
6666
6767
## References
6868
69-
For more information, see [How to transfer an existing Microsoft Dynamics GP, Microsoft Small Business Financials, or Microsoft Small Business Manager installation to a new server that is running Microsoft SQL Server](https://support.microsoft.com/help/878449).
69+
For more information, see [How to transfer an existing Microsoft Dynamics GP, Small Business Financials, or Small Business Manager installation to a new server that is running SQL Server](./transfer-gp-installation-new-server.md).

support/dynamics/gp/checks-not-printed-payables-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This problem occurs for one or more of the following reasons:
3232
To resolve this problem, follow these steps:
3333

3434
1. If the **Batch ID** has a status of **Posting**, follow these steps:
35-
1. Follow the steps in the following Knowledge Base article: [KB850289 - A batch is held in the Posting, Receiving, Busy, Marked, Locked, or Edited status in Microsoft Dynamics GP](https://support.microsoft.com/topic/850289)</br>An Automated Solution script may be available to perform this task.
35+
1. Follow the steps in: [A batch is held in the Posting, Receiving, Busy, Marked, Locked, or Edited status in Microsoft Dynamics GP](./a-batch-is-held-in-the-several-statuses.md)</br>An Automated Solution script may be available to perform this task.
3636
1. On the **Transactions** menu, point to **Purchasing**, and then click **Batches**.
3737
1. In the Payables Batch Entry window, click the appropriate batch in the **Batch ID** list, and then click **Delete**. When you are prompted to delete the batch, click **Delete**.
3838
1. On the **Transactions** menu, point to **Purchasing**, and then click **Select Checks**.

support/dynamics/gp/combine-dynamicsdotdic-core-dictionary-and-extracted-dictionary-using-dexterity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ If you combine an extracted source dictionary and a core dictionary, you create
8383

8484
For more information about how to create a chunk file from a Development Dictionary, see [How to create a chunk file in Great Plains 8.0 Dexterity](create-a-chunk-file-dexterity.md).
8585

86-
For more information about how to use Source Code Control to upgrade a Development Dictionary, see [How to upgrade a Dexterity-based application in Microsoft Dynamics GP or in Microsoft Great Plains by using the Dexterity Source Code Control Service](https://support.microsoft.com/help/910527).
86+
For more information about how to use Source Code Control to upgrade a Development Dictionary, see [How to upgrade a Dexterity-based application in Microsoft Dynamics GP by using the Dexterity Source Code Control Service](./upgrade-a-dexterity-based-application.md).

support/dynamics/gp/computer-check-batch-not-have-correct-posting-status.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ When you view the Computer Checks batch ID in the Payables Batch IDs window, the
2424

2525
If a backup is unavailable to restore the Payables Computer Check batch, follow these steps:
2626

27-
1. If you cannot change the status of the Payables Computer Check batch to the **Available** status, complete the procedure in Microsoft Knowledge Base article 850289.
27+
1. If you cannot change the status of the Payables Computer Check batch to the **Available** status, complete the procedure in:
2828

29-
[850289](https://support.microsoft.com/help/850289) A batch is held in the Posting, Receiving, Busy, Marked, Locked, or Edited status in Microsoft Dynamics GP
29+
[A batch is held in the Posting, Receiving, Busy, Marked, Locked, or Edited status in Microsoft Dynamics GP](./a-batch-is-held-in-the-several-statuses.md)
3030

3131
2. Click **Computer Checks**, click **Select**, and then click **Delete**.
3232

0 commit comments

Comments
 (0)