Page 1 of 1

Automatically uninstall a program

Posted: 13 Feb 2023 20:16
by MauricioDeAbreu
Good afternoon friends.

I come to ask for your help to create a Batch that I automatically and silently uninstalled a program, this program is installed in both Windows 10 and Windows 7.

The program (I leave it here in a RAR) extracts the serials from the equipment. I have not created it, but I have to uninstall it daily from hundreds of computers.

I have dealt with:
- wmic product where name="HardwareComponents" call uninstall /nointeractive
-EchoY | wmic product where name="HardwareComponents" call uninstall /nointeractive
But I have not been successful, when doing so it tells me that "The instance was not found"

Please, I need help to expedite this process.

I thank you in advance for any help you can give me.

Excuse my English, I'm using a translator.

Re: Automatically uninstall a program

Posted: 15 Feb 2023 12:15
by MauricioDeAbreu
Does anyone have any idea or suggestion about it? :oops:

Re: Automatically uninstall a program

Posted: 15 Feb 2023 23:16
by ShadowThief
Does it actually show up in wmic product list as HardwareComponents? Is there a .msi file associated with it? Both of these things are required to be able to do what you're trying to do.