Make Get-Users output explicit

This commit is contained in:
Manuel Thalmann 2024-08-09 03:02:17 +02:00
parent d632f966ae
commit d7cbe47dc9

View file

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