Hi,
I try to through SCCM uninstall Belarc Advisor 8.1 i will try below Query it showing error where can i done the Mistake Pls help. Please see the below Query.
@echo off
REM
REM
REM Detects Belarc and silently uninstalls
REM There is a un-stoppable pop-up window. so this will kill
REM all instances of IE after the UN-installation.
REM
REM
REM
taskkill /F /IM wzqkpick.exe
wmic product where "name like '%%Belarc%%'" call Uninstall
REM
REM This section is for Belarc <12
REM
If Exist "%programfiles(x86)%\Belarc\Advisor\Uninstall.exe" GOTO 64
If Exist "%programfiles%\Belarc\Advisor\Uninstall.exe" "%programfiles%\Belarc\Advisor\Uninstall.exe"/qnx
GOTO :END
:64
"%programfiles(x86)%\Belarc\Advisor\Uninstall.exe"/qnx
:END
Kiran