Please take heed to any of these commands do a registry backup just in case these are all registry commands ran via powershell.
so this right here is a quick powershell command to make explorer open my pc instead of quick access.(windows 10)
Set-ItemProperty -Path 'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced' -name LaunchTo -Value 1
--note if you want it back just replace value 1 with 2
MY Computer =1
Quick access =2
and right here is a quick powershell command for the start menu's search bar. (hiding the big bar)
Set-ItemProperty -Path 'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Search' -name SearchboxTaskbarMode -Value 0
0 = hide completely (you can still search just start typing when you open the start menu)
1 = show only icon
2 = show long search box
start menu app suggestions i hate those on my start menu so why not turn it off I mean i know what i like why bother me with other apps.
Set-ItemProperty -Path 'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' -name SystemPaneSuggestionsEnabled -Value 0
0=no suggestion on apps
1=yes suggestion on apps
this one is how i disable Cortana with out removing the system app because if you remove the system app the task bar becomes unstable.
New-Item -Path 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search'-Force | New-ItemProperty -Name AllowCortana -Value 0 -Force | Out-Null
0= night night cortana
1=hello cortana
ever hate that lock screen on windows 10 that extra step of hitting the spacebar or click on the screen just to show your login screen??
New-Item -Path 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\Personalization'-Force | New-ItemProperty -Name NoLockScreen -Value 1 -Force | Out-Null
0=lockscreen
1=no lockscreen
Below is a gui powershell script I made enjoy!