File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,24 +10,24 @@ function Deploy-AdcsGoat {
1010
1111 # We need blank template objects.
1212 $TemplateNames | ForEach-Object {
13- New-AdcsGoatBlankTemplateObject - TemplateName $_
13+ New-AGBlankTemplateObject - TemplateName $_
1414 }
1515
1616 # We need to assign properties to the blank template objects to turn them into real templates.
1717 $TemplateNames.Where ( { $_ -ne ' ESC4' } ) | ForEach-Object {
1818 $PropertiesPath = Join-Path - Path " .\Research" - ChildPath " ${_} .xml"
1919 $Properties = Import-Clixml - Path $PropertiesPath
20- Set-AdcsGoatTemplateProperty - TemplateName $_ - Properties $Properties
20+ Set-AGTemplateProperty - TemplateName $_ - Properties $Properties
2121 }
2222
2323 # We need to grant low privileged users Enroll right on template objects to turn them into ESC issues.
2424 $TemplateNames.Where ( { $_ -ne ' ESC4' } ) | ForEach-Object {
25- Set-AdcsGoatTemplateAce - TemplateName $_ - AceType Enroll
25+ Set-AGTemplateAce - TemplateName $_ - AceType Enroll
2626 }
2727
2828 # We need to grant low privileged users Full Control over a template object to turn it into an ESC4.
2929 $TemplateNames.Where ( { $_ -eq ' ESC4' } ) | ForEach-Object {
30- Set-AdcsGoatTemplateAce - TemplateName $_ - AceType GenericAll
30+ Set-AGTemplateAce - TemplateName $_ - AceType GenericAll
3131 }
3232}
3333
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ online version:
55schema : 2.0.0
66---
77
8- # Find-AdcsGoatEnrollmentService
8+ # Find-AGEnrollmentService
99
1010## SYNOPSIS
1111{{ Fill in the Synopsis }}
1212
1313## SYNTAX
1414
1515```
16- Find-AdcsGoatEnrollmentService
16+ Find-AGEnrollmentService
1717```
1818
1919## DESCRIPTION
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ online version:
55schema : 2.0.0
66---
77
8- # Get-AdcsGoatEnrollmentServiceFullName
8+ # Get-AGEnrollmentServiceFullName
99
1010## SYNOPSIS
1111{{ Fill in the Synopsis }}
1212
1313## SYNTAX
1414
1515```
16- Get-AdcsGoatEnrollmentServiceFullName [-EnrollmentService] <DirectoryEntry> [<CommonParameters>]
16+ Get-AGEnrollmentServiceFullName [-EnrollmentService] <DirectoryEntry> [<CommonParameters>]
1717```
1818
1919## DESCRIPTION
Load diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ online version:
55schema : 2.0.0
66---
77
8- # New-AdcsGoatBlankTemplateObject
8+ # New-AGBlankTemplateObject
99
1010## SYNOPSIS
1111{{ Fill in the Synopsis }}
1212
1313## SYNTAX
1414
1515```
16- New-AdcsGoatBlankTemplateObject [-TemplateName] <String[]> [<CommonParameters>]
16+ New-AGBlankTemplateObject [-TemplateName] <String[]> [<CommonParameters>]
1717```
1818
1919## DESCRIPTION
Original file line number Diff line number Diff line change @@ -5,16 +5,16 @@ online version:
55schema : 2.0.0
66---
77
8- # Set-AdcsGoatEnrollmentServiceFullName
8+ # Set-AGEnrollmentServiceFullName
99
1010## SYNOPSIS
1111{{ Fill in the Synopsis }}
1212
1313## SYNTAX
1414
1515```
16- Set-AdcsGoatEnrollmentServiceFullName [-EnrollmentService] <DirectoryEntry>
17- [-EnrollmentServiceFullName] <String> [ <CommonParameters>]
16+ Set-AGEnrollmentServiceFullName [-EnrollmentService] <DirectoryEntry> [-EnrollmentServiceFullName] <String >
17+ [<CommonParameters>]
1818```
1919
2020## DESCRIPTION
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ online version:
55schema : 2.0.0
66---
77
8- # Set-AdcsGoatTemplateAce
8+ # Set-AGTemplateAce
99
1010## SYNOPSIS
1111{{ Fill in the Synopsis }}
1212
1313## SYNTAX
1414
1515```
16- Set-AdcsGoatTemplateAce [-TemplateName] <String[]> [-AceType] <String> [<CommonParameters>]
16+ Set-AGTemplateAce [-TemplateName] <String[]> [-AceType] <String> [<CommonParameters>]
1717```
1818
1919## DESCRIPTION
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ online version:
55schema : 2.0.0
66---
77
8- # Set-AdcsGoatTemplateProperty
8+ # Set-AGTemplateProperty
99
1010## SYNOPSIS
1111{{ Fill in the Synopsis }}
1212
1313## SYNTAX
1414
1515```
16- Set-AdcsGoatTemplateProperty [-TemplateName] <String> [-Properties] <Hashtable> [<CommonParameters>]
16+ Set-AGTemplateProperty [-TemplateName] <String> [-Properties] <Hashtable> [<CommonParameters>]
1717```
1818
1919## DESCRIPTION
You can’t perform that action at this time.
0 commit comments