Hello
Thank you for posting in Microsoft Community forum.
For the issue of removing updates and then restarting and then reappearing, you can try the following solutions:
Block updates using Group Policy:
Open the Group Policy Editor (gpedit.msc).
Navigate to Computer Configuration > Administrative Templates > Windows Components > Windows Update.
Find and enable the "Configure Automatic Updates" policy and select "2 - Notify for download and automatic installation".
This will prevent updates from being automatically installed, and you can manually select the updates to install.
Use command-line tools:
Try to use a PowerShell script to hide updates:
$HideList = "KB5046714", "KB5044029"
foreach ($Update in $HideList) {
Hide-WindowsUpdate -KBArticleID $Update -Confirm:$false
}
You need to install the Windows Update PowerShell module first, which can be installed with the following command:
Install-Module -Name PSWindowsUpdate -Force
Check the update service and task schedule:
Make sure the Windows Update service (wuauserv) and Task Scheduler are not re-enabled.
Open Services (services.msc), find the Windows Update service, stop and disable it.
Open Task Scheduler (taskschd.msc), navigate to Task Scheduler Library > Microsoft > Windows > WindowsUpdate, and disable the relevant tasks.
Use third-party tools:
There are some third-party tools that can help manage and block Windows Updates, such as Windows Update MiniTool.
The problem you describe of a black screen after logon can be tricky, especially if there are a wide variety of devices and configurations in the organization. A recent update may be the cause of the problem. Update KB5034843 has been reported to cause similar problems. Try uninstalling this update to see if it solves the problem.
after update of KB5034843 screen goes blank after login. Have to use - Microsoft Community
Best Regards,
Wesley Li