문제

I know the command to add the computer to an AD group, but don't know how to create a script for it using powershell?

Here's the command:

add-ADGroupMember "BRS-Groupname" -members "BAT-100971$"

I would like to get the code and extension to name it to for adding a computer account to the AD group. It would be great to have the script ask for the computername I want to be added! Thanks in advance.

도움이 되었습니까?

해결책

So you want user input, and than you'd like to take that input and use it within your command?

Something like this?

$myVar1 = Read-Host "I have a question?"
$myVar2 = Read-Host "I have a second question?"

add-ADGroupMember "$var1" -members "$myVar2"
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top