I have this XML file and need to be able to extract the value of the PackageID and the value of the text to a string for the Application.IDs that are listed under 'selectedApplications' which is at the end of the xml code.
E.G in this XML file the Application.ID's under 'selectedApplications' = 1 and 5 so I would like to be able to return the below variables for the Argon and AusKey applications like this (it needs to ignore the application with ID 10 in this example the applications in the generated XML file will always be different.
Any Ideas would be great Thankyou!
str1 equals MEL0089F:SilentInstall
str2 equals MEL007F0:Install
enter code here
<?xml version="1.0" encoding="utf-8"?>
<Applications RootDisplayName="Applications">
<ApplicationGroup Name="A -E">
<Application DisplayName="Argon" State="enabled" Id="1">
<Setter Property="description"/>
<Program Architecture="amd64" PackageId="MEL0089F" PackageName="Argon">SilentInstall</Program>
<Program Architecture="x86" PackageId="MEL0089F" PackageName="Argon">SilentInstall</Program>
<Dependencies/>
<Filters/>
<ApplicationMappings>
<Match Type="MSI" OperatorCondition="OR" DisplayName="Argon">
<Setter Property="ProductId">{AF7D1510-2FFB-49DF-84E6-03F5B1626B60}</Setter>
</Match>
</ApplicationMappings>
</Application>
<Application DisplayName="AUSKey" State="enabled" Id="5">
<Setter Property="description"/>
<Program Architecture="amd64" PackageId="MEL007F0" PackageName="AUSKey">Install</Program>
<Program Architecture="x86" PackageId="MEL007F0" PackageName="AUSKey">Install</Program>
<Dependencies/>
<Filters/>
<ApplicationMappings>
<Match Type="MSI" OperatorCondition="OR" DisplayName="AUSkey software 1.4.4">
<Setter Property="ProductId">{24D37B30-83B4-46A7-A691-30F2FCEAE58E}</Setter>
</Match>
</ApplicationMappings>
</Application>
<Application DisplayName="AutoIT" State="enabled" Id="10">
<Setter Property="description"/>
<Program Architecture="amd64" PackageId="MEL0078A" PackageName="AutoIT">SilentInstall</Program>
<Program Architecture="x86" PackageId="MEL0078A" PackageName="AutoIT">SilentInstall</Program>
<Dependencies/>
<Filters/>
<ApplicationMappings/>
</Application>
</ApplicationGroup>
<SelectedApplications><SelectApplication Application.Id="1"/><SelectApplication Application.Id="5"/></SelectedApplications></Applications>