User Tools

Site Tools


Sidebar

jak-na-to:windows10

Windows 10

Disable login screen blur

Source: https://www.howtogeek.com/426554/how-to-disable-the-login-screens-background-blur-on-windows-10/

regedit

  • HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System
  • přidat `DisableAcrylicBackgroundOnLogon` s dword32 hodnotou 1

Disable lock screen

Source: https://www.techrepublic.com/article/how-to-disable-the-windows-10-lock-screen/

regedit

  • HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization
  • přidat `NoLockScreen` s dword32 hodnotou 1

Removing default windows apps

Open Power Shell as an admin and run any of the below commands. You should be able to tell which app each command is referring to.

Get-AppxPackage *3dbuilder* | Remove-AppxPackage
Get-AppxPackage *windowsalarms* | Remove-AppxPackage
Get-AppxPackage *windowscalculator* | Remove-AppxPackage
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
Get-AppxPackage *windowscamera* | Remove-AppxPackage
Get-AppxPackage *officehub* | Remove-AppxPackage
Get-AppxPackage *skypeapp* | Remove-AppxPackage
Get-AppxPackage *getstarted* | Remove-AppxPackage
Get-AppxPackage *zunemusic* | Remove-AppxPackage
Get-AppxPackage *windowsmaps* | Remove-AppxPackage
Get-AppxPackage *solitairecollection* | Remove-AppxPackage
Get-AppxPackage *bingfinance* | Remove-AppxPackage
Get-AppxPackage *zunevideo* | Remove-AppxPackage
Get-AppxPackage *bingnews* | Remove-AppxPackage
Get-AppxPackage *onenote* | Remove-AppxPackage
Get-AppxPackage *people* | Remove-AppxPackage
Get-AppxPackage *windowsphone* | Remove-AppxPackage
Get-AppxPackage *photos* | Remove-AppxPackage
Get-AppxPackage *windowsstore* | Remove-AppxPackage
Get-AppxPackage *bingsports* | Remove-AppxPackage
Get-AppxPackage *soundrecorder* | Remove-AppxPackage
Get-AppxPackage *bingweather* | Remove-AppxPackage
Get-AppxPackage *xboxapp* | Remove-AppxPackage

Reinstall default apps

Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
jak-na-to/windows10.txt · Last modified: 2020/04/16 15:17 by hansek