From d1fec8f1f390f19d29b927ca7603e913a65ac6f4 Mon Sep 17 00:00:00 2001 From: OlaYZen Date: Tue, 11 Oct 2022 09:23:53 +0200 Subject: [PATCH] admin fix --- EnhanceWindows.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EnhanceWindows.ps1 b/EnhanceWindows.ps1 index 373acea..4580392 100644 --- a/EnhanceWindows.ps1 +++ b/EnhanceWindows.ps1 @@ -18,7 +18,7 @@ $LabelFont = New-Object System.Drawing.Font("Arial",30,[System.Drawing.FontStyle Clear-Host $host.ui.RawUI.WindowTitle = "Enhance Windows Powershell" -powershell.exe -WindowStyle Hidden -file > $null +#powershell.exe -WindowStyle Hidden -file > $null #======================================================== # Writes out OlaYZen's Name @@ -890,7 +890,7 @@ $checkbox11 = new-object System.Windows.Forms.checkbox $checkbox11.Location ='30,50' $checkbox11.Size = '250,20' $checkbox11.Text = "Hide Console" -$checkbox11.Checked = $true +$checkbox11.Checked = $false $checkbox11.Add_CheckStateChanged({HideShell}) $Tab4.Controls.Add($checkbox11)