New Post: Powershell Application Detection
jguevarajr wrote:Lipid_Venom wrote: One thing that I have noticed with the detection method I posted, I occasionally receive reports from users that if they already have the latest version (or higher)...
View ArticleNew Post: Powershell Application Detection
Lipid_Venom wrote:jguevarajr wrote:Lipid_Venom wrote: One thing that I have noticed with the detection method I posted, I occasionally receive reports from users that if they already have the latest...
View ArticleNew Post: Powershell Application Detection
jguevarajr wrote: Quick question for you all, once you install the latest Receiver are you prompting users to restart their PC afterwards? Sounds silly but all the previous threads I have read indicate...
View ArticleNew Post: Powershell Application Detection
souporman wrote:jguevarajr wrote: Quick question for you all, once you install the latest Receiver are you prompting users to restart their PC afterwards? Sounds silly but all the previous threads I...
View ArticleNew Post: Powershell Application Detection
That's exactly right! Also, I strongly recommend looking at the example Citrix script PowerSheller linked to. Closing those running applications in the Pre-Installation steps is super important for...
View ArticleNew Post: Java x64 installation
Hi, Not using the Remove-MSIApplication function, but you could do something like this:$javaInstalls = Get-InstalledApplication "Java 7 Update" $javaInstallLocation = $javaInstalls | Select...
View ArticleNew Post: Java x64 installation
Hi, Great, thanks for the reply, it's set me on the right track. A couple of tweaks got it working. #Remove old versions of 32 bit Java 7 if ((Get-WmiObject -Class Win32_OperatingSystem).OSArchitecture...
View ArticleNew Post: SCCM 2012 - Deploy Agent Offline
Hi there, i build a Script to deploy the SCCM 2012 Agent offline, it still run as repair script to but i have a problem. My Final Dialog doesn´t show anything, the scripts end silent but the agent...
View ArticleNew Post: Boxsync silent install...
Probably could use some tweaking..*===============================================* INSTALLATION $installPhase = "Installation"*=============================================== If ($psArchitecture -eq...
View ArticleNew Post: Remove office viewers, clean off old version of office and install...
You'll of course need the office clean up scripts. Just google OffScrub10.vbs and you'll find it. Also you might have different versions of the office viewers installed so you'll have to find the MSI...
View ArticleNew Post: Action for Advertised Shortcuts in"Execute-MSI"
I wanted to be able to advertise shortcuts, and let people be able to install software completely once they needed it. Typically it's for software that I'd deploy to everyone, but only the people who...
View ArticleNew Post: Script works perfectly with 64 bit but not 32bit
Gday, I have been working with creating a deployment script for a Custom App to deploy to a huge enterprise. The goal is to Query the OS type '32bit or 64bit' then Uninstall previous versions and...
View ArticleNew Post: Script works perfectly with 64 bit but not 32bit
Hi, Can you post a log file from the toolkit and app here? Cheers
View ArticleNew Post: SCCM 2012 - Deploy Agent Offline
What are you using to run launch the script? Can you post log files?
View ArticleNew Post: NoCountdown Reposition for Restart prompt with Countdown
I'd like to say yes as we've always tried to accommodate feature requests but we're both short on time at the moment, so feel free to post it under the "Issues" tab as a feature request but I can't...
View ArticleNew Post: Show-InstallationRestartPrompt with no users logged in
Howdy. I need my app to reboot at the end of my script and I love Show-InstallationRestartPrompt for the "restart later" option; However, if no user is logged in, the reboot simply never happens....
View ArticleNew Post: AD OU Deployment Targeting
This has already been brought up in a previous post, but it was not the primary topic:Previous Topic So I wanted to start a new one to continue this topic without disrupting the other...
View ArticleNew Post: Show-InstallationRestartPrompt with no users logged in
In case anybody else finds themselves in a dilemma like mine, here's the solution I came up with:$info = gwmi -class win32_computerSystem -ea silentlycontinue | Select-Object username if...
View ArticleNew Post: Upgrade IE7 to IE8 (don't laugh!)
I thought I would share this for the people like me who are stuck in the stone age on Windows XP. #*=============================================== # Variables: Application $appVendor = "Microsoft"...
View Article