A streamlined collection of my configuration files for Windows
-
assets
: Contains directories such as cursors for Windows cursors and icons used in the configuration. -
scripts
: Contains useful scripts for automating tasks during the initial setup of a Windows installation.
Caution
Some of these scripts may violate Microsoft's guidelines and could be illegal. Whenever possible, acquire original licenses to avoid legal issues and ensure compliance with usage policies.
The windows-bootstrap.ps1
script automates the initial setup and configuration of a Windows system. It activates Windows, installs essential programs, and copies some files for system customization.
This script is particularly useful for users who want a quick and easy installation process. You can find the script here.
To install the script, use the following command:
powershell -NoProfile -ExecutionPolicy Bypass -Command "iex (iwr -UseBasicParsing 'https://raw.githubusercontent.com/druxorey/windots/refs/heads/main/scripts/windows-bootstrap.ps1')"
Note
This command downloads and executes the windows-bootstrap.ps1
script from the GitHub repository. It uses Invoke-WebRequest
(iwr
) to fetch the script and Invoke-Expression
(iex
) to run it directly in PowerShell. The -NoProfile
option ensures that PowerShell runs without loading user profiles, and -ExecutionPolicy Bypass
allows the script to execute without execution policy restrictions.
If you want to add new scripts or improve existing ones, follow these steps:
- Open an issue to discuss the changes.
- Fork this repository.
- Create a new branch for your contribution:
git checkout -b your-branch-name
. - Make your changes.
- Commit your changes, for example:
git commit -m 'fix(scripts): external licence confirmation.'
. - Push your changes to your forked repository:
git push origin your-branch-name
. - Open a Pull Request in this repository and reference the original issue.
This project is licensed under the GPL-3.0 License. See the LICENSE file for more details.