├── .gitignore ├── LICENSE ├── PICS ├── Create-Windows-USB.mov ├── Create-Windows-USB.mp4 ├── Screenshot1.png ├── Screenshot2.png ├── Screenshot3.png ├── ScreenshotUsageDown.png ├── Usage-Download-ISO.mov ├── Usage-Download-ISO.mp4 └── Video.png ├── README.md ├── Sources ├── AppIcon.icns ├── AppIconOff.icns ├── AppSettings.plist ├── Builder.icns ├── Credits.rtf ├── MainMenu.nib │ ├── designable.nib │ └── keyedobjects.nib ├── WimlibDev.dmg └── script ├── USAGE-VIDEO.md ├── _config.yml └── index.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/LICENSE -------------------------------------------------------------------------------- /PICS/Create-Windows-USB.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/PICS/Create-Windows-USB.mov -------------------------------------------------------------------------------- /PICS/Create-Windows-USB.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/PICS/Create-Windows-USB.mp4 -------------------------------------------------------------------------------- /PICS/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/PICS/Screenshot1.png -------------------------------------------------------------------------------- /PICS/Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/PICS/Screenshot2.png -------------------------------------------------------------------------------- /PICS/Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/PICS/Screenshot3.png -------------------------------------------------------------------------------- /PICS/ScreenshotUsageDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/PICS/ScreenshotUsageDown.png -------------------------------------------------------------------------------- /PICS/Usage-Download-ISO.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/PICS/Usage-Download-ISO.mov -------------------------------------------------------------------------------- /PICS/Usage-Download-ISO.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/PICS/Usage-Download-ISO.mp4 -------------------------------------------------------------------------------- /PICS/Video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/PICS/Video.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/Sources/AppIcon.icns -------------------------------------------------------------------------------- /Sources/AppIconOff.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/Sources/AppIconOff.icns -------------------------------------------------------------------------------- /Sources/AppSettings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/Sources/AppSettings.plist -------------------------------------------------------------------------------- /Sources/Builder.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/Sources/Builder.icns -------------------------------------------------------------------------------- /Sources/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/Sources/Credits.rtf -------------------------------------------------------------------------------- /Sources/MainMenu.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/Sources/MainMenu.nib/designable.nib -------------------------------------------------------------------------------- /Sources/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/Sources/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sources/WimlibDev.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/Sources/WimlibDev.dmg -------------------------------------------------------------------------------- /Sources/script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/Sources/script -------------------------------------------------------------------------------- /USAGE-VIDEO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/USAGE-VIDEO.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/_config.yml -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Create-Windows-USB/HEAD/index.md --------------------------------------------------------------------------------