This file contains 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
<# This script contains all of the command shown in my blog post: Create Zero-Touch Windows 10 ISO | |
http://blogs.catapultsystems.com/mdowst/archive/2017/12/11/create-zero-touch-windows-10-iso/ | |
#> | |
$ISO = "c:\users\administrator\desktop\source.iso" | |
$FolderPath = "c:\users\administrator\desktop\iso_staging" | |
$NewISO = 'c:\users\administrator\desktop\modified.iso' | |
################################### | |
# |
This file contains 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
powershell Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
choco install curl | |
choco install git | |
choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' | |
choco install ninja | |
choco install agentransack | |
choco install gnuwin32 | |
winget install python |
This file contains 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
set(boost_BOOTSTRAP_COMMAND) | |
if(UNIX) | |
set(boost_BOOTSTRAP_COMMAND ./bootstrap.sh) | |
set(boost_B2_COMMAND ./b2) | |
elseif(WIN32) | |
set(boost_BOOTSTRAP_COMMAND bootstrap.bat) | |
set(boost_B2_COMMAND b2.exe) | |
endif() | |
# cmake default is mulththreaded<debug>dll |