Skip to content

Instantly share code, notes, and snippets.

@jibinpb
Last active July 5, 2018 05:55
Show Gist options
  • Save jibinpb/bbe08488264d3d4fc310a2c1525a96b6 to your computer and use it in GitHub Desktop.
Save jibinpb/bbe08488264d3d4fc310a2c1525a96b6 to your computer and use it in GitHub Desktop.
Create gMSA in Windows Servers
Import-module activedirectory
$gMSAName = 'gMSA_Account_Name' ## Replace this value with new gMSA Name
## Install the gMSA account in server
Install-ADServiceAccount -Identity $gMSAName
## Test gMSA account installation in Server
Test-AdServiceAccount $gMSAName
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment