-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Windows 10 21H2 documentation. Added: * Used 20H2 as base and revalidated for 21H2. * Added RTC/UTC clock for Windows dual boot. * Added git commands for rebasing historical commits. Changed: * Dropped regedits when possible. * Updated settings to be reflective of out-of-box usage; versus strict lockdown (e.g. camera, microphone are enabled but enough info is there for a user to disable if wanted). * Moved 10 base to Windows base install. * Separated base advanced settings into separate files. * Updated SNMP requirements for Brother printer. Removed: * Removed 1903 documentation.
- Loading branch information
Showing
439 changed files
with
470,197 additions
and
125,668 deletions.
There are no files selected for viewing
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
3 changes: 3 additions & 0 deletions
3
docs/_downloads/1467912e618243424ad45e19df20e544/refsi.vhdx.tar.xz
Git LFS file not shown
4 changes: 4 additions & 0 deletions
4
docs/_downloads/56a4575fd7c7e38b7b63f63554609b5b/enable-meltdown-spectre-update.reg
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Windows Registry Editor Version 5.00 | ||
|
||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\QualityCompat] | ||
"cadca5fe-87d3-4b96-b7fb-a231484277cc"=dword:00000000 |
122 changes: 122 additions & 0 deletions
122
docs/_downloads/57cbe87385ee88bcfd71386de67d0760/ubuntu-template.seed
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
# -------- Localization -------- | ||
d-i debian-installer/locale string en_US.UTF-8 | ||
|
||
# -------- Keyboard -------- | ||
d-i console-setup/ask_detect boolean false | ||
d-i console-setup/layoutcode string us | ||
d-i keyboard-configuration/xkb-keymap select us | ||
|
||
# -------- Network -------- | ||
d-i netcfg/choose_interface select auto | ||
d-i netcfg/link_wait_timeout string 10 | ||
d-i netcfg/dhcp_timeout string 10 | ||
d-i netcfg/dhcpv6_timeout string 1 | ||
|
||
# Set default names to prevent prompts, overwritten by DHCP names. | ||
d-i netcfg/get_hostname string unassigned-hostname | ||
d-i netcfg/get_domain string unassigned-domain | ||
|
||
# Disable that annoying WEP key dialog. | ||
d-i netcfg/wireless_wep string | ||
|
||
# -------- Hardware Firmware -------- | ||
d-i hw-detect/load_firmware boolean true | ||
|
||
# -------- Apt Mirror -------- | ||
d-i mirror/country string manual | ||
d-i mirror/http/hostname string mirrors.mit.edu | ||
d-i mirror/http/directory string /ubuntu | ||
d-i mirror/http/proxy string | ||
d-i mirror/udeb/components multiselect main, restricted, multiverse, universe | ||
|
||
# -------- Accounts -------- | ||
# disable root user | ||
d-i passwd/root-login boolean false | ||
|
||
# base user for system | ||
d-i passwd/user-fullname string | ||
d-i passwd/username string {USER} | ||
d-i passwd/user-password-crypted password {PRE HASHED PASSWORD} | ||
d-i passwd/user-uid string 1000 | ||
d-i passwd/user-default-groups string cdrom video sudo ssh plugdev | ||
d-i user-setup/encrypt-home boolean false | ||
|
||
# -------- Clock and Timezone -------- | ||
d-i clock-setup/utc boolean false | ||
d-i time/zone string America/Los_Angeles | ||
d-i clock-setup/ntp boolean true | ||
|
||
# -------- Partitioning -------- | ||
# Auto remove existing LVM/RAID partitions on disk | ||
d-i partman-lvm/device_remove_lvm boolean true | ||
d-i partman-lvm/confirm boolean true | ||
d-i partman-lvm/confirm_nooverwrite boolean true | ||
d-i partman-md/device_remove_md boolean true | ||
d-i partman-md/confirm boolean true | ||
|
||
# Unmount auto-mounted existing partitions on disks, if any | ||
d-i preseed/early_command string umount /media | ||
|
||
# Disable no-swap warning, create / with at least 1GB for entire disk. | ||
d-i partman-auto/disk string /dev/{BLOCK DEVICE} | ||
d-i partman-auto/method string regular | ||
d-i partman-basicfilesystems/no_swap boolean false | ||
d-i partman-auto/expert_recipe string root :: 1000 50 -1 ext4 \ | ||
$primary{ } $bootable{ } method{ format } \ | ||
format{ } use_filesystem{ } filesystem{ ext4 } \ | ||
mountpoint{ / } \ | ||
. | ||
d-i partman-auto/choose_recipe select root | ||
|
||
# Apply partitioning info with confirmation | ||
d-i partman-partitioning/confirm_write_new_label boolean true | ||
d-i partman/choose_partition select finish | ||
d-i partman/confirm boolean true | ||
d-i partman/confirm_nooverwrite boolean true | ||
|
||
# -------- Base System Installation -------- | ||
d-i base-installer/kernel/image string linux-generic | ||
|
||
# -------- Apt Setup ------- | ||
d-i apt-setup/restricted boolean true | ||
d-i apt-setup/universe boolean true | ||
d-i apt-setup/multiverse boolean true | ||
d-i apt-setup/backports boolean true | ||
|
||
# -------- Package Selection -------- | ||
# Main tasksel server packages | ||
tasksel tasksel/first multiselect server, openssh-server | ||
|
||
# Additional packages to install | ||
d-i pkgsel/include string openssh-server python-software-properties inotify-tools curl unattended-upgrades sysstat nmon tmux ssh vim haveged | ||
|
||
# Upgrade packages after bootstrap | ||
d-i pkgsel/upgrade select full-upgrade | ||
|
||
# Install security updates automatically | ||
d-i pkgsel/update-policy select unattended-upgrades | ||
|
||
# -------- Console Setup -------- | ||
# Verbose startup output, drop to console (text) login by default. | ||
d-i debian-installer/quiet boolean false | ||
d-i debian-installer/splash boolean false | ||
|
||
# -------- Boot Loader Installation -------- | ||
# Assume one OS, install to default device, add other OS's if found. | ||
d-i grub-installer/only_debian boolean true | ||
d-i grub-installer/with_other_os boolean true | ||
d-i grub-installer/bootdev string default | ||
d-i grub-installer/timeout string 2 | ||
|
||
# -------- Finish Installation -------- | ||
d-i cdrom-detect/eject boolean true | ||
d-i finish-install/reboot_in_progress note | ||
|
||
# -------- Post Installation -------- | ||
# After system is setup (before reboot), run post-install script. | ||
# | ||
# This command is run just before the install finishes, but when there is | ||
# still a usable /target directory. You can chroot to /target and use it | ||
# directly, or use the apt-install and in-target commands to easily install | ||
# packages and run commands in the target system. | ||
d-i preseed/late_command string cp -R /cdrom/post-install/* /target/tmp; in-target /tmp/post-preseed-complete |
3 changes: 3 additions & 0 deletions
3
docs/_downloads/8cc82c39c36b49db0013c003448dbf03/refs-mirrored.vhdx.tar.xz
Git LFS file not shown
46 changes: 46 additions & 0 deletions
46
docs/_downloads/983ade548411798d5869b49fa81e670d/gpg-agent-refresh-unlock.ps1
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
$Hostname = $Env:computername | ||
$UserDomain = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name | ||
$Service = new-object -ComObject ("Schedule.Service") | ||
$Service.Connect($Hostname) | ||
$TaskFolder = $Service.GetFolder("\") | ||
$TaskDefinition = $Service.NewTask(0) | ||
$RegistrationInfo = $TaskDefinition.RegistrationInfo | ||
$RegistrationInfo.Description = 'Restarts GPG agent on windows unlock' | ||
$RegistrationInfo.Author = $UserDomain | ||
|
||
$Principal = $TaskDefinition.Principal | ||
$Principal.LogonType = 3 | ||
$Principal.UserId = $UserDomain | ||
|
||
$Settings = $TaskDefinition.Settings | ||
$Settings.Enabled = $true | ||
$Settings.Hidden = $true | ||
$Settings.Compatibility = 2 | ||
$Settings.MultipleInstances = 2 | ||
$Settings.DisallowStartIfOnBatteries = $false | ||
$Settings.StopIfGoingOnBatteries = $false | ||
$Settings.AllowHardTerminate = $false | ||
$Settings.StartWhenAvailable = $false | ||
$Settings.RunOnlyIfNetworkAvailable = $false | ||
$Settings.AllowDemandStart = $true | ||
$Settings.RunOnlyIfIdle = $false | ||
$Settings.DisallowStartOnRemoteAppSession = $false | ||
$Settings.UseUnifiedSchedulingEngine = $true | ||
$Settings.WakeToRun = $false | ||
$Settings.ExecutionTimeLimit = 'PT72H' | ||
$Settings.Priority = 7 | ||
|
||
$Triggers = $TaskDefinition.Triggers | ||
$Trigger = $Triggers.Create(0) | ||
$Trigger.Subscription = "<QueryList><Query Id='0' Path='Security'><Select Path='Security'>*[System[Provider[@Name='Microsoft-Windows-Security-Auditing'] and EventID=4801]]</Select></Query></QueryList>" | ||
$Trigger.Enabled = $true | ||
|
||
$GpgKillAction = $TaskDefinition.Actions.Create(0) | ||
$GpgKillAction.Path = 'gpgconf' | ||
$GpgKillAction.Arguments = '--kill gpg-agent' | ||
$GpgRestartAction = $TaskDefinition.Actions.Create(0) | ||
$GpgRestartAction.Path = 'gpg-connect-agent' | ||
$GpgRestartAction.Arguments = '/bye' | ||
|
||
$Credentials = Get-Credential | ||
$TaskFolder.RegisterTaskDefinition('GpgAgentRefreshUnlock',$TaskDefinition,6,$UserDomain,[System.Runtime.InteropServices.Marshal]::PtrToStringAuto([System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($Credentials.password)),3) |
42 changes: 42 additions & 0 deletions
42
docs/_downloads/9fa6c186c78693ec5206be949d54e1a0/remove-crapware.ps1
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Removes pre-install crapware from Windows 10 | ||
# Adjust list as needed, automatically wraps with globs. Case Insensitive. | ||
# Exection policy needs to be unrestricted, and run as admin | ||
# | ||
# From: | ||
# https://thomas.vanhoutte.be/miniblog/delete-windows-10-apps/ | ||
# http://www.makeuseof.com/tag/3-clever-powershell-functions-upgrading-windows-10/ | ||
# http://stackoverflow.com/questions/4037939/powershell-says-execution-of-scripts-is-disabled-on-this-system | ||
# | ||
|
||
$apps_to_remove = | ||
'zune', | ||
'bing', | ||
'skypeapp', | ||
'windowsmaps', | ||
'solitairecollection', | ||
'onenote', | ||
'facebook', | ||
'twitter', | ||
'netflix', | ||
'xbox', | ||
'3dbuilder', | ||
'messaging', | ||
'oneconnect', | ||
'office', | ||
'stickynotes', | ||
'windowsphone', | ||
'windowssoundrecorder', | ||
'windowscamera', | ||
'windows.photos', | ||
'getstarted', | ||
'WindowsAlarms', | ||
'MinecraftUWP', | ||
'CandyCrushSodaSaga', | ||
'ParadiseBay', | ||
'SlingTV', | ||
'MarchofEmpires' | ||
|
||
foreach ($app in $apps_to_remove) { | ||
Get-AppxPackage ('*%s*' -replace '%s', $app) | Remove-AppxPackage | ||
Get-AppxPackage -AllUsers ('*%s*' -replace '%s', $app) | Remove-AppxProvisionedPackage | ||
} |
Oops, something went wrong.