0
我正在尋找與Powershellscripts創建AD用戶。但我不知道,如何創建一個密碼永不過期的新用戶。密碼永不過期Powershellscript
這是我的例子:
New-ADUser -Name Max -GivenName Maximilian -Surname Muster -UserPrincipalName [email protected] -AccountPassword (Read-Host -AsSecureString "AccountPassword") -PassThru | Enable-ADAccount
感謝您的幫助,它現在的作品! – user7140648