mirror of
https://github.com/EvotecIT/GPOZaurr.git
synced 2026-07-26 11:49:17 +00:00
76 lines
2.5 KiB
PowerShell
76 lines
2.5 KiB
PowerShell
function ConvertTo-XMLWindowsFirewallSecurityRules {
|
|
[cmdletBinding()]
|
|
param(
|
|
[PSCustomObject] $GPO,
|
|
[switch] $SingleObject
|
|
)
|
|
if ($SingleObject) {
|
|
$CreateGPO = [ordered]@{
|
|
DisplayName = $GPO.DisplayName
|
|
DomainName = $GPO.DomainName
|
|
GUID = $GPO.GUID
|
|
GpoType = $GPO.GpoType
|
|
#GpoCategory = $GPOEntry.GpoCategory
|
|
#GpoSettings = $GPOEntry.GpoSettings
|
|
Count = 0
|
|
Settings = $null
|
|
}
|
|
[Array] $CreateGPO['Settings'] = foreach ($Rule in $GPO.DataSet) {
|
|
[PSCustomObject] @{
|
|
Version = $Rule.Version
|
|
Name = $Rule.Name
|
|
Action = $Rule.Action
|
|
Enabled = if ($Rule.Active -eq 'true') { $true } else { $false }
|
|
Auth1Set = $Rule.Auth1Set
|
|
Auth2Set = $Rule.Auth2Set
|
|
Crypto2Set = $Rule.Crypto2Set
|
|
Description = $Rule.Desc
|
|
}
|
|
}
|
|
$CreateGPO['Count'] = $CreateGPO['Settings'].Count
|
|
$CreateGPO['Linked'] = $GPO.Linked
|
|
$CreateGPO['LinksCount'] = $GPO.LinksCount
|
|
$CreateGPO['Links'] = $GPO.Links
|
|
[PSCustomObject] $CreateGPO
|
|
} else {
|
|
foreach ($Rule in $GPO.DataSet) {
|
|
[PSCustomObject]@{
|
|
DisplayName = $GPO.DisplayName
|
|
DomainName = $GPO.DomainName
|
|
GUID = $GPO.GUID
|
|
GpoType = $GPO.GpoType
|
|
Version = $Rule.Version
|
|
Name = $Rule.Name
|
|
Action = $Rule.Action
|
|
Enabled = if ($Rule.Active -eq 'true') { $true } else { $false }
|
|
Auth1Set = $Rule.Auth1Set
|
|
Auth2Set = $Rule.Auth2Set
|
|
Crypto2Set = $Rule.Crypto2Set
|
|
Description = $Rule.Desc
|
|
Linked = $GPO.Linked
|
|
LinksCount = $GPO.LinksCount
|
|
Links = $GPO.Links
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
<#
|
|
Version : 2.30
|
|
Action : Boundary
|
|
Name : TeST Aut
|
|
Auth1Set : {E5A5D32A-4BCE-4e4d-B07F-4AB1BA7E5FE3}
|
|
Auth2Set : {E5A5D32A-4BCE-4e4d-B07F-4AB1BA7E5FE4}
|
|
Crypto2Set : {E5A5D32A-4BCE-4e4d-B07F-4AB1BA7E5FE2}
|
|
Desc :
|
|
Active : true
|
|
|
|
Version : 2.30
|
|
Action : Boundary
|
|
Name : CA TEST
|
|
Auth1Set : {0E3A2DDC-F31B-42B5-BEAC-890752F9C0BB}
|
|
Auth2Set : EmptySet
|
|
Crypto2Set : {E5A5D32A-4BCE-4e4d-B07F-4AB1BA7E5FE2}
|
|
Desc :
|
|
Active : true
|
|
#> |