嗨,我需要在几台以 admin 开头的服务器上创建一个本地用户,然后在末尾有一个随机的 4 个字符。
这就是我目前在 Powershell 中所拥有的
$usr = "admin"
$rand = New-Object System.Random
$admin = $usr + [char]$rand.next(33,127) + [char]$rand.next(33,127) + [char]$rand.next(33,127) + [char]$rand.next(33,127)
这可行,但它包含用户名中不允许的特殊字符,因此在使用时失败。有谁知道我怎样才能阻止它使用特殊字符,或者给我另一个关于如何实现这一点的想法。
Powershell 语法会很棒。
谢谢