Given that the updates are installed/run in the system's context, I'd like to modify/remove something within the user's profile at the time of installation.
Example:
Application installs, but need to replace an .ini file in %userprofile%\appdata\local\application\filename.ini
I am aware that it can be done via GPO and a host of other ways - I'm just curious if it's possible to configure Patch Manager to perform this task as part of the installation process, maybe as part of the packageboot.xml file?
<postexecution>
<services>
</services>
<programs>
<program type="exe" typeaction="runandwait" name="Replace_Application_INI.cmd" successcode="0" failureaction="stop" enabled="true">
</program>
</programs>
</postexecution>
Thanks!