Hi I am new to software deployment. I would like to know what are the Silent Uninstall switches to remove Dropbox?
Hi I am new to software deployment. I would like to know what are the Silent Uninstall switches to remove Dropbox?
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
Nico_K
5 years ago
Dropbox seems to be a bit tricky to uninstall.
This page shows a nice little script which removes all parts (which seems uncommon with the default uninstall routines)
https://forum.pulseway.com/topic/1938-remove-dropbox-with-powershell/
By default my favourite tool to uninstall software is the windows built in WMI console.
wmic product where ”name like 'dropbox%%'“ call uninstall”.
With KACE you do it like that (it is for Java, but this is the software I need to uninstall regulary, if an update did no remove the old version)
Comments:
-
wow thanks for the quick response. Thanks I was thinking theres no easy switch to just uninstall more involved. Thanks again - djashdbn 5 years ago
-
"By default my favourite tool to uninstall software is the windows built in WMI console.
wmic product where ”name like 'dropbox%%'“ call uninstall”."
Don't do that. Win32_product actually reconfigures every single msi on your computer when it is invoked. This will often lead to WMI corruption.
https://gregramsey.net/2012/02/20/win32_product-is-evil/
Instead, query the registry for uninstall strings and use that.
I wrote an example in powershell that removes Java and Opera
https://gitlab.com/snippets/1736938 - isudothings 5 years ago