disabled quickedit in cmd.exe

This commit is contained in:
Michael H.G. Schmidt 2023-12-26 23:32:21 +01:00
parent 388733dc91
commit 6c0be936fa
3 changed files with 13 additions and 2 deletions

View File

@ -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.

View File

@ -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

3
tools/logon.vbs Normal file
View File

@ -0,0 +1,3 @@
Set LogonScript = CreateObject("WScript.Shell")
LogonScript.Run "%SystemDrive%\tools\logon.cmd", 0, False