From 88179df6510565ea73722d6ad347dd999977d029 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Fri, 23 Jun 2023 00:20:30 +0200 Subject: [PATCH] Add verbose logs --- scripts/Windows/OS/User.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/Windows/OS/User.ps1 b/scripts/Windows/OS/User.ps1 index f77769b1..5236e6e6 100644 --- a/scripts/Windows/OS/User.ps1 +++ b/scripts/Windows/OS/User.ps1 @@ -20,6 +20,8 @@ function New-PersonalUser([Context] $context) $user = Get-LocalUser | Where-Object { -not ($users -contains $_.Name) } | Select-Object -Last 1; if ($user) { + Write-Information "Found New User:"; + Write-Information $user; break; } }