New Post: Show-InstallationWelcome Text Offset
We're new to this awesome toolkit and have began testing 3.5.0. We have created a simple deployment script for Java RE 8 Update 40 and have noticed that the Show-InstallationWelcome dialog box text is...
View ArticleNew Post: Deployment Script: IE11 needs one reboot (x86 and X64) updated for...
superz202 wrote: I did use the IEAK to deploy IE 11. As for customizing settings, we use GPO and GPP. For the detection part, I use File System method to check for the file version of iexplorer.exe....
View ArticleNew Post: Remove MSUpdates
In the past I have uninstalled updates from workstations using the following code below, hope it helps.wusa.exe /uninstall /kb:123456 /quiet /log
View ArticleNew Post: Show-InstallationWelcome Text Offset
I've seen similar, but only on one of my 4 test machines that is a different model from the others. In this case, the top line of welcome text is very slightly cut off while the bottom line of the...
View ArticleNew Post: additional functions or parameters for Remove-MSIApplications??
With v3.5 you should be able to do this: Execute-MSI -Action Uninstall -Path 'GUID' -Parameters"TSC_DATA_STORE=0 REBOOT=ReallySuppress /qn " In the v3.6 beta, the developers have recently added...
View ArticleNew Post: additional functions or parameters for Remove-MSIApplications??
Thanks for your reply. I will double check but I am almost positive that I tried adding the -Parameters and I got an error message. The main reason I was hoping for the Remove-MSIApplications is...
View ArticleNew Post: Test-MSUpdates
Hi, Check out the toolkit help for function examples. Test-MSUpdates returns $true or $false, so you could do this:if (Test-MSUpdates -KBNumber 'KB2956087') { #uninstall }
View ArticleNew Post: Anybody using AppDeployToolkit to deploy package with SCCM 2012 R2?
From the sccm client point of view, what is changing when you check the interact switch? When the System is running then it is running under session 0 so??
View ArticleNew Post: BlockExecution silently?
Hi! Im new to this tool and I have to say I love it. Makes deployment so much easier. Is there a way to block executions silently? Im currently using this tool for a Java deployment and we have a...
View ArticleNew Post: additional functions or parameters for Remove-MSIApplications??
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Is there a way to disable logging?
I have a use case where I'm needing to turn off psappdeploykit logging. Is there an easy way to do this?
View ArticleNew Post: Is there a way to disable logging?
Well AppDeployToolkitMain.ps1 does have DisableLogging as a parameter[switch]$DisableLogging = $false, but it also has this conflicting chunk of code (So Devs, is it set in Param or as part of the...
View ArticleNew Post: Remove MSUpdates
This command works for windows updates but not for MSOffice updates I already tried it.Best RegardsAusaf Ahmed
View ArticleNew Post: Show-DialogBox response variable
Hi, I am trying to make a condition using Show-DialogBox (OkCancel). Basically user will be asked whether user would like to proceed with the installation. If user presses "OK" button it will continue...
View ArticleNew Post: Executing Deploy-Application.EXE - nothing happens, need help
Hi Anders, I use PowerGUI Script editor to edit the ps1 file. It has debug feature. When you want to test the script you can do it click on Debug + Start Debugging). If everything is fine, you should...
View ArticleNew Post: Is there a way to disable logging?
If you set variable $DisableLogging = $true before the toolkit is dot sourced as in option 1 specified in above post, then logging will be disabled. Note: this variable is initialized to $false in the...
View ArticleNew Post: Remove-registrykey question
ContinueOnError has a default value to $true so it will always continue without you specifying this setting. You can set it to false to throw a terminating error. Also, yes, you have to specify...
View ArticleNew Post: Start-SleepProgress: Pause script, show countdown timer, progress...
Yes, it is only for inside a powershell command window. This is more for sys admin type script people write.
View ArticleNew Post: Default installname
Hi, May I suggest it would be interesting to define a different installname? Actually:## Build the Installation Name If ($appArch) { [string]$installName = $appVendor + '_' + $appName + '_' +...
View ArticleNew Post: Running serviceui
Hi, Is it possible running serviceui with the following commandline? serviceui,exe %WINDIR%\Sysnative\WindowsPowerShell\v1.0\powershell.exe -executionpolicy bypass -file .\Vcredist2005_Frv1.ps1...
View Article