ProjectManagementScripts/AddProjectRoles.ps1

28 lines
785 B
PowerShell
Raw Normal View History

[CmdletBinding()]
param (
[string]
$ProjectName,
[string]
$Server
)
. .\Variables.ps1
$Read = 'GR-'+$ProjectName+'-RO'
$Write = 'GR-'+$ProjectName+'-RW'
$ret=@()
2024-07-14 14:50:54 +02:00
if($PSBoundParameters.ContainsKey("ProjectName")){
if($PSBoundParameters.ContainsKey("Server")){
$ret += New-ADGroup -Path $Roles -Server $Server -Name $Read -GroupCategory Security -GroupScope Global
$ret += New-ADGroup -Path $Roles -Server $Server -Name $Write -GroupCategory Security -GroupScope Global
} else {
$ret += New-ADGroup -Path $Roles -Name $Read -GroupCategory Security -GroupScope Global
$ret += New-ADGroup -Path $Roles -Name $Write -GroupCategory Security -GroupScope Global
}
return $ret
}
2024-07-14 14:50:54 +02:00
throw "ProjectName parameter needs to be set"