I'm looking for a script or way to remotely uninstall HP Skyroom and HP Support Assistant from a PC. I'm in an enterprise and seriously would like not to have to touch hundreds of PC's individually. Has anyone else had success uninstalling these apps remotely? I have tested several so far with no luck. One called 'uninstallutility.hta' by Stuart Barrett looked promising.
Jul 02, 2014 Silent install of 'HP Hotkey Support'. The best place to look for silent installation parameters is www.appdeploy.com. Torsten Meringer. Famous visual artists.
But failed on these psky HP apps. Both apps can be uninstalled via control panel.
The folder path to the executable is: C: Program Files(x86) Hewlett-Packard HP Skyroom HP.Skyroom.exe and C: Program Files(x86) Hewlett-Packard HP Skyroom HP Support framework HPSF.exe Thanks in advance. Hmm, is it a 64bit machine by any chance? In that case location of the reg key would be a bit different and you would want to check this key Get-ItemProperty HKLM: Software Wow6432 Microsoft Windows CurrentVersion Uninstall select DisplayName, UninstallString As you mentioned that you are seeing an uninstall in the Add/Remove Programs, you might want to try looking at 'Product' class of WMI as follows: gwmi Win32Product ogv Just a bit a caution, If I remember correctly, there is a bug with that class and when you query it, it might go through reconfiguration of msi-installed packages. I believe MS recommended using Win32RegAddRemovePrograms, but that suggestion was kinda weird, because the class did not exist unless you installed a product from Microsoft. The app should be visible from wmic: wmic /node:computername product get name,vendor,version takes a little time. Find the product and run f.ex this to uninstall: wmic /node:computername product where 'name LIKE 'HP Support%' call uninstall (after the% - single quote then double quote) This should uninstall all apps with names starting with HP Support Many machines, make a list containing the computer names. Put the wmic in a bat file (for better control and reuse) uninstallHPSUP.bat: @echo off wmic /node:%1 product get name,vendor,version call it like this: FOR /F 'tokens=1'%i IN (computerlist.txt) DO uninstallHPSUP.bat%i You could also start multiple uninstalls by putting START before wmic in the bat file or before the bat file in the FOR loop.

Do a test on a couple of computers first.:).
I would like to create a customized silent install of Quicktime and iTunes. My research so far indicates that I could use ORCA to modify the various.MSIs involved, and then install them in the correct order by msiexec.exe /I /qn to meet my objective. My question is what modifications should I make to each.MSI in order to get an install that doesn't include any shortcuts, that accepts all EULA, that disables autoupdate, and also disregards Bonjour.
Another bit of confusion. Each installer includes a AppleApplicationSupport.
Which one should be used? I currently deploy quictime+itunes in the following order with the commands. I believe the current version of apple application support is 2.1.7 and that seems to work with all the applications. Please make sure to mention no reboot otherwise these installations will force reboot the computer.
Please check out the link at the bottom since they have instructions how to disable desktop icons. Msiexec.exe ALLUSERS=true reboot=suppress /qn /i 'appleapplicationsupport64.msi' msiexec.exe /qn /norestart /i 'applemobiledevicesupport64.msi' msiexec.exe /qn /norestart /i 'bonjour64.msi' msiexec.exe /qn /norestart /i 'quicktime.msi' msiexec.exe /qn /norestart /i 'itunes64.msi' http://www.beyondpictures.com/blog/tech/2009/03/deploy-itunes-with-group-policy.html.