at least that is what the Event Viewer is showing.
Here is my Possible solution. Mind you this is only for Home edition. For Pro or enterprise, you can use you group policy editor.
Steps:
Open Registry Editor:
Press Win + R, type regedit, and press Enter.
Navigate to BITS Registry Key:
Go to HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\BITS.
If the BITS key doesn’t exist, right-click the Windows key, select New > Key, and name it BITS.
Create or Modify DWORD Values:
Right-click in the BITS key, select New > DWORD (32-bit) Value, and create the following:
Name: MaxJobsPerMachine
Value: Set to the desired number of jobs (e.g., 500 in decimal).
Name: MaxJobsPerUser
Value: Set to the desired number of jobs (e.g., 100 in decimal).
To set the value, double-click the DWORD, enter the number, and click OK.
Restart BITS Service:
Open Command Prompt as Administrator (Win + S, type cmd, right-click, select Run as administrator).
Run:
cmd
net stop bits
net start bits
Verify:
Use PowerShell to check BITS jobs:
powershell
Get-BitsTransfer -AllUsers
Confirm the registry values are applied in regedit.
Note: Be cautious when editing the Registry. Incorrect changes can cause system issues. Back up the Registry before proceeding (in regedit, go to File > Export).
I hope this helps others. And I hope this does work, for fixing my issue.