File Explorer Home - Disable
config/tweaks.json
644 "WPFTweaksRemoveHome": {
645 "Content": "File Explorer Home - Disable",
646 "Description": "Removes the Home from Explorer and sets This PC as default.",
647 "category": "z__Advanced Tweaks - CAUTION",
648 "panel": "1",
649 "InvokeScript": [
650 "
651 Remove-Item \"HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Desktop\\NameSpace\\{f874310e-b6b7-47dc-bc84-b9e6b38f5903}\"
652 Set-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\" -Name LaunchTo -Value 1
653 "
654 ],
655 "UndoScript": [
656 "
657 New-Item \"HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Desktop\\NameSpace\\{f874310e-b6b7-47dc-bc84-b9e6b38f5903}\"
658 Set-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\" -Name LaunchTo -Value 0
659 "
660 ],