30.1.18

Генератор паролей в powershell

$Password = ([char[]]([char]33..[char]95) + ([char[]]([char]97..[char]126)) + 0..9 | sort {Get-Random})[0..8] -join ''
$Password

Сохраняем в ps.1

Запускаем скрипт в powershell




https://blogs.technet.microsoft.com/undocumentedfeatures/2016/09/20/powershell-random-password-generator/

Комментариев нет:

Отправить комментарий