From 417e1d0b9a7fee582886989020da4cd178b16b30 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Thu, 2 Feb 2023 17:05:15 +0100 Subject: [PATCH] disabled ALL notifications per user --- tools/logon.cmd | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tools/logon.cmd b/tools/logon.cmd index 39188d0..ca87363 100644 --- a/tools/logon.cmd +++ b/tools/logon.cmd @@ -281,6 +281,18 @@ reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer" ^ reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer" ^ /v "ShowFrequent" /t REG_DWORD /d 0 /f 1>nul +echo Disabling notification center ... +reg add "HKCU\SOFTWARE\Policies\Microsoft\Windows\Explorer" ^ + /v "DisableNotificationCenter" /t REG_DWORD /d 1 /f 1>nul + +echo Disabling push notifications ... +reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\PushNotifications" ^ + /v "ToastEnabled" /t REG_DWORD /d 0 /f 1>nul + +echo Disabling autoplay ... +reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers" ^ + /v "DisableAutoplay" /t REG_DWORD /d 1 /f 1>nul + rem no SEAFILE for the Admin! if "%USERNAME%" == "%localadmin%" GOTO SEAFILE_DONE @@ -315,6 +327,7 @@ del /F /Q "%APPDATA%\Microsoft\Windows\Start Menu\Programs\OneDrive.lnk" 2>nul rem ... stupid OS! (it pins "dead" icons to the taskbar) echo Removing all pinned icons from taskbar ... reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /f > NUL 2>&1 + call :RESTART_EXPLORER rem create a statusfile (this codeblock must be executed only once per user) ...