- Create a Windows 11 ISO with Microsoft's Media Creation Tool
- Install Setup Patchium and run it (or try latest Rufus version directly and patch from there)
- Home tab: Select ISO, wait during processing
- Go to Install > Uncheck Remove upgrade and Check Disable Windows 11 compatibility restrictions, click Apply
- Optional: To install without a Microsoft account, go to Install OOBE tab. Click Integrate lumOOBE. This will break sysinstall.
- Click on Create ISO button
- Use Rufus or Ventoy (prefered) to run installation from a USB drive
Not just an Universal MediaCreationTool wrapper script with ingenious support for business editions,
A powerful yet simple windows 10 / 11 deployment automation tool as well!
configure via set vars, commandline parameters or rename script like
iso 21H2 Pro MediaCreationTool.bat
recommended windows setup options with the least amount of issues on upgrades already set
awesome keyboard focus dialogs to pick windows version and enhanced preset action
Auto Setup for upgrading directly with the auto-detected Edition, Language, Architecture *
- can troubleshoot auto setup failing by addingno_updateto script name
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private string ParseExcelFileAndGenerateHtmlTable(ExcelPackage xlPackage) | |
| { | |
| string html = ""; | |
| int workBooks = 0; | |
| using (xlPackage) | |
| { | |
| var workbook = xlPackage.Workbook; | |
| if (workbook != null) | |
| { |
