Skip to content

Commit 5bbebd7

Browse files
committed
Merge remote-tracking branch 'upstream/main' into AB#7617-Troubleshoot-Windows-Update-Error-0x8024001E
2 parents b3fb73c + 6216438 commit 5bbebd7

8 files changed

Lines changed: 95 additions & 19 deletions

File tree

support/azure/virtual-machines/windows/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ items:
110110
href: ../../../windows-server/installing-updates-features-roles/troubleshoot-windows-update-error-0x80070002.md?context=/troubleshoot/azure/virtual-machines/windows/context/context
111111
- name: Error code 0x8007000d
112112
href: ../../../windows-server/installing-updates-features-roles/error-invalid-data-startup-installing-updates.md?context=/troubleshoot/azure/virtual-machines/windows/context/context
113+
- name: Error code 0x8007000e or 0x800705aa
114+
href: ../../../windows-client/installing-updates-features-roles/error-0x8007000e-0x800705aa-insufficient-virtual-memory.md?context=/troubleshoot/azure/virtual-machines/windows/context/context
113115
- name: Error Code 0x8007045b
114116
href: ../../../windows-server/installing-updates-features-roles/troubleshoot-error-shutdown-in-process.md?context=/troubleshoot/azure/virtual-machines/windows/context/context
115117
- name: Error code 0x80070490
69.3 KB
Loading
57.4 KB
Loading
43.9 KB
Loading
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
title: Troubleshoot Failures When Submitting a Prospective Vendor Registration Request
3+
description: Learn how to fix errors when you submit a Prospective Vendor Registration Request (PVRR). Identify causes such as duplicate vendors or missing contact info.
4+
ms.reviewer: sugaur
5+
ms.date: 11/10/2025
6+
ms.custom: sap:Purchase order procurement and sourcing\Issues with purchase orders
7+
---
8+
9+
# Troubleshoot failures when submitting a Prospective Vendor Registration Request
10+
11+
This article provides troubleshooting guidance for failures that occur when you submit a Prospective Vendor Registration Request (PVRR).
12+
13+
## Symptoms
14+
15+
You experience one or more of the following symptoms:
16+
17+
- You can't submit a PVRR in Microsoft Dynamics 365 Finance and Operations.
18+
- The _Vendor Registration Wizard_ doesn't finish or progress.
19+
20+
## Cause 1: The vendor already exists
21+
22+
A PVRR submission might fail if the vendor already exists in the system. In this situation, the submission creates duplicate records.
23+
24+
### Solution
25+
26+
To avoid duplicate records:
27+
28+
1. Go to **Vendor collaboration > All contacts**.
29+
30+
1. Find the correct vendor contact.
31+
32+
1. To link the existing vendor without creating a new PVRR, select **Provision vendor user**.
33+
34+
:::image type="content" source="./media/unable-to-submit-pvrr/provision-vendor-user.png" alt-text="The vendor contact page that has the provision vendor user button highlighted.":::
35+
36+
## Cause 2: Missing vendor contact information
37+
38+
A PVRR submission might fail if the vendor contact information is missing in the **Vendor collaboration** > **All contacts** screen.
39+
40+
### Solution
41+
42+
To add the required vendor contact info:
43+
44+
1. Go to **System administration** > **Users**, and delete the existing user record that's associated with the vendor.
45+
46+
:::image type="content" source="./media/unable-to-submit-pvrr/delete-vendor.png" alt-text="The users page that has the delete button highlighted.":::
47+
48+
1. Reinvite the vendor by selecting **Procurement and Sourcing** > **Vendor collaboration requests** > **Prospective vendor request registration**.
49+
50+
:::image type="content" source="./media/unable-to-submit-pvrr/invite-user.png" alt-text="The Prospective vendor request registration page that has the Invite user button highlighted.":::
51+
52+
This process creates both the user and vendor contacts.
53+
54+
## Cause 3: Incorrect user provisioning steps
55+
56+
A PVRR submission might fail if the user provisioning steps aren't followed correctly.
57+
58+
### Solution
59+
60+
Follow your configured vendor request approval process (automatic or manual). For more information, see: [Onboard vendors](/dynamics365/supply-chain/procurement/vendor-onboarding)

support/dynamics-365/supply-chain/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,8 @@ items:
151151
href: procurement/default-tax-group-and-discount.md
152152
- name: Error "Object reference not set" occurs during purchase order confirmation
153153
href: procurement/object-reference-not-set.md
154+
- name: Failures when submitting a Prospective Vendor Registration Request
155+
href: procurement/unable-to-submit-pvrr.md
154156
- name: Imported purchase orders show incorrect line numbers
155157
href: procurement/line-number-increments.md
156158
- name: Order taker not auto-filled when creating purchase or sales orders

support/entra/entra-id/dir-dmns-obj/pending-devices.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,17 @@ To fix the problem, unregister the device by running `dsregcmd /leave` at an ele
5454
## Get a list of pending devices
5555

5656
1. The [Microsoft Graph PowerShell SDK](/powershell/microsoftgraph/installation?view=graph-powershell-1.0&preserve-view=true) must be installed to execute Microsoft Graph PowerShell commands.
57-
2. Use the `Connect-MgGraph` command to sign in to your Microsoft Entra tenant. For more information, see [Get started with the Microsoft Graph PowerShell SDK](/powershell/microsoftgraph/get-started?view=graph-powershell-1.0&preserve-view=true).
58-
3. Count all pending devices:
59-
60-
```powershell
61-
(Get-MgDevice -All -Filter "TrustType eq 'ServerAd'" | Where-Object{($_.ProfileType -ne "RegisteredDevice") -and (-not $_.AlternativeSecurityIds)}).count
62-
```
57+
1. Use the `Connect-MgGraph` command to sign in to your Microsoft Entra tenant. For more information, see [Get started with the Microsoft Graph PowerShell SDK](/powershell/microsoftgraph/get-started?view=graph-powershell-1.0&preserve-view=true).
58+
1. Count all pending devices:
6359

60+
```powershell
61+
(Get-MgDevice -All -Filter "TrustType eq 'ServerAd'" | Where-Object{((-not $_.AlternativeSecurityIds)}).count
62+
```
63+
6464
You can also save the returned data in a CSV file:
65-
66-
```powershell
67-
Get-MgDevice -All -Filter "TrustType eq 'ServerAd'" | Where-Object{($_.ProfileType -ne "RegisteredDevice") -and (-not $_.AlternativeSecurityIds)} | select-object -Property AccountEnabled, Id, DeviceId, DisplayName, OperatingSystem, OperatingSystemVersion, TrustType | export-csv pendingdevicelist-summary.csv -NoTypeInformation
68-
```
69-
65+
66+
```powershell
67+
Get-MgDevice -All -Filter "TrustType eq 'ServerAd'" | Where-Object{(-not $_.AlternativeSecurityIds)} | select-object -Property AccountEnabled, Id, DeviceId, DisplayName, OperatingSystem, OperatingSystemVersion, TrustType | export-csv pendingdevicelist-summary.csv -NoTypeInformation
68+
```
69+
7070
[!INCLUDE [Azure Help Support](../../../includes/azure-help-support.md)]

support/windows-client/installing-updates-features-roles/error-0x8007000e-0x800705aa-insufficient-virtual-memory.md

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
---
22
title: Troubleshoot Windows Update Error Code 0x8007000e or 0x800705aa
33
description: Discusses how to resolve Windows Update error code 0x8007000e or 0x800705aa.
4-
ms.date: 10/15/2025
4+
ms.date: 11/26/2025
55
manager: dcscontentpm
66
audience: itpro
77
ms.topic: troubleshooting
88
ms.reviewer: kaushika
99
ms.custom:
10-
- sap:windows servicing, updates and features on demand\windows update - install errors unknown or code not listed
10+
- sap:windows servicing, updates and features on demand\windows update - install errors starting with 0x8007 (error)
1111
- pcy:WinComm Devices Deploy
1212
appliesto:
1313
- ✅ <a href=https://learn.microsoft.com/windows/release-health/supported-versions-windows-client target=_blank>Supported versions of Windows Client</a>
1414
- ✅ <a href=https://learn.microsoft.com/windows/release-health/windows-server-release-info target=_blank>Supported versions of Windows Server</a>
15+
- ✅ <a href=https://learn.microsoft.com/lifecycle/products/azure-virtual-machine target=_blank>Supported versions of Azure Virtual Machine</a>
1516
---
1617

1718
# Troubleshoot Windows Update error code 0x8007000e or 0x800705aa
@@ -33,11 +34,15 @@ Insufficient system resources exist to complete the requested service.
3334
```
3435

3536
> [!NOTE]
36-
> The second message typically occurs when you use `dism /online /add-package /packagepath:<path of .cab file>`to install the update.
37+
> The second message typically occurs if you use `dism /online /add-package /packagepath:<path of .cab file>`to install the update.
38+
39+
When you review events in Event Viewer, you might also find Event ID 2004 recorded. The description of this event resembles the following example:
40+
41+
> Windows successfully diagnosed a low virtual memory condition. The following programs consumed the most virtual memory: java.exe (1152) consumed 33821605888 bytes, java.exe (6316) consumed 5259997184 bytes, and java.exe (12536) consumed 1569894400 bytes.
3742
3843
## Cause
3944

40-
This issue occurs if the computer doesn't have enough available virtual memory for Windows to install the update. The most common causes of this issue are the following conditions:
45+
This issue occurs if the computer or virtual machine (VM) doesn't have enough available virtual memory for Windows to install the update. The most common causes of this issue are the following conditions:
4146

4247
- Third-party applications are consuming lots of virtual memory.
4348
- The computer's virtual memory isn't managed automatically. Instead, it's manually configured.
@@ -61,13 +66,20 @@ After the computer restarts, try again to update it.
6166

6267
## Resolution
6368

64-
To configure the computer to automatically manage its virtual memory, follow these steps.
69+
> [!IMPORTANT]
70+
> Before you troubleshoot this issue, back up the operating system disk. For information about this process for VMs, see [About Azure Virtual Machine restore](/azure/backup/about-azure-vm-restore).
71+
72+
> [!NOTE]
73+
> If the affected computer is a VM, consider upgrading the virtual hardware of the VM to increase its available memory resources.
74+
75+
To configure the computer to automatically manage its virtual memory, follow these steps:
6576

66-
1. To open **System Properties**, select Search and then enter **sysdm.cpl**.
67-
1. In **System Properties**, select **Advanced**, and then under **Performance**, select **Settings**.
68-
1. In **Performance Options**, select **Advanced**, and then under **Virtual memory**, select **Change**.
77+
1. Open **System Properties**: Select **Search**, and enter **sysdm.cpl**.
78+
1. In **System Properties**, select **Advanced** > **Performance** > **Settings**.
79+
1. In **Performance Options**, select **Advanced** > **Virtual memory** > **Change**.
6980
1. Make sure that **Automatically manage paging file size for all drives** is selected, and then select **OK**.
7081
1. Restart the computer.
82+
1. To make sure that this issue doesn't reoccur, monitor the computer's available memory resources.
7183

7284
## More information
7385

0 commit comments

Comments
 (0)