Still on a windows computer? does it run like crap?
Well Ubuntu is a wonderful and free OS you can get to replace it, but in the mean time I usually recommend these two edits to make windows run faster.
search for 'View Advanced System Settings' and click on the control panel view that pops up.
You should be in the Advanced tab, click on the Settings... button.
You will probably see all these turned on. TURN THEM OFF! You will probably want 'Smooth edges of screen fonts' to stay on since the font gets very pixelated without it. I also leave 'Show thumbnails instead of icons' since I personally like seeing image previews in File Explorer.
Your windows will feel much different after turning lots of these off, come back here and make adjustments if needed.
This requires what is know as a RegEdit. These directions will only add one Key:Value DWORD pair via the PowerShell terminal. But do know, deleting the wrong thing in Registry Editor can break your computer. We will be creating this Key with PowerShell so it will not delete anything in your Registry but if it makes you uncomfortable then please skip this step!
Windows added a bunch of behind the scene web searches all over the place, when you click the start button, Web Search! when you open file explorer, Web Search! What is it web searching? who knows! but it lags anything that interacts with it, which is everything, Thanks Windows.
You can turn this web search off by making this registry edit.
First search for PowerShell > Open
Once the terminal opens type in:
Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" -Name "BingSearchEnabled" -Value 0
Mine has fancy color coding, yours might not!
This Set-ItemProperty command will create a new Key Item at location "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" inside our Registry, it will call this key "BingSearchEnabled" and set its value to 0 (the zero value turns it off).
Reboot your computer and the new Key will load into your windows and Look At That no more unnecessary web searching happening in the background.
Now that you have taken your first steps to becoming a GREAT HACKER, making the next step to a Linux OS will be less scary!