Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/olge404/win-11-unattended
Config files for unattended Windows 11 installations
https://github.com/olge404/win-11-unattended
Last synced: about 2 months ago
JSON representation
Config files for unattended Windows 11 installations
- Host: GitHub
- URL: https://github.com/olge404/win-11-unattended
- Owner: OlGe404
- Created: 2024-08-18T14:21:33.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-19T16:13:29.000Z (5 months ago)
- Last Synced: 2024-08-19T19:14:51.127Z (5 months ago)
- Size: 94.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ๐ Win-11-unattended
Create config files for unattended Windows 11 Home installations.## ๐งพ Sources
YouTube:
* https://www.youtube.com/watch?v=JUTdRZNqODYGitHub:
* https://github.com/memstechtips/UnattendedWinstallWeb:
* https://schneegans.de/windows/unattend-generator/
* https://www.microsoft.com/de-de/software-download/windows11# ๐ก How to
A generic template for the autounattend.xml file was generated with the help of [schneegans.de](https://schneegans.de/windows/unattend-generator/) and checked in as [autounattend_template.xml](autounattend_template.xml).Some values in the template are provided as placeholders. To use the template, create a file named ``autounattend.xml``, copy the templates content into it and replace all placeholders with the actual value for your Windows 11 installation.
Next, copy the ``autounattend.xml`` file inside the root folder of your windows installation media drive and you are ready to go (see image_1).
| Placeholder | Purpose |
| ---------------------- | -------------------------------------------- |
| PhAdminAccountName | Initial admin account to create. |
| PhAdminAccountPassword | Password for the initial admin account. |
| PhWifiSid | Wifi SID to connect to. |
| PhWifiPassword | Password for the Wifi to connect to. |![image_1](image_1.png)
## ๐ Versioning
Versioning is done by creating annotated git tags (https://git-scm.com/book/en/v2/Git-Basics-Tagging).```bash
# list existing tags
git tag# create a new annotated tag
git tag -a "vX.Y.Z" -m "Message"# delete a local tag
git tag -d# delete a tag from remote
git push origin --delete# push tags to remote
git push origin --tags
```