From 6c0be936fa3f457f701e7b6205b017bea44cca1d Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Tue, 26 Dec 2023 23:32:21 +0100 Subject: [PATCH] disabled quickedit in cmd.exe --- scripts/autoconfig.cmd | 10 +++++++++- scripts/settings.cmd | 2 +- tools/logon.vbs | 3 +++ 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 tools/logon.vbs diff --git a/scripts/autoconfig.cmd b/scripts/autoconfig.cmd index c7394cc..3b4dce0 100644 --- a/scripts/autoconfig.cmd +++ b/scripts/autoconfig.cmd @@ -21,7 +21,7 @@ rem =================== set LANG=en-US set windows_updates=0 -set windows_targetrelease=2109 +set windows_targetrelease=2009 set logon_logo=0 set install_firefox=0 set install_aerolite=0 @@ -155,6 +155,10 @@ powershell -Command ^ }" echo. +echo disabling QuickEdit for cmd.exe ... +reg add HKCU\Console /v QuickEdit /t REG_DWORD /d 0 /f >nul +echo. + echo enabling OS feature "NetFx3" ... dism /online /enable-feature /featurename:NetFx3 /All /Source:%WINDIR%\sources\sxs /LimitAccess /NoRestart echo. @@ -319,6 +323,10 @@ if %windows_updates% == 1 ( echo. ) +rem convert evaluate version ... +call convert-evaluate.cmd +echo. + rem should be done as late as possible ... call install-logonscript.cmd echo. diff --git a/scripts/settings.cmd b/scripts/settings.cmd index dbc7bd4..4b47762 100644 --- a/scripts/settings.cmd +++ b/scripts/settings.cmd @@ -1,6 +1,6 @@ set LANG=de-DE set windows_updates=0 -set windows_targetrelease=2109 +set windows_targetrelease=2009 set logon_logo=1 set install_firefox=1 set install_aerolite=1 diff --git a/tools/logon.vbs b/tools/logon.vbs new file mode 100644 index 0000000..770fab5 --- /dev/null +++ b/tools/logon.vbs @@ -0,0 +1,3 @@ +Set LogonScript = CreateObject("WScript.Shell") +LogonScript.Run "%SystemDrive%\tools\logon.cmd", 0, False +