PSCustomObject
Hallo,
wie bekomme ich einfach eine Liste? Bei diesem und mit += klappts nicht.
Danke.
wie bekomme ich einfach eine Liste? Bei diesem und mit += klappts nicht.
$Passwordliste=[PSCustomObject]@{
Bezeichnung = $Bezeichnung
LoginName = $LoginName
Password = $Password
}
$AllPasswords=$Passwordliste
Danke.
Please also mark the comments that contributed to the solution of the article
Content-ID: 608409
Url: https://administrator.de/contentid/608409
Printed on: December 2, 2024 at 17:12 o'clock
1 Comment
Doch du hast nur vergessen das Array dem das Objekt hinzugefügt werden soll vorher entsprechend anzulegen...
🙂
$AllPasswords = @()
$Passwordliste=[PSCustomObject]@{
Bezeichnung = $Bezeichnung
LoginName = $LoginName
Password = $Password
}
$AllPasswords += $Passwordliste
$AllPasswords
Btw. "Passwordliste" denglischer wird's nimmer 😉