/build/static/layout/Breadcrumb_cap_w.png

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)

Posted by: Nico_K 5 years ago
Red Belt
1

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
 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ