Zwei Windows-Einstellungen, die ich jedes Mal vergesse
- Matt
Nach jeder Neuinstallation dieselben zwei Handgriffe, die ich mir nie merke.
Dateiendungen im Explorer einblenden:
Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" `
-Name HideFileExt -Value 0
Stop-Process -Name explorer -Force
Entwicklermodus einschalten, damit Symlinks ohne Administratorrechte funktionieren:
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock" `
-Name AllowDevelopmentWithoutDevLicense -Value 1
Das zweite braucht man häufiger als gedacht, etwa wenn Git ein Repository mit Symlinks auscheckt.