PowerShell for Non-N00bs: Adding a User to a Group (with Script)
Here's the one-liner:
([
ADSI]"WinNT://$computerName/$localGroupName,group").Add("WinNT://$domainName/$userName");
But a script may be more useful for execution.
このブラウザーはサポートされなくなりました。
Microsoft Edge にアップグレードすると、最新の機能、セキュリティ更新プログラム、およびテクニカル サポートを利用できます。
Here's the one-liner:
([
ADSI]"WinNT://$computerName/$localGroupName,group").Add("WinNT://$domainName/$userName");
But a script may be more useful for execution.