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;
             }
         }