Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/complexicon/winsetup
my custom windows 10 setup script
https://github.com/complexicon/winsetup
powershell windows winget
Last synced: 2 days 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 (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-28T12:01:14.000Z (5 months ago)
- Last Synced: 2024-05-29T03:27:32.139Z (5 months ago)
- Topics: powershell, windows, winget
- Language: PowerShell
- Homepage:
- Size: 61.5 KB
- Stars: 4
- 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 scriptrun:
```
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
```