pre-rewrite changes

This commit is contained in:
Simon Gardling 2025-02-17 21:12:55 -05:00
parent b57227fb60
commit 0666d5e8ec
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D
2 changed files with 15 additions and 0 deletions

View File

@ -7,6 +7,8 @@ services:
environment:
VERSION: "11"
DISK_SIZE: "64G"
RAM_SIZE: "8G"
CPU_CORES: "4"
devices:
- /dev/kvm
- /dev/net/tun
@ -18,6 +20,7 @@ services:
- 3389:3389/udp
volumes:
- /home/primary/Downloads/tiny11.iso:/custom.iso
# - /home/primary/Downloads/26100.1.240331-1435.ge_release_CLIENT_IOT_LTSC_EVAL_x64FRE_en-us.iso:/custom.iso
- /home/primary/school/spring-2025/CSE3120/vm/oem:/oem
# shared samba dir
- /home/primary/school/spring-2025/CSE3120/vm/shared:/data

View File

@ -45,3 +45,15 @@ rm -Force -Recurse C:\Users\Docker\project64\Project64_VS2022
# maybe this'll work -- no
# Set-ExecutionPolicy -ExecutionPolicy Bypass -Force
# Mount shared directory as a drive
New-PSDrive -Name "Z" -PSProvider "FileSystem" -Root "\\host.lan\Data" -Persist
# remove Widgets stuff
Get-AppxPackage *WebExperience* | Remove-AppxPackage
# remove animations -- https://superuser.com/a/1811743
Set-ItemProperty -Path "HKCU:Control Panel\Desktop" -Name UserPreferencesMask -Value ([byte[]](0x90,0x12,0x03,0x80,0x10,0x00,0x00,0x00))
# restart explorer
stop-process -name explorer -force