Private/getCmBuildCleanXML.ps1
function getCmBuildCleanXML { <# .SYNOPSIS Scrub XML data .DESCRIPTION Scrub template XML data to force user to manually update values .PARAMETER XmlData XML data obtained from source template .EXAMPLE [xml]$xdata = (New-Object System.Net.WebClient).DownloadString($Source1) $newxml = getCmBuildCleanXML -XmlData $xdata $newxml.Save('myfile.xml') #> [CmdletBinding()] param ( [parameter(Mandatory=$True)] [xml] $XmlData ) [xml]$result = $XmlData $DefPath = '__PATH__' $DefSADate = (Get-Date -f 'yyyy-M-dd 00:00:00.000') Write-Verbose "clearing source path values" try { $result.configuration.sources.source | ForEach-Object {$_.path = $DefPath} Write-Verbose "clearing project values" $result.configuration.project.hostname='__FQDNHOSTNAME__' $result.configuration.project.host='__HOST__' $result.configuration.project.sitecode='___' $result.configuration.project.comment='SCCM site server configuration for __NAME__, 1.0.0 by __YOU__' Write-Verbose "clearing payload path references" ($result.configuration.payloads.payload | Where-Object {$_.name -eq 'SQLSERVER'}).params = '/Configuration=__PATH__\sqlsetup.ini' ($result.configuration.payloads.payload | Where-Object {$_.name -eq 'CONFIGMGR'}).params = '/script __PATH__\cmsetup.ini' ($result.configuration.payloads.payload | Where-Object {$_.name -eq 'ADK'}).params = '/installpath __PATH__ /Features OptionId.DeploymentTools OptionId.WindowsPreinstallationEnvironment OptionId.ImagingAndConfigurationDesigner OptionId.UserStateMigrationTool /norestart /quiet /ceip off' Write-Verbose "clearing file values" (($result.configuration.files.file | Where-Object {$_.pkg -eq 'CONFIGMGR'}).keys.key | Where-Object {$_.name -eq 'ProductID'}).value = 'EVAL' (($result.configuration.files.file | Where-Object {$_.pkg -eq 'CONFIGMGR'}).keys.key | Where-Object {$_.name -eq 'SAExpiration'}).value = "$DefSADate" (($result.configuration.files.file | Where-Object {$_.pkg -eq 'CONFIGMGR'}).keys.key | Where-Object {$_.name -eq 'SMSInstallDir'}).value = $DefPath (($result.configuration.files.file | Where-Object {$_.pkg -eq 'CONFIGMGR'}).keys.key | Where-Object {$_.name -eq 'PrerequisitePath'}).value = $DefPath ($result.configuration.files.file | Where-Object {$_.pkg -eq 'CONFIGMGR'}).path = $DefPath ($result.configuration.files.file | Where-Object {$_.pkg -eq 'SQLSERVER'}).path = $DefPath Write-Verbose "clearing local accounts properties" ($result.configuration.localaccounts.localaccount | Where-Object {$_.name -eq 'CONTOSO\sql-svc'}).name = '__SERVICEACCOUNT__' ($result.configuration.localaccounts.localaccount | Where-Object {$_.name -eq 'CONTOSO\sccmadmin'}).name = '__SCCMADMINACCOUNT__' ($result.configuration.localaccounts.localaccount | Where-Object {$_.name -eq 'CONTOSO\IT sccm admins'}).use = '0' ($result.configuration.localaccounts.localaccount | Where-Object {$_.name -eq 'CONTOSO\IT sccm admins'}).name = '__ANOTHERADMINGROUP__' ($result.configuration.files.file | Where-Object {$_.pkg -eq 'SQLSERVER'}).keys.key | Where-Object {$_.name -match "dir"} | ForEach-Object {$x = $_.value ; $_.value = '__DRIVE__:'+$x.substring(3)} ($result.configuration.files.file | Where-Object {$_.pkg -eq 'SQLSERVER'}).keys.key | Where-Object {$_.name -match "ADMINACCOUNTS"} | ForEach-Object {$_.value = '__ACCOUNT1__,__ACCOUNT2__'} ($result.configuration.files.file | Where-Object {$_.pkg -eq 'SQLSERVER'}).keys.key | Where-Object {$_.name -match "SVCACCOUNT"} | ForEach-Object {$_.value = '__ACCOUNTNAME__'} ($result.configuration.files.file | Where-Object {$_.pkg -eq 'SQLSERVER'}).keys.key | Where-Object {$_.name -match "SVCACCT"} | ForEach-Object {$_.value = '__ACCOUNTNAME__'} ($result.configuration.files.file | Where-Object {$_.pkg -eq 'SQLSERVER'}).keys.key | Where-Object {$_.name -match "PASSWORD"} | ForEach-Object {$_.value = '__PASSWORD__'} $result.configuration.folders.folder | ForEach-Object {$x = $_.name; $_.name = '__DRIVE__:'+$x.substring(3)} $result.configuration.regkeys.regkey | ForEach-Object {$_.use = '0'} } catch { Write-Error $_.Exception.Message } Write-Output $result } |