Some script fixes

This commit is contained in:
2026-09-18 12:43:20 +03:00
parent a98df9c264
commit bee8910fff
2 changed files with 11 additions and 3 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ param(
[Parameter(Mandatory = $true)][string]$OutFile
)
$rows = Import-Csv -Path $CsvPath
$rows = @(Import-Csv -Path $CsvPath)
$missing = $rows | Where-Object { -not $_.new_password }
if ($missing) {