New Post: Deployment Script: Oracle Java Runtime 1.7.0.51
Nelu_G wrote: Hi Jerre, Really interesting script you have here. There is a problem though; when I run it I get this error message:"Missing an argument for parameter 'ContinueOnError'. Specify a...
View ArticleNew Post: Deployment Script: Oracle Java Runtime 1.7.0.51
Regarding OS Architecture, you should be able to use the variable $envOS in your deploy-application script like this: $envOS.OSArchitecture On at 64-bit OS it will return "64-Bit", it is populated in...
View ArticleNew Post: Deployment Script: Oracle Java Runtime 1.7.0.51
Are you using the latest version of the toolkit? Seán
View ArticleNew Post: Deployment Script: Oracle Java Runtime 1.7.0.51
Yeah.It looks like the continue on error things is a bit oh a problem. It was a switch, so just -ContinueOnError works. But when it's a bool you need -ContinueOnError $true.This has broken virtually...
View ArticleNew Post: Need to Install Outlook Add-In as User through SCCM
Hi Everyone, I'm pretty new to the PS App Deployment Toolkit and have run into an issue with using SCCM. I have a situation where we are trying to install the GlobalMeet Toolbar for Outlook (Audio...
View ArticleNew Post: Feature request: $exeDism
Thank you for all the great work on this toolkit. It's proving to be an invaluable resource! I've noticed that there are already pre-existing variables for wusa, schtasks, and msiexec ($exeWusa, etc)....
View ArticleNew Post: software that needs reboot
Hi Dan.. Ok, so I've just tested adding: exit-script -ExitCode "1641" to my script.. it seems to run ok, but popup gives an "installation failed".. is this normal behaviour? Shouldn't the information...
View ArticleNew Post: software that needs reboot
oh.. this is when running the script manually and NOT through SCCM.
View ArticleNew Post: spaces in path name..
Hi I've got some issues with spaces in the path name.. the command I am having problems with is this: Execute-Process -FilePath "$dirFiles\Oracle\client\setup.exe" -Arguments "-silent...
View ArticleNew Post: Deployment Script: Oracle Java Runtime 1.7.0.51
Thanks for this code! I use it to downgrade Java 6 or 7 to Java 6 U29. Basically added this line Add-Content -path "$env:windir\Sun\Java\Deployment\deployment.properties" -value...
View ArticleNew Post: CloseApps: Specify process/executable _plus_ version
I've got an issue with the "CloseApps" parameter: We've got CAD workstations with several versions of a CAD software installed (e.g. NX8, NX8.5, NX9). If I have to install a hotfix for one of them I...
View ArticleNew Post: Need to Install Outlook Add-In as User through SCCM
Did you create it as an application or a package? Did you have installation behavior for user, and only run while user is logged on? Also I would put in Show-InstallationWelcome -CloseApps "outlook.exe"
View ArticleNew Post: spaces in path name..
is it sccm2007 or 2012? If it's 2012, is NetBas a prereq before the oracle install? Why not have the NetBas files in the files dir? I would make a scirpt for the prereqs and put the files in the files...
View ArticleNew Post: Need to Install Outlook Add-In as User through SCCM
It was created as a package as per the Admin Guide and the package is set to run only when the user is logged in. I basically followed the Adobe Reader example from the guide. The...
View ArticleNew Post: Need to Install Outlook Add-In as User through SCCM
This is still feasible but you need to has a trick to swap out from using SYSTEM into the user with elevated credentials. More details here: https://psappdeploytoolkit.codeplex.com/discussions/465270...
View ArticleNew Post: Need to Install Outlook Add-In as User through SCCM
Another option here is to switch off the admin requirement in the toolkit Config file provided the application itself doesn't need admin rights. You lose some functionality in the toolkit like...
View ArticleNew Post: spaces in path name..
Change the line as follows Execute-Process -FilePath "$dirFiles\Oracle\client\setup.exe" -Arguments "-silent -waitforcompletion -nowait -responsefile '"$dirSupportFiles\oracle\client_admin.rsp'" Should...
View ArticleNew Post: Need to Install Outlook Add-In as User through SCCM
Thanks Dan and Seán. I really appreciate the suggestions. Seeing how we aren't using deferrals or blockexecution and the app can be run with user permissions, this might be a good short term solution...
View ArticleNew Post: Need to Install Outlook Add-In as User through SCCM
Msanzari can you post your script when you get it working? I'd like to see a user based install.
View ArticleNew Post: Need to Install Outlook Add-In as User through SCCM
So changing the requireadmin to false in the config file did the trick. The .exe that we are running will install 3 tools but we only want one of them, which is the toolbar that gets installed for...
View Article