Possible error in Start-ADTMsiProcess?

I’m currently testing the 4.1.0 RC1 and with that I wanted to consult the documentation again before just configuring my deployments as I did before.

I noticed that the Zero-Config MSI installation uses $ExecuteDefaultMSISplat.Add('Transform', $adtSession.DefaultMstFile) in the Invoke-AppDeployToolkit.ps1. According to the documentation (4.1.x and 4.0.x) the parameter should be “Transforms”. I also checked the source file “Start-ADTMsiProcess.ps1” and it only has “Transforms” as a valid parameter. No aliases or anything that would allow “Transform” (without the s)

Maybe I’m overlooking something? Because so far the Zero-Config MSI installation worked in my environment.

Also, a huge thank you for this amazing toolkit :slight_smile:

Thanks for the report, patched via - Ensure `$ExecuteDefaultMSISplat` in frontend uses correct `-Transfo… · PSAppDeployToolkit/PSAppDeployToolkit@34142b7 · GitHub. I don’t believe it would have caused an issue as there’s no -Transform parameter in addition to -Transforms, so it should have resolved to -Transforms as PowerShell allows partial parameter names as long as there’s no ambiguity. Better to be correct/precise though.

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.