From e9826f2421a26553d10f90869f1421ccf616f162 Mon Sep 17 00:00:00 2001 From: Joe Date: Fri, 30 Sep 2022 19:58:59 -0700 Subject: [PATCH] Update README --- README.md | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1edc0eb..8c4050b 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ Or the following for de-elevating the user: This function allows for changing the user's display language. -Firstly, it prompts the user to download a portion of a ~5.5GB language pack ISO file. Unfortunately, Microsoft no longer publicly distributes individual language pack files, so this is necessary. +Firstly, it prompts the user to download a portion of a \~5.5GB language pack ISO file. Unfortunately, Microsoft no longer publicly distributes individual language pack files, so this is necessary. Once the ISO is downloaded, it extracts the ISO file, and installs the language pack for the selected display language using the following commands: @@ -166,18 +166,42 @@ Or the following for disabling hibernation: powercfg /HIBERNATE OFF +#### Notification Center + +This function allows for enabling or disabling the Notification Center in the bottom right of the taskbar. + +At its core, it uses the following command: + + reg add "HKU\\Software\Policies\Microsoft\Windows\Explorer" /v DisableNotificationCenter /t REG_DWORD /d 0 /f + +Or the following for disabling the Notification Center: + + reg add "HKU\\Software\Policies\Microsoft\Windows\Explorer" /v DisableNotificationCenter /t REG_DWORD /d 1 /f + +#### Desktop Notifications + +This function allows for enabling or disabling desktop toast notifications. + +At its core, it uses the following command: + + reg add "HKU\\SOFTWARE\Microsoft\Windows\CurrentVersion\PushNotifications" /v ToastEnabled /t REG_DWORD /d 1 /f + +Or the following for disabling desktop notifications: + + reg add "HKU\\SOFTWARE\Microsoft\Windows\CurrentVersion\PushNotifications" /v ToastEnabled /t REG_DWORD /d 0 /f + #### Windows Script Host (Legacy) This function allows for enabling or disabling Windows Script Host (WSH). WSH is necessary for some programs. At its core, the following commands are used: - reg add "HKEY_USERS\\SOFTWARE\Microsoft\Windows Script Host\Settings" /v Enabled /t REG_DWORD /d 1 /f + reg add "HKU\\SOFTWARE\Microsoft\Windows Script Host\Settings" /v Enabled /t REG_DWORD /d 1 /f reg add "HKLM\SOFTWARE\Microsoft\Windows Script Host\Settings" /v Enabled /t REG_DWORD /d 1 /f Or the following for disabling WSH: - reg add "HKEY_USERS\\SOFTWARE\Microsoft\Windows Script Host\Settings" /v Enabled /t REG_DWORD /d 0 /f + reg add "HKU\\SOFTWARE\Microsoft\Windows Script Host\Settings" /v Enabled /t REG_DWORD /d 0 /f reg add "HKLM\SOFTWARE\Microsoft\Windows Script Host\Settings" /v Enabled /t REG_DWORD /d 0 /f #### Visual Basic Script (Legacy)