New Post: Regarding the SCCM limitation with Applications and "allow user to...
This is exactly what we talk about. Use ServiceUI.EXE to run the Deploy-Application.EXE. Use this settings: Program: ServiceUI.exe "Deploy-Application.EXE" Install for System Whether or not a user is...
View ArticleNew Post: Regarding the SCCM limitation with Applications and "allow user to...
Thanks for making this more clear to me. How do you handle the uninstallation? serviceui.exe "deploy-application.exe uninstall" doesn't work.
View ArticleNew Post: Regarding the SCCM limitation with Applications and "allow user to...
Tyr it with this: ServiceUI.exe "Deploy-Application.EXE" "–DeploymentType" “Uninstall”
View ArticleNew Post: Regarding the SCCM limitation with Applications and "allow user to...
benG wrote: Thanks for making this more clear to me. How do you handle the uninstallation? serviceui.exe "deploy-application.exe uninstall" doesn't work. Remove the quotation marks and use this:...
View ArticleNew Post: Regarding the SCCM limitation with Applications and "allow user to...
I haven't written in this thread in a long time. As many people have pointed out, ServiceUI.exe does not seem to work well in 32-bit Windows for some reason. It works perfectly in 64-bit, so if you're...
View ArticleNew Post: Regarding the SCCM limitation with Applications and "allow user to...
I still have some old 32 Bit XP Machines out there... but.. maybe i just replace them instead of keeping updating...
View ArticleNew Post: Regarding the SCCM limitation with Applications and "allow user to...
The error with Resolve-Error looks like the script can't find the Resolve-Error cmdlet in AppDeployToolkitMain.ps1. Can you make sure you're using the latest beta 3.5 version of AppDeployToolkitMain.ps1?
View ArticleNew Post: Regarding the SCCM limitation with Applications and "allow user to...
Also, I came across this tool the other day. It's the ServiceUI.exe equivalent from BigFix...now owned by IBM. It's a freely available utility. I wonder if it works just fine in 32/64-bit environments....
View ArticleNew Post: Regarding the SCCM limitation with Applications and "allow user to...
mmashwani wrote: The error with Resolve-Error looks like the script can't find the Resolve-Error cmdlet in AppDeployToolkitMain.ps1. Can you make sure you're using the latest beta 3.5 version of...
View ArticleNew Post: Regarding the SCCM limitation with Applications and "allow user to...
I found the problem, it's line 45: Set-ExecutionPolicy -ExecutionPolicy 'ByPass' -Scope 'Process' -Force -ErrorAction 'SilentlyContinue' It returns:Set-ExecutionPolicy : Windows PowerShell updated your...
View ArticleNew Post: Regarding the SCCM limitation with Applications and "allow user to...
That's very strange. So even though it's set to silently continue upon error, you're saying that the script fails at this point because of an attempt change the execution policy. The policy set via GPO...
View ArticleNew Post: Regarding the SCCM limitation with Applications and "allow user to...
I think -ErrorAction has no effect. Here is what I have found: The ErrorAction parameter has no effect on terminating errors (such as missing data, parameters that are not valid, or insufficient...
View ArticleNew Post: Regarding the SCCM limitation with Applications and "allow user to...
Does the script work for you if you put the line in a Try/Catch block?Try { Set-ExecutionPolicy -ExecutionPolicy 'ByPass' -Scope 'Process' -Force -ErrorAction 'Stop' } Catch {}
View ArticleNew Post: Regarding the SCCM limitation with Applications and "allow user to...
Great, thanks, fix implemented in beta.
View ArticleNew Post: CM12 App Deployed - Script execution failed with error code -1
Hello, i just deployed Adobe Reader + Flash with the PS App DeployToolkit + Serviceui.exe to ~300 Clients Most of them installed the Applications without an issue (So awesome!!!) However, a few of them...
View ArticleNew Post: Reg file import
What is the best way to import a registry file using the app deployment toolkit? I need to run a post-install process that imports a registry file. Thanks, Jeff
View ArticleNew Post: How to encrypt code in app deployment toolkit
Hi, Is someone know how to encrypt code in app deployment toolkit script?
View ArticleNew Post: Java install on Windows 7 64 bit detection
Thanks for the suggestion. The ability to detect if it is a 64-bit/32-bit application has been added to the latest 3.5 beta under the Sources tab.
View ArticleNew Post: Managing the default user
Hi, I made a lot of package in the past and I have a few questions.Is it a way with your script to change the default user parameters?If I need to change every users value in the registry, is it a way...
View Article