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
adduser -m kiosk-user | |
apt install --no-install-recommends xorg openbox lightdm chromium pulseaudio | |
awk '/\[Seat:\*\]/ {print; print "autologin-user=kiosk-user"; next} {print}' /etc/lightdm/lightdm.conf >> /etc/lightdm/lightdm.conf | |
awk '1; END { print "xset -dpms"; print "xset s off"; print "chromium --no-sandbox --kiosk https://localhost:8006"; }' /etc/xdg/openbox/autostart >> /etc/xdg/openbox/autostart | |
cat <<EOF >/etc/apt/sources.list | |
deb http://deb.debian.org/debian bookworm main contrib | |
deb http://deb.debian.org/debian bookworm-updates main contrib |
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
<# 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 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
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 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
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 |