From 2a7cad94f1e18f0ba56592f2387c1ec6d4c08c53 Mon Sep 17 00:00:00 2001 From: Fierelier Date: Sun, 6 Oct 2019 20:55:29 +0200 Subject: [PATCH] huge restructuring --- .gitignore | 3 +- bin/hello/world.bat | 1 - bin/opus-nt/applyTweakIso.bat | 5 + bin/opus-nt/applyTweakReg.bat | 8 ++ bin/opus-nt/applyTweakScript.bat | 5 + bin/opus-nt/applyTweakWim.bat | 5 + .../reg/NTUSER/no onedrive auto-install.reg | Bin 278 -> 0 bytes .../reg/NTUSER/show file extensions.reg | Bin 328 -> 0 bytes opus-files/reg/SOFTWARE/disable cortana.reg | 5 - .../disable update from other PCs.reg | 5 - .../scripts/disable update reboot.bat | 3 - patch-iso.bat | 90 +++++++++--------- .../reg/SOFTWARE/delay feature updates.reg | 2 +- .../reg/SOFTWARE/disable activity history.reg | 2 +- .../disable ads/reg/NTUSER/disable ads.reg | 4 +- .../reg/SOFTWARE/disable cortana.reg | 5 + .../SOFTWARE/disable cross-pc update.reg | 5 + .../reg/SOFTWARE/disable driver updates.reg | Bin 330 -> 336 bytes .../reg/SYSTEM/disable fast startup.reg | Bin 306 -> 312 bytes .../reg/SYSTEM/disable hibernation.reg | Bin 306 -> 312 bytes .../NTUSER/disable onedrive auto-install.reg | Bin 0 -> 284 bytes .../reg/SYSTEM/disable superfetch.reg | Bin 258 -> 264 bytes .../reg/SOFTWARE/disable telemetry.reg | Bin 268 -> 274 bytes .../reg/SOFTWARE/disable windows defender.reg | 2 +- .../reg/SYSTEM/disable windows search.reg | Bin 258 -> 264 bytes .../iso}/autounattend.xml | 0 .../SOFTWARE/autorun post-setup scripts.reg | Bin 406 -> 412 bytes .../opus-nt-setupcomplete/setupcomplete.bat | 0 .../reg/NTUSER/show file extensions.reg | Bin 0 -> 334 bytes 29 files changed, 87 insertions(+), 63 deletions(-) delete mode 100644 bin/hello/world.bat create mode 100644 bin/opus-nt/applyTweakIso.bat create mode 100644 bin/opus-nt/applyTweakReg.bat create mode 100644 bin/opus-nt/applyTweakScript.bat create mode 100644 bin/opus-nt/applyTweakWim.bat delete mode 100644 opus-files/reg/NTUSER/no onedrive auto-install.reg delete mode 100644 opus-files/reg/NTUSER/show file extensions.reg delete mode 100644 opus-files/reg/SOFTWARE/disable cortana.reg delete mode 100644 opus-files/reg/SOFTWARE/disable update from other PCs.reg delete mode 100644 opus-files/wim/SetupComplete disable update reboot/fwin10-setupcomplete/scripts/disable update reboot.bat rename {opus-files => tweaks/delay feature updates}/reg/SOFTWARE/delay feature updates.reg (79%) rename {opus-files => tweaks/disable activity history}/reg/SOFTWARE/disable activity history.reg (74%) rename opus-files/reg/NTUSER/no ads.reg => tweaks/disable ads/reg/NTUSER/disable ads.reg (64%) create mode 100644 tweaks/disable cortana/reg/SOFTWARE/disable cortana.reg create mode 100644 tweaks/disable cross-pc update/SOFTWARE/disable cross-pc update.reg rename {opus-files => tweaks/disable driver updates}/reg/SOFTWARE/disable driver updates.reg (55%) rename {opus-files => tweaks/disable fast startup}/reg/SYSTEM/disable fast startup.reg (50%) rename {opus-files => tweaks/disable hibernation}/reg/SYSTEM/disable hibernation.reg (50%) create mode 100644 tweaks/disable onedrive auto-install/reg/NTUSER/disable onedrive auto-install.reg rename {opus-files => tweaks/disable superfetch}/reg/SYSTEM/disable superfetch.reg (50%) rename {opus-files => tweaks/disable telemetry}/reg/SOFTWARE/disable telemetry.reg (55%) rename {opus-files => tweaks/disable windows defender}/reg/SOFTWARE/disable windows defender.reg (52%) rename {opus-files => tweaks/disable windows search}/reg/SYSTEM/disable windows search.reg (50%) rename {opus-files/iso/partial unattended setup => tweaks/partial unattended setup/iso}/autounattend.xml (100%) rename {opus-files => tweaks/post-setup script - master}/reg/SOFTWARE/autorun post-setup scripts.reg (63%) rename {opus-files/wim/SetupComplete master-script => tweaks/post-setup script - master/wim}/opus-nt-setupcomplete/setupcomplete.bat (100%) create mode 100644 tweaks/show file extensions/reg/NTUSER/show file extensions.reg diff --git a/.gitignore b/.gitignore index 7a8f7aa..c947d25 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -*.iso \ No newline at end of file +*.iso +disc-image/* \ No newline at end of file diff --git a/bin/hello/world.bat b/bin/hello/world.bat deleted file mode 100644 index e78c829..0000000 --- a/bin/hello/world.bat +++ /dev/null @@ -1 +0,0 @@ -echo hello world \ No newline at end of file diff --git a/bin/opus-nt/applyTweakIso.bat b/bin/opus-nt/applyTweakIso.bat new file mode 100644 index 0000000..98a513a --- /dev/null +++ b/bin/opus-nt/applyTweakIso.bat @@ -0,0 +1,5 @@ +if not exist %1\"iso" exit /b +echo applying %~n1... +xcopy %1\"iso" "tmp\disc-image" /e /y +echo. +exit /b \ No newline at end of file diff --git a/bin/opus-nt/applyTweakReg.bat b/bin/opus-nt/applyTweakReg.bat new file mode 100644 index 0000000..a4032a0 --- /dev/null +++ b/bin/opus-nt/applyTweakReg.bat @@ -0,0 +1,8 @@ +if not exist %1\"reg\%~n2" exit /b +echo applying %~n1... +for %%r in (%1\reg\%~n2\*) do ( + echo * %%~nr%%~xr... + reg import "%%r" +) +echo. +exit /b \ No newline at end of file diff --git a/bin/opus-nt/applyTweakScript.bat b/bin/opus-nt/applyTweakScript.bat new file mode 100644 index 0000000..7f976a2 --- /dev/null +++ b/bin/opus-nt/applyTweakScript.bat @@ -0,0 +1,5 @@ +if not exist %1\"script.bat" exit /b +echo applying %~n1... +call %1\"script.bat" +echo. +exit /b \ No newline at end of file diff --git a/bin/opus-nt/applyTweakWim.bat b/bin/opus-nt/applyTweakWim.bat new file mode 100644 index 0000000..9848ae5 --- /dev/null +++ b/bin/opus-nt/applyTweakWim.bat @@ -0,0 +1,5 @@ +if not exist %1\"wim" exit /b +echo applying %~n1... +xcopy %1\"wim" "tmp\wim" /e /y +echo. +exit /b \ No newline at end of file diff --git a/opus-files/reg/NTUSER/no onedrive auto-install.reg b/opus-files/reg/NTUSER/no onedrive auto-install.reg deleted file mode 100644 index 3df2e1f9e1376a9141737d5c19d06b9e2c4548d1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 278 zcmY+9xeCHi5JgWd_zz;Q*jQSK3yLc$1~HPtjWmfQF8K56A%!T9;muv%%zf`yKup4c zlm|H#792UtXFWmqD diff --git a/opus-files/reg/NTUSER/show file extensions.reg b/opus-files/reg/NTUSER/show file extensions.reg deleted file mode 100644 index a2b214212ff04744effb3e3dae79d5c6634626bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmY+9QA+|*5QV>Iq5mNM0O_R{p$8G8NHZ#wXk(G~Di>l`R&(pmm*3tHl;Lt`=FFLM z=I?hwq@Ai8wy_{EaCd?Qy z^v{|4kHqeH5Y4z@k@B1uu}3@4Zd|F;uv8(~nX2+(Ua9wwWwK8FX72oQqMa}0p1aFb y`ewtY>~^Ad=g@2RDwJ*x=I_aMPiN68=qoxO5_3n7Yr9S27Yx#+?X|}^UVQ+WjyU!J diff --git a/opus-files/reg/SOFTWARE/disable cortana.reg b/opus-files/reg/SOFTWARE/disable cortana.reg deleted file mode 100644 index 0220509..0000000 --- a/opus-files/reg/SOFTWARE/disable cortana.reg +++ /dev/null @@ -1,5 +0,0 @@ -Windows Registry Editor Version 5.00 - -[HKEY_LOCAL_MACHINE\FWIN_TMP\Policies\Microsoft\Windows\Windows Search] -"AllowCortana"=dword:00000000 - diff --git a/opus-files/reg/SOFTWARE/disable update from other PCs.reg b/opus-files/reg/SOFTWARE/disable update from other PCs.reg deleted file mode 100644 index 979858d..0000000 --- a/opus-files/reg/SOFTWARE/disable update from other PCs.reg +++ /dev/null @@ -1,5 +0,0 @@ -Windows Registry Editor Version 5.00 - -[HKEY_LOCAL_MACHINE\FWIN_TMP\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config] -"DODownloadMode"=dword:00000000 - diff --git a/opus-files/wim/SetupComplete disable update reboot/fwin10-setupcomplete/scripts/disable update reboot.bat b/opus-files/wim/SetupComplete disable update reboot/fwin10-setupcomplete/scripts/disable update reboot.bat deleted file mode 100644 index 5bec0cb..0000000 --- a/opus-files/wim/SetupComplete disable update reboot/fwin10-setupcomplete/scripts/disable update reboot.bat +++ /dev/null @@ -1,3 +0,0 @@ -schtasks /change /tn "\Microsoft\Windows\UpdateOrchestrator\Reboot" /disable -echo. >"%windir%\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Reboot" -echo y| cacls "%windir%\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Reboot" /D "SYSTEM" \ No newline at end of file diff --git a/patch-iso.bat b/patch-iso.bat index bea6062..830e067 100644 --- a/patch-iso.bat +++ b/patch-iso.bat @@ -1,6 +1,7 @@ @echo off setlocal EnableDelayedExpansion set workdir=%~dp0 +set tweakdir=%workdir%tweaks cd /d %workdir% :: expanding path with prerequisites @@ -9,15 +10,17 @@ for /d %%i in (bin\*) do set path=%cd%\%%i;!path! :: clearing temporary data if exist "tmp" ( echo. - echo unmounting windows image... + echo -- unmounting registry -- + reg unload HKLM\OPUS-NT_TMP + + echo. + echo. + echo -- unmounting windows image -- dism /unmount-image /mountdir:"tmp\wim" /discard echo. - echo unmounting registry... - reg unload HKLM\FWIN_TMP - echo. - echo removing tmp folder... + echo -- removing tmp folder -- rmdir "tmp" /s /q ) @@ -36,12 +39,14 @@ if "%1" == "console" ( mkdir tmp echo. -echo extracting disc-image... +echo. +echo -- extracting iso -- mkdir tmp\disc-image -7z x -o"tmp\disc-image" %1 +7z x -o"tmp\disc-image" "%1" echo. -echo mounting windows image... +echo. +echo -- mounting wmi -- mkdir tmp\wim dism /mount-image /index:1 /imagefile:"tmp\disc-image\sources\install.wim" /mountdir:"tmp\wim" @@ -53,72 +58,71 @@ if "%2" == "console" ( ) echo. -echo applying files to windows image... -for /d %%i in (opus-files\wim\*) do ( - echo applying: %%i - xcopy "%%i" "tmp\wim" /e /y +echo. +echo -- applying files to windows image -- +for /d %%t in (%tweakdir%\*) do ( + call "applyTweakWim.bat" "%%t" ) echo. -echo working registry... -cd "tmp\wim\windows\system32\config" -for %%i in (*) do ( +echo. +echo -- working registry -- +for %%r in (tmp\wim\windows\system32\config\*) do ( echo. - echo mounting: %%i - reg load HKLM\FWIN_TMP %%i - echo running tweaks for %%i... - for %%e in (%workdir%\opus-files\reg\%%i\*) do ( - echo applying: %%e - reg import "%%e" + echo mounting: %%~nr + reg load HKLM\OPUS-NT_TMP "%%r" + echo. + echo running tweaks for %%~nr... + for /d %%t in (%tweakdir%\*) do ( + call "applyTweakReg.bat" "%%t" "%%r" ) - echo unmounting: %%i - reg unload HKLM\FWIN_TMP + echo unmounting: %%r + reg unload HKLM\OPUS-NT_TMP ) -cd /d %workdir% - :: why would the default user settings not be in %windir%\system32\config? echo. -echo mounting: tmp\wim\users\default\ntuser.dat -reg load HKLM\FWIN_TMP "tmp\wim\Users\Default\NTUSER.DAT" +echo mounting: tmp\wim\Users\Default\NTUSER.DAT +reg load HKLM\OPUS-NT_TMP "tmp\wim\Users\Default\NTUSER.DAT" echo running tweaks for NTUSER... -for %%e in (%workdir%\opus-files\reg\NTUSER\*) do ( - echo applying: %%e - reg import "%%e" +for /d %%t in (%tweakdir%\*) do ( + call "applyTweakReg.bat" "%%t" "NTUSER" ) -echo unmounting: tmp\wim\users\default\ntuser.dat -reg unload HKLM\FWIN_TMP +echo unmounting: tmp\wim\Users\Default\NTUSER.DAT +reg unload HKLM\OPUS-NT_TMP echo. -echo applying scripts... -for /d %%i in (opus-files\scripts\*) do ( - echo applying: %%i - call "%%i\script.bat" +echo. +echo -- applying scripts -- +for /d %%t in (%tweakdir%\*) do ( + call "applyTweakScript.bat" %%t ) echo. -echo committing changes to wim and unmounting... +echo. +echo -- committing changes to wim and unmounting -- dism /unmount-image /mountdir:"tmp\wim" /commit echo. -echo applying files to disc-image... -for /d %%i in (opus-files\iso\*) do ( - echo applying: %%i - xcopy "%%i" "tmp\disc-image" /e /y +echo. +echo -- applying files to disc-image -- +for /d %%t in (%tweakdir%\*) do ( + call "applyTweakIso.bat" %%t ) echo. -echo moving disc-image folder... +echo -- moving disc-image folder -- rmdir "disc-image" /s /q move "tmp\disc-image" "%cd%" echo. -echo deleting tmp... +echo -- deleting tmp -- rmdir "tmp" /s /q echo. echo all done. a folder with the disc image's data has been created. use something like ntlite to compile it into an iso. pause explorer.exe "%cd%\disc-image" +goto exit :exit \ No newline at end of file diff --git a/opus-files/reg/SOFTWARE/delay feature updates.reg b/tweaks/delay feature updates/reg/SOFTWARE/delay feature updates.reg similarity index 79% rename from opus-files/reg/SOFTWARE/delay feature updates.reg rename to tweaks/delay feature updates/reg/SOFTWARE/delay feature updates.reg index 9e0d3f5..7ceecbd 100644 --- a/opus-files/reg/SOFTWARE/delay feature updates.reg +++ b/tweaks/delay feature updates/reg/SOFTWARE/delay feature updates.reg @@ -1,7 +1,7 @@ Windows Registry Editor Version 5.00 ; this sets the update channel to semi-annual, and additionally defers the updates for half a year -[HKEY_LOCAL_MACHINE\FWIN_TMP\Microsoft\WindowsUpdate\UX\Settings] +[HKEY_LOCAL_MACHINE\OPUS-NT_TMP\Microsoft\WindowsUpdate\UX\Settings] "BranchReadinessLevel"=dword:00000020 "DeferFeatureUpdates"=dword:00000001 "DeferFeatureUpdatesPeriodInDays"=dword:000000b7 diff --git a/opus-files/reg/SOFTWARE/disable activity history.reg b/tweaks/disable activity history/reg/SOFTWARE/disable activity history.reg similarity index 74% rename from opus-files/reg/SOFTWARE/disable activity history.reg rename to tweaks/disable activity history/reg/SOFTWARE/disable activity history.reg index b2fc925..d89e97e 100644 --- a/opus-files/reg/SOFTWARE/disable activity history.reg +++ b/tweaks/disable activity history/reg/SOFTWARE/disable activity history.reg @@ -1,6 +1,6 @@ Windows Registry Editor Version 5.00 -[HKEY_LOCAL_MACHINE\FWIN_TMP\Policies\Microsoft\Windows\System] +[HKEY_LOCAL_MACHINE\OPUS-NT_TMP\Policies\Microsoft\Windows\System] "AllowCrossDeviceClipboard"=dword:00000000 "EnableActivityFeed"=dword:00000000 "PublishUserActivities"=dword:00000000 diff --git a/opus-files/reg/NTUSER/no ads.reg b/tweaks/disable ads/reg/NTUSER/disable ads.reg similarity index 64% rename from opus-files/reg/NTUSER/no ads.reg rename to tweaks/disable ads/reg/NTUSER/disable ads.reg index 73ccc31..6b6280d 100644 --- a/opus-files/reg/NTUSER/no ads.reg +++ b/tweaks/disable ads/reg/NTUSER/disable ads.reg @@ -1,9 +1,9 @@ Windows Registry Editor Version 5.00 -[HKEY_LOCAL_MACHINE\FWIN_TMP\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced] +[HKEY_LOCAL_MACHINE\OPUS-NT_TMP\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced] "ShowSyncProviderNotifications"=dword:00000000 ; no explorer "suggestions" -[HKEY_LOCAL_MACHINE\FWIN_TMP\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager] +[HKEY_LOCAL_MACHINE\OPUS-NT_TMP\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager] "SystemPaneSuggestionsEnabled"=dword:00000000 ; no start menu "suggestions" "SoftLandingEnabled"=dword:00000000 ; no "tips", "tricks" and "suggestions" "SubscribedContent-338393Enabled"=dword:00000000 ; no settings "suggestions" diff --git a/tweaks/disable cortana/reg/SOFTWARE/disable cortana.reg b/tweaks/disable cortana/reg/SOFTWARE/disable cortana.reg new file mode 100644 index 0000000..68af9cf --- /dev/null +++ b/tweaks/disable cortana/reg/SOFTWARE/disable cortana.reg @@ -0,0 +1,5 @@ +Windows Registry Editor Version 5.00 + +[HKEY_LOCAL_MACHINE\OPUS-NT_TMP\Policies\Microsoft\Windows\Windows Search] +"AllowCortana"=dword:00000000 + diff --git a/tweaks/disable cross-pc update/SOFTWARE/disable cross-pc update.reg b/tweaks/disable cross-pc update/SOFTWARE/disable cross-pc update.reg new file mode 100644 index 0000000..8c5d175 --- /dev/null +++ b/tweaks/disable cross-pc update/SOFTWARE/disable cross-pc update.reg @@ -0,0 +1,5 @@ +Windows Registry Editor Version 5.00 + +[HKEY_LOCAL_MACHINE\OPUS-NT_TMP\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config] +"DODownloadMode"=dword:00000000 + diff --git a/opus-files/reg/SOFTWARE/disable driver updates.reg b/tweaks/disable driver updates/reg/SOFTWARE/disable driver updates.reg similarity index 55% rename from opus-files/reg/SOFTWARE/disable driver updates.reg rename to tweaks/disable driver updates/reg/SOFTWARE/disable driver updates.reg index 7681108c19dc2d49889a2521f34da851eb154889..2e85f5895dc55ccd0c23366da64539dc90b13b08 100644 GIT binary patch delta 23 ecmX@bbb)C?6|X--07EE4FoQ0GA4AB*#*+Y0RtBd4 delta 17 Ycmcb>bc$(06}uZlID;pH-^BKl05dcN#Q*>R diff --git a/opus-files/reg/SYSTEM/disable fast startup.reg b/tweaks/disable fast startup/reg/SYSTEM/disable fast startup.reg similarity index 50% rename from opus-files/reg/SYSTEM/disable fast startup.reg rename to tweaks/disable fast startup/reg/SYSTEM/disable fast startup.reg index feb31b0faf7dad6c1e36bdf4649af20451372330..5722dd990a5c0ea87a8e954a1efa8384c59d804f 100644 GIT binary patch delta 23 ecmdnQw1a6v6|X--07EE4FoQ0GA4AB*#*F|>9tK|k delta 17 YcmdnNw25g#6}uZlID;pH-^BKf05BW{eE9tK|k delta 17 YcmdnNw25g#6}uZlID;pH-^BKf05BW{eEGsjWmhG4S!xe1O#OmX6`$8-n;XDt%yn3 zlk(s~i5Uk@)-GJhcv|U5V^yjyv6N@hSe>ZrRH?a&6!N{H$G|shB8E(8(e#WMdA4MI z#?nwSWkEniJ(tgQOsxl!u4<)!mODqz+Bq|IYRb_hq4YO(Xy==b%xsDLKVxX0oAqs; YuWbKBUt4#~-CN+k>Nr!TVV>_#K3O6#zW@LL literal 0 HcmV?d00001 diff --git a/opus-files/reg/SYSTEM/disable superfetch.reg b/tweaks/disable superfetch/reg/SYSTEM/disable superfetch.reg similarity index 50% rename from opus-files/reg/SYSTEM/disable superfetch.reg rename to tweaks/disable superfetch/reg/SYSTEM/disable superfetch.reg index 6e24715b585b690a15ab836b3ff47f2aea739e0e..f020d332b7018f74685b39d59f2ec66eeeae1aaa 100644 GIT binary patch delta 23 ecmZo->R_5s#p}-yz!1t1%%IEQ#}G2Hu@L}6t_9Bk delta 17 YcmeBRYGRsD#qP!s&fv-5H?h4D04eMQ?EnA( diff --git a/opus-files/reg/SOFTWARE/disable telemetry.reg b/tweaks/disable telemetry/reg/SOFTWARE/disable telemetry.reg similarity index 55% rename from opus-files/reg/SOFTWARE/disable telemetry.reg rename to tweaks/disable telemetry/reg/SOFTWARE/disable telemetry.reg index d5159c99e8dfcf75d5d1008d2feb4cc9763f962b..dcbdcec092c64d32508e62845241a960fbd530f6 100644 GIT binary patch delta 23 ecmeBSn#44rir1eZfFYD2m_e7pk0E4YV>bXra0TrE delta 17 YcmbQl)WbBPirtMNoWYa9Z(@5l04p{H3jhEB diff --git a/opus-files/reg/SOFTWARE/disable windows defender.reg b/tweaks/disable windows defender/reg/SOFTWARE/disable windows defender.reg similarity index 52% rename from opus-files/reg/SOFTWARE/disable windows defender.reg rename to tweaks/disable windows defender/reg/SOFTWARE/disable windows defender.reg index 65cf43b..593f32f 100644 --- a/opus-files/reg/SOFTWARE/disable windows defender.reg +++ b/tweaks/disable windows defender/reg/SOFTWARE/disable windows defender.reg @@ -1,5 +1,5 @@ Windows Registry Editor Version 5.00 -[HKEY_LOCAL_MACHINE\FWIN_TMP\Policies\Microsoft\Windows Defender] +[HKEY_LOCAL_MACHINE\OPUS-NT_TMP\Policies\Microsoft\Windows Defender] "DisableAntiSpyware"=dword:00000001 diff --git a/opus-files/reg/SYSTEM/disable windows search.reg b/tweaks/disable windows search/reg/SYSTEM/disable windows search.reg similarity index 50% rename from opus-files/reg/SYSTEM/disable windows search.reg rename to tweaks/disable windows search/reg/SYSTEM/disable windows search.reg index 181adc5a93dbb3cbf5e433f85228ae02b70c1d09..4718fab1dfb2f684e0d29c98f2281ce7b0117844 100644 GIT binary patch delta 23 ecmZo->R_5s#p}-yz!1t1%%IEQ#}G2Hu@L}6t_9Bk delta 17 YcmeBRYGRsD#qP!s&fv-5H?h4D04eMQ?EnA( diff --git a/opus-files/iso/partial unattended setup/autounattend.xml b/tweaks/partial unattended setup/iso/autounattend.xml similarity index 100% rename from opus-files/iso/partial unattended setup/autounattend.xml rename to tweaks/partial unattended setup/iso/autounattend.xml diff --git a/opus-files/reg/SOFTWARE/autorun post-setup scripts.reg b/tweaks/post-setup script - master/reg/SOFTWARE/autorun post-setup scripts.reg similarity index 63% rename from opus-files/reg/SOFTWARE/autorun post-setup scripts.reg rename to tweaks/post-setup script - master/reg/SOFTWARE/autorun post-setup scripts.reg index 94b659ff2394e4a2e49e0955045bfc96e7ecb317..3fea174a28fc6181569ac67f4fb2f4592f1b4679 100644 GIT binary patch delta 24 fcmbQnJcoHg6|X--07EE4FoQ0GA4AB-Mo~rpOzH)$ delta 18 ZcmbQkJdJrm6}uZlID;pH-^O-PMgTEN1k3;c diff --git a/opus-files/wim/SetupComplete master-script/opus-nt-setupcomplete/setupcomplete.bat b/tweaks/post-setup script - master/wim/opus-nt-setupcomplete/setupcomplete.bat similarity index 100% rename from opus-files/wim/SetupComplete master-script/opus-nt-setupcomplete/setupcomplete.bat rename to tweaks/post-setup script - master/wim/opus-nt-setupcomplete/setupcomplete.bat diff --git a/tweaks/show file extensions/reg/NTUSER/show file extensions.reg b/tweaks/show file extensions/reg/NTUSER/show file extensions.reg new file mode 100644 index 0000000000000000000000000000000000000000..5ca0866674f3bb6146910f5ab54f6d5359453546 GIT binary patch literal 334 zcmY+9&1%A65Jk^g=sSpeiyJqEE<}`;Y8&bwVoE5QmVhKB#ztRWJ&CxGkB^yq@66np z^Jzgs%7%=R9Zf!o`IXyIkaLt7s3xLJ++?nvt0v-9+~tvu?}0}BSG@3M&yt7{AN1)N zBgV$Q+AHs>p-RAv32pIIeQHG@KXLAlZYAIP#4=;O*5;Y6S1sgz>(I%2E2{d`-uoRx z{SN%GwY#dwo!RrIe;raM$L3%4?k)FAL@`6-)>w5Gw0M>+>;4T-^}W^2w|Be!0?~ar A*Z=?k literal 0 HcmV?d00001