https://github.com/complexicon/winsetup
my custom windows 10 setup script
https://github.com/complexicon/winsetup
powershell windows winget
Last synced: 4 months ago
JSON representation
my custom windows 10 setup script
- Host: GitHub
- URL: https://github.com/complexicon/winsetup
- Owner: Complexicon
- License: mit
- Created: 2022-11-30T18:21:25.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-03T22:59:50.000Z (over 1 year ago)
- Last Synced: 2025-10-10T07:07:21.730Z (4 months ago)
- Topics: powershell, windows, winget
- Language: PowerShell
- Homepage:
- Size: 63.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# winsetup
my custom windows 10 setup script
run:
```
powershell -c "irm short.cmplx.dev/winstall.ps1 | iex"
```
# dism
```
dism /Get-WimInfo /WimFile:D:\Sources\install.wim
dism /Apply-Image /ImageFile:D:\Sources\install.wim /index:1 /ApplyDir:G:\
```
# diskpart
```
# efi partition
create partition efi size=500
format quick fs=fat32
assign letter=y
# create vhd file
create vdisk file=K:\windows.vhdx maximum=40000 type=expandable
attach vdisk
convert gpt
create partition primary
assign letter=u
```