That-Annoying-Guy
That-Annoying-Guy
I can confirm this too!. I have wasted 2 days only to find this. **The SOLUTION is that the shortcut has to be in the _user's_ start menu folder before...
Please note that this section is for PSADT bugs and feature requests. Your issue is a SCCM deploy issue. This should have been posted in https://discourse.psappdeploytoolkit.com/c/thetoolkit/general-discussion https://www.reddit.com/r/SCCM/comments/89i72r/deploying_applications_to_users_with_no_admin/ This issue should...
Issue confirmed: https://discourse.psappdeploytoolkit.com/t/will-deploy-application-exe-pass-custom-parameters/3607/11
Maybe it's because this doesn't work in Windows 7.
Are these PSADT Packages launched by SCCM as a **REQUIRED app** by any chance? I've had a few PSADT packages show Show-InstallationProgress or Show-InstallationWelcome popups over and over again. For...
I maintain a private fork of PSADT. We use the Temp Log Directory feature to place all our log files when the script runs. By default, the Temp Log Directory...
I've seen this (https://www.reddit.com/r/PowerShell/comments/4fxrnm/powershell_output_to_html/) but I'm no HTML wiz. This should give you an idea of how to structure your code. Store your "Set-HtmlReport" function in AppDeployToolkitExtensions.ps1. This way as...
Either **$dirFiles** is a location where regular users have no perms to read/execute. Or **HighQ Drive Setup.exe** is trying to make changes to where Regular users have no perms. Use...
Check your MSI logs. I'm guessing you are installing something that is equivalent to something that is already installed. Different MSI `PRODUCTGUID `but the MSI itself is determining that your...
I would have done your code this way (using `"): ```Execute-MSI -Action Repair -Path "$dirFiles\PulseSecure.x64.msi" -AddParameters CONFIGFILE=`"$dirFiles\Default.pulsepreconfig.txt`" -ContinueOnError $false -SkipMSIAlreadyInstalledCheck``` As for the Get-InstalledApplication Function issue, it's very likely that...