Make Get-Users output explicit

This commit is contained in:
Manuel Thalmann 2024-08-09 03:02:17 +02:00
parent e5eff422ff
commit 7cf7bcd027

View file

@ -149,6 +149,8 @@ $null = New-Module {
Gets the names of the users to create.
#>
function Get-Users {
[OutputType([string[]])]
param()
Get-Attributes "valhalla.windows.users";
}