PSD icon indicating copy to clipboard operation
PSD copied to clipboard

Install a single application with Application bundle selected

Open Rehpicul opened this issue 1 year ago • 2 comments

When adding a task to install a single application and pointing that to an application bundle the only application that ends up on the imaged computer is the last application in the Dependencies List. I have verified this for the actual files being copied. I have not verified if all the installs are being called but it did not appear to be the case. I am investigating to see if I can find the root cause and will update if I figure it out.

Rehpicul avatar Aug 20 '24 21:08 Rehpicul

The fix was to alter line 95 in the PSD Applications.ps1 file below is what it looks like now. Basically for-each was added for multiple dependensies.

if ($app.Dependency.Count -ne 0)
{
    $app.Dependency | % { Install-PSDApplication $_  }
}

Rehpicul avatar Aug 30 '24 14:08 Rehpicul

Just be aware: applications bundles are not supported in the PSDWizard. I'm not sure they are supported in the backend either. This is on my TODO list for the UI

PowerShellCrack avatar Sep 18 '24 01:09 PowerShellCrack