Recently I updated windows 10 to 1903 version from 1803 but the booting and closing speed is quite slower than before after updating. I got seldom software and background application running on my PC and hardisk space is quite efficient.
1, I cleaned up the hardisk and done fragmentation optimizing. Still slow.
2, I done clean boot from msconfig to close all booting items. Still slow.
3, I checked windows components installed on my PC from wizapp.cpl and found there are many Visual Studio components 2010 inside although I didn’t have VS 2010 on my PC. So I decide to uninstall all patches and components VS and SQL related from my PC. But there are so many items to uninstall that might spend whole day to do it. So I searched internet and found a way to clean all things at one go.
Just run this command in command administrator mode then it will remove all items with key word “Microsoft visual” automatically.
wmic product where “name like ‘microsoft visual%'” call uninstall /nointeractive
The same way to remove SQL with similar command:
wmic product where “name like ‘microsoft SQL%'” call uninstall /nointeractive
At last, I performed sfc/scannow to fix the integrity of OS and restarted PC. The booting speed up again.