New Post: execute ps script in post section with parameter
Hi, how can I call a dot sourced powershell script with 3 arguments in the post section of Deploy-Application.ps1? Deploy-Application.ps1 should proceed and not wait. thanks a lot
View ArticleNew Post: Allow user to minimize Progress Notification?
Hi. I am deploying applications with SCCM notifications off but I want to use the PSADTK progress notification as it carries my company branding and is a visible indication to users that something is...
View ArticleNew Post: Allow user to minimize Progress Notification?
RTFM Code comments in AppDeployToolkitMain.ps1 held the answer.
View ArticleNew Post: Test-MSUpdates
May I know how to use Test-MSUpdates function. I want to uninstall a KB and want to make sure that if its installed then only run uninstall command otherwise skip installation. do i have to use like...
View ArticleNew Post: execute ps script in post section with parameter
Taking a hint from Set-ActiveSetup Function in AppDeployToolkitMain.ps1 [string]$CUStubExePath = "$PSHOME\powershell.exe" [string]$CUArguments = "-ExecutionPolicy Bypass -NoProfile -NoLogo -WindowStyle...
View ArticleNew Post: execute ps script in post section with parameter
it works well. thanks a lot!
View ArticleNew Post: Invoke-SCCMTask 3.5.0
Would it be better to test first if SCCM is already install?set-variable -name var_class -visibility public -Scope Script -Value "" $var_class = Get-WmiObject -List | Where-Object {$_.__NAMESPACE -eq...
View ArticleNew Post: script that can detect the session id and use psexec
superz202 wrote: I am able to get this working with below command. ServiceUi.exe Deploy-Application.exe Did you try checking the option "Run programs as 32bit on 64bit machine"? Regards WaiYin Is this...
View ArticleNew Post: Executing Deploy-Application.EXE - nothing happens, need help
Is it possible to debug why this happens ? Log file taken from one of my failing computers<![LOG[[Initialization] ::...
View ArticleNew Post: Deployment Script: IE11 needs one reboot (x86 and X64) updated for...
What are you using for your detection method?
View ArticleNew Post: script that can detect the session id and use psexec
PSADT does detect the Session ID [Initialization] :: Logged on user session details: #NTAccount : DomainName\MyUserName UserName : MyUserName DomainName : DomainName SessionId : 2 SessionName :...
View ArticleNew Post: Possibilities with Defer option
This is an option I would like to request as well. I have considered adding to the script a command to launch an Office app as minimized so that may at least trigger the closeapps window so the users...
View ArticleNew Post: Anybody using AppDeployToolkit to deploy package with SCCM 2012 R2?
In response to : You are not using the interactive switch nor "allow user to interact"?! correct, this is an OSD only based application so no interaction is required
View ArticleNew Post: BlockExecution still enabled after the installation
Unblock all blocked apps:[string]$regKeyAppExecution = 'HKLM:SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options' [psobject[]]$unblockProcessName = Get-ChildItem -Path...
View ArticleNew Post: Install PSADT as module on systems
I found this in the admin guide: Deploy-Application.exe "Custom-Script.ps1" Deploy an application with a custom name instead of Deploy-Application.ps1. Deploy-Application.exe -Command...
View ArticleNew Post: -ShowInstallationRestartPrompt -NoCountdown not visiable Version 3.5
I just found this project a couple of months ago and I think it's great work. I am still seeing the issue with the latest 3.6 builds from 3/4. I am using Altiris Notification Server and this is one of...
View ArticleNew Post: script that can detect the session id and use psexec
han891 wrote:superz202 wrote: I am able to get this working with below command. ServiceUi.exe Deploy-Application.exe Did you try checking the option "Run programs as 32bit on 64bit machine"? Regards...
View ArticleNew Post: Install PSADT as module on systems
RE: "With that approach I'm thinking of reduce duplication of having the PSADT copied across a huge amount of packages. " Though this is noble, PSADT is still changing and improving at a fast pace....
View ArticleNew Post: additional functions or parameters for Remove-MSIApplications??
I have an application (SnagIt) that when uninstalling older versions prompts users to save or delete data. In order to hide this option you need to add TSC_DATA_STORE=0 to the uninstall. I could add...
View ArticleNew Post: Deployment Script: IE11 needs one reboot (x86 and X64) updated for...
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. This can avoid user...
View Article