Hello,
You can try to achieve this with our
PowerShell automation support.
For example, you can use the script below to sign all files in a folder:
Code: Select all
$advinst = New-Object -ComObject AdvancedInstaller
$project = $advinst.LoadProject("D:\sample.aip")
$selectedFolder = $project.FoldersComponent.Folders | Where-Object { $_.Name -eq "test" } | Select-Object -First 1
# Loop through all files in the selected folder
foreach ($file in $selectedFolder.Files) {
$file.DigitalSign = 1
}
$project.Save()
Replace "test" with the name of your folder. Using such a script, you can filter the files in the folder as you wish.
Hope this helps!
Best regards,
Liviu