Make Get-Users output explicit

This commit is contained in:
Manuel Thalmann 2024-08-09 03:02:17 +02:00
parent 53730a9a52
commit 916b5c9649

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