From e558f7fa86f915e80de5ad9bf344f56d0465090b Mon Sep 17 00:00:00 2001
From: Padsala Tushal <57517785+padsalatushal@users.noreply.github.com>
Date: Mon, 22 May 2023 08:44:15 +0530
Subject: [PATCH] add verbose logon (#773)
* add verbose logon
Enable or disable verbose sign in status messages. Verbose status messages may be helpful when you are troubleshooting slow startup, shutdown, logon, or logoff behavior.
* compress-into-one-checkbox
* compile winutil.ps1
---
config/tweaks.json | 11 +++++++++++
winutil.ps1 | 17 +++++++++++++++--
xaml/inputXML.xaml | 2 ++
3 files changed, 28 insertions(+), 2 deletions(-)
diff --git a/config/tweaks.json b/config/tweaks.json
index b279473d..6d53c57c 100644
--- a/config/tweaks.json
+++ b/config/tweaks.json
@@ -2238,6 +2238,17 @@
}
]
},
+ "WPFMiscTweaksEnableVerboselogon": {
+ "registry": [
+ {
+ "path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\policies\\system",
+ "OriginalValue": "0",
+ "name": "VerboseStatus",
+ "value": "1",
+ "type": "DWord"
+ }
+ ]
+ },
"WPFEssTweaksDeleteTempFiles": {
"InvokeScript": [
"Get-ChildItem -Path \"C:\\Windows\\Temp\" *.* -Recurse | Remove-Item -Force -Recurse
diff --git a/winutil.ps1 b/winutil.ps1
index f21ef454..daf4f985 100644
--- a/winutil.ps1
+++ b/winutil.ps1
@@ -10,7 +10,7 @@
Author : Chris Titus @christitustech
Runspace Author: @DeveloperDurp
GitHub : https://github.com/ChrisTitusTech
- Version : 23.05.17
+ Version : 23.05.19
#>
Start-Transcript $ENV:TEMP\Winutil.log -Append
@@ -21,7 +21,7 @@ Add-Type -AssemblyName System.Windows.Forms
# variable to sync between runspaces
$sync = [Hashtable]::Synchronized(@{})
$sync.PSScriptRoot = $PSScriptRoot
-$sync.version = "23.05.17"
+$sync.version = "23.05.19"
$sync.configs = @{}
$sync.ProcessRunning = $false
Function Get-WinUtilCheckBoxes {
@@ -2310,6 +2310,8 @@ $inputXML = '
+
+
@@ -5290,6 +5292,17 @@ $sync.configs.tweaks = '{
}
]
},
+ "WPFMiscTweaksEnableVerboselogon": {
+ "registry": [
+ {
+ "path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\policies\\system",
+ "OriginalValue": "0",
+ "name": "VerboseStatus",
+ "value": "1",
+ "type": "DWord"
+ }
+ ]
+ },
"WPFEssTweaksDeleteTempFiles": {
"InvokeScript": [
"Get-ChildItem -Path \"C:\\Windows\\Temp\" *.* -Recurse | Remove-Item -Force -Recurse
diff --git a/xaml/inputXML.xaml b/xaml/inputXML.xaml
index 64f5e9b7..37020595 100644
--- a/xaml/inputXML.xaml
+++ b/xaml/inputXML.xaml
@@ -358,6 +358,8 @@
+
+