├── .gitignore ├── CHANGELOG.md ├── README.md ├── compile.bat ├── lib ├── depalert.png ├── longhorn-3.0-transparent.png ├── longhorn-3.0.png ├── longhorn_cli.ico └── longhorn_gui.ico ├── longhorn-cli.exe ├── longhorn-cli.py ├── longhorn-gui.exe ├── longhorn-gui.py ├── scripts ├── block-telemetry.ps1 ├── create-restore-point.ps1 ├── delCortana.bat ├── disable-services.ps1 ├── disable-windows-defender.ps1 ├── disable-windows-update.ps1 ├── lib │ ├── force-mkdir.psm1 │ └── take-own.psm1 ├── remove-default-apps.ps1 ├── remove-onedrive.ps1 └── setup.ps1 └── utilities └── Adds cmd and powershell to right click.reg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/README.md -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/compile.bat -------------------------------------------------------------------------------- /lib/depalert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/lib/depalert.png -------------------------------------------------------------------------------- /lib/longhorn-3.0-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/lib/longhorn-3.0-transparent.png -------------------------------------------------------------------------------- /lib/longhorn-3.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/lib/longhorn-3.0.png -------------------------------------------------------------------------------- /lib/longhorn_cli.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/lib/longhorn_cli.ico -------------------------------------------------------------------------------- /lib/longhorn_gui.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/lib/longhorn_gui.ico -------------------------------------------------------------------------------- /longhorn-cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/longhorn-cli.exe -------------------------------------------------------------------------------- /longhorn-cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/longhorn-cli.py -------------------------------------------------------------------------------- /longhorn-gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/longhorn-gui.exe -------------------------------------------------------------------------------- /longhorn-gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/longhorn-gui.py -------------------------------------------------------------------------------- /scripts/block-telemetry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/scripts/block-telemetry.ps1 -------------------------------------------------------------------------------- /scripts/create-restore-point.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/scripts/create-restore-point.ps1 -------------------------------------------------------------------------------- /scripts/delCortana.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/scripts/delCortana.bat -------------------------------------------------------------------------------- /scripts/disable-services.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/scripts/disable-services.ps1 -------------------------------------------------------------------------------- /scripts/disable-windows-defender.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/scripts/disable-windows-defender.ps1 -------------------------------------------------------------------------------- /scripts/disable-windows-update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/scripts/disable-windows-update.ps1 -------------------------------------------------------------------------------- /scripts/lib/force-mkdir.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/scripts/lib/force-mkdir.psm1 -------------------------------------------------------------------------------- /scripts/lib/take-own.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/scripts/lib/take-own.psm1 -------------------------------------------------------------------------------- /scripts/remove-default-apps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/scripts/remove-default-apps.ps1 -------------------------------------------------------------------------------- /scripts/remove-onedrive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/scripts/remove-onedrive.ps1 -------------------------------------------------------------------------------- /scripts/setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/scripts/setup.ps1 -------------------------------------------------------------------------------- /utilities/Adds cmd and powershell to right click.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentlarkin/Longhorn/HEAD/utilities/Adds cmd and powershell to right click.reg --------------------------------------------------------------------------------