Files
GPOZaurr/Private/ConvertTo-SoftwareInstallation.ps1
T
Przemyslaw Klys de4ff8ff07 Update
2020-06-28 22:00:27 +02:00

42 lines
3.1 KiB
PowerShell

function ConvertTo-SoftwareInstallation {
[cmdletBinding()]
param(
[Array] $GPOList
)
foreach ($GPOEntry in $GPOList) {
$CreateGPO = [ordered]@{
DisplayName = $GPOEntry.DisplayName #: WO_SEC_NTLM_Auth_Level
DomainName = $GPOEntry.DomainName #: area1.local
GUID = $GPOEntry.GUID #: 364B095E-C7BF-4CC1-9BFA-393BD38975E5
GpoType = $GPOEntry.GpoType #: Computer
GpoCategory = $GPOEntry.GpoCategory #: SecuritySettings
GpoSettings = $GPOEntry.GpoSettings #: SecurityOptions
Identifier = $GPOEntry.Identifier #: { 10495e9e-79c1-4a32-b278-a24cd495437f }
Name = $GPOEntry.Name #: Local Administrator Password Solution (2)
Path = $GPOEntry.Path #: \\area1.local\SYSVOL\area1.local\Policies\ { 5F5042A0-008F-45E3-8657-79C87BD002E3 }\LAPS.x64.msi
MajorVersion = $GPOEntry.MajorVersion #: 6
MinorVersion = $GPOEntry.MinorVersion #: 2
LanguageId = $GPOEntry.LanguageId #: 1033
Architecture = $GPOEntry.Architecture #: 9
IgnoreLanguage = if ($GPOEntry.IgnoreLanguage -eq 'true') { $true } else { $false } #: false
Allowx86Onia64 = if ($GPOEntry.Allowx86Onia64 -eq 'true') { $true } else { $false } #: true
SupportURL = $GPOEntry.SupportURL #:
AutoInstall = if ($GPOEntry.AutoInstall -eq 'true') { $true } else { $false } #: true
DisplayInARP = if ($GPOEntry.DisplayInARP -eq 'true') { $true } else { $false } #: true
IncludeCOM = if ($GPOEntry.IncludeCOM -eq 'true') { $true } else { $false } #: true
SecurityDescriptor = $GPOEntry.SecurityDescriptor #: SecurityDescriptor
DeploymentType = $GPOEntry.DeploymentType #: Assign
ProductId = $GPOEntry.ProductId #: { ea8cb806-c109 - 4700 - 96b4-f1f268e5036c }
ScriptPath = $GPOEntry.ScriptPath #: \\area1.local\SysVol\area1.local\Policies\ { 5F5042A0-008F-45E3-8657-79C87BD002E3 }\Machine\Applications\ { EAC9B821-FB4D - 457A-806F-E5B528D1E41A }.aas
DeploymentCount = $GPOEntry.DeploymentCount #: 0
InstallationUILevel = $GPOEntry.InstallationUILevel #: Maximum
Upgrades = if ($GPOEntry.Upgrades.Mandatory -eq 'true') { $true } else { $false } #: Upgrades
UninstallUnmanaged = if ($GPOEntry.UninstallUnmanaged -eq 'true') { $true } else { $false } #: false
LossOfScopeAction = $GPOEntry.LossOfScopeAction #: Unmanage
}
$CreateGPO['Linked'] = $GPOEntry.Linked #: True
$CreateGPO['LinksCount'] = $GPOEntry.LinksCount #: 1
$CreateGPO['Links'] = $GPOEntry.Links #: area1.local
[PSCustomObject] $CreateGPO
}
}