That-Annoying-Guy
That-Annoying-Guy
I had this in an old fork of PSADT. I remember it being somewhat trivial to add. Selecting the proper color combinations was the hard part.
Disabling the autosave fixed it!
``` #Region Function Set-ScheduledTask Function Set-ScheduledTask { [CmdletBinding()] Param ( [Parameter(Mandatory=$True)] [ValidateNotNullorEmpty()] [string]$TaskNamePath = '', [Parameter(Mandatory=$True,ParameterSetName='Create')] [ValidateNotNullorEmpty()] [xml]$TaskXmlContent, [Parameter(Mandatory=$True,ParameterSetName='Remove')] [ValidateNotNullorEmpty()] [Switch]$Remove, [Parameter(Mandatory=$false)] [ValidateNotNullorEmpty()] [string]$ComputerName = "localhost", [Parameter(Mandatory=$false,ParameterSetName='Create')] [ValidateNotNullorEmpty()] [string]$TaskUser =...
Confirmed in Discourse forums https://discourse.psappdeploytoolkit.com/t/bug-in-get-userprofiles/5519
The way Show-InstallationPrompt creates the popup is very different than Show-InstallationProgress. The developers might want to re-write Show-InstallationPrompt and that will take time. Until then, if you want to increase...
I don't know German but it could be the same issue as #822 As per #822: Changes required to resolve: - Edit \AppDeployToolkit\AppDeployToolkitMain.ps1 - Search for $appDeployLogoBannerObject.Dispose($true) - Replace with...