You can uninstall Windows update using Command Prompt:
uninstall: wusa /uninstall /kb:[id]
If you want to remove KB5001330, use the command uninstall: wusa /uninstall /kb:5001330
Type “Y” when asked to restart the PC and finish the uninstallation.
If you want to automatically restart the computer after the update is removed, you can use the following command instead:
wusa /uninstall /kb:[id] /quiet
If you want to get a prompt asking you to restart the computer, use the following command instead:
wusa /uninstall /kb:[id] /quiet /promptrestart
If you don’t want to restart the computer after removing the patch, use the following command:
wusa /uninstall /kb:[id] /quiet /norestart
Note that you must restart the computer manually to properly remove the patch. The above command will only delay the process and system reboot is still mandatory.