What SMALL changes do you make to all releases of PSADT before using?

I do:

[string]$envTemp = [IO.Path]::GetTempPath()
[string]$envTemp = $([IO.Path]::GetTempPath()).trimend('\') # - Makes it consistent with %temp%

I do many more changes but they are too extensive to be considered “Small”.

1 Like

Nice Tip @That-Annoying-Guy :grinning:

I turn off Balloon Notifications in the AppDeployToolkit\AppDeployToolKitConfig.xml file as they are additional noise when installing using Intune, Intune gives you the option to disable notifications on a per deployment group for each deployment - we then have the choice to truly do silent (secret) installs or uninstalls without the user knowing

<ShowBalloonNotifications>False</ShowBalloonNotifications>
        <!-- [True/False] - Used to turn automatic balloon notifications on or off. -->

As with you there are plenty of other customisations we do every time, including our organisations branding (also set within the AppDeployToolkit\AppDeployToolKitConfig.xml)

I enable toast notifications and set the branding by pointing to different images, that’s about it.

changing branding, disable Toast, change MSI parameter to use always /QN, included 5 custom functions to change registry and folder permissions, import reg files for all users etc.

love to see those functions if you are willing