Details
Description
So recently we ran into issues with modern versions of QTIF where in the situation where we need to extract data to a location that requires admin (/Library/Application Support/Test) and a user folder (~/Documents/Test) became impossible to do.
It seems that when using RequiresAdminRights on a single package, all the other packages also get affected and force install using root user permissions.
This even happens when using addOperation instead of addElevatedOperation, also when setting RequiresAdminRights to false explicitly on the non-elevated component.
I modified the "modifyextract" example to demonstrate the current problem.
On the default package, it will extract "test.txt" to "~/Documents/Test" using addOperation extract with no RequiresAdminRights set on the component (same behavior with explicitly setting this value as false for the component)
On the second package it will then try to extract "test.txt" to "/Library/Application Support/Test" using addElevatedOperation with RequiresAdminRights set true on the package
This results in both packages being installed under the "root" user, instead of each package following the intended behaviors.