Post

Uninstalling software with Group Policy

1]- CMD: & PS:

admin olarak çalıştırılıp - run as administrator

wmic yazıyoruz ve enter tuşuna basıyoruz. - We type wmic and press enter.
Ardından product get name yazarak enter... bekliyoruz. - Type product get name enter… and wait.
Gelen isimlerinden kaldırılacak programı kopyalıyoruz. - copy the program name to be uninstalled.
product where name= kısmına yazıyoruz. - product where name= we write to. *Google Chrome *winrar
bu bat dosyasını gpo ile ilgili gruba dağıtabiliriz.

bat dosyası hali - bat file state: uninstaller.bat

wmic product where name="Google Chrome" call uninstall
@echo off
net session >NUL 2>&1|| powershell Start-Process '%0' -Verb RunAs&& exit /b|| exit /b
cmd

2]- ilk methot işe yaramaydıysa ikinci işleme geçelim. - The first method may not work, we move on to the second method.

Regedit üzeride;

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall

yoluna gidelim. - Let's go your way.

Açılan ekranda UninstallString parametresi içindeki değer bize gerekli olan ID bilgisini barındırıyor. - On the screen that opens, the value in the UninstallString parameter contains the ID information we need.

MsiExec.exe /X {Program_ID_Bilgisi} /qn

MsiExec.exe /X {Program_ID_Info} /qn

yazilim_kaldirma.bat

ID bilgisini kopyalayıp bat dosyası içine kayderek dağıtalım. - Let's save the copied ID information in the bat file and distribute it.

Saygılarımla. – Best regards.

This post is licensed under CC BY 4.0 by the author.