| 12 | |
| 13 | == Silent Uninstall == |
| 14 | |
| 15 | === Silent Uninstall using wmi === |
| 16 | |
| 17 | {{{ |
| 18 | C:\ wmic |
| 19 | wmic:root\cli>product get name,version |
| 20 | Name Version |
| 21 | WebFldrs XP 9.50.7523 |
| 22 | Java(TM) 6 Update 20 6.0.200 |
| 23 | TeamViewer 6 (MSI Wrapper) 6.0.11052 |
| 24 | ... |
| 25 | |
| 26 | wmic:root\cli>product where name="WebFldrs XP" |
| 27 | Caption Description IdentifyingNumber InstallDate InstallDate2 InstallLocation InstallState Name PackageCache SKUNumber Vendor Version |
| 28 | WebFldrs XP WebFldrs XP {350C97B3-3D7C-4EE8-BAA9-00BCB3D54227} 20110906 20110906000000.000000-000 5 WebFldrs XP C:\WINDOWS\Installer\2e182.msi Microsoft Corporation 9.50.7523 |
| 29 | |
| 30 | wmic:root\cli>product where name="WebFldrs XP" call uninstall /nointeractive |
| 31 | }}} |
| 32 | |