Hello G Boz, I’m Henry, and I’d like to share my thoughts on your issue.
From my research, the KB update itself does not appear to have widespread problems. Based on your description, the sequence seems to be: KB installed → Git stopped working → KB uninstalled → Git still broken. This suggests the underlying Windows Server image may have become unhealthy. A quick option is to re‑run the Cygwin setup, which forces Windows to check all installed packages for corruption and repair inconsistencies without affecting your data or settings. However, this only addresses the Cygwin symptoms.
If the Cygwin repair does not work, or if you experience any other issues, I strongly recommend repairing the Windows image itself using the dism command with an installation source as the next step. Please ensure you have a recent backup before starting.
- Download the Windows Server ISO from Microsoft: Windows Server 2019 Evaluation Center
- Mount the ISO
- Right‑click the ISO and select Mount. Note the drive letter (e.g., X:).
- Open Command Prompt as Administrator and run
dism /get-wiminfom /wimfile:X:\sources\install.wim
- Run DISM with a Source
dism /online /cleanup-image /restorehealth /source:WIM:X:\sources\install.wim:1 /limitaccessReplaceX:with your ISO drive letter and:1with the correct index. This forces DISM to use local files instead of Windows Update. - Run System File Checker (SFC):
sfc /scannowAfter completion, reboot the server. With the OS image repaired, the Cygwin issue may resolve automatically.
I hope you’ll try these steps and let me know how it goes. If this answer helps, feel free to click Accept Answer so others can benefit too.