콘솔창 커맨드 라인 명령으로 프로그램 제거하는 방법
    - windows program uninstall in command line(cmd.exe, console)
https://www.windows-commandline.com/uninstall-programs-windows-command-line/
http://stackoverflow.com/questions/450027/uninstalling-an-msi-file-from-the-command-line-without-using-msiexec

Findstr
https://technet.microsoft.com/en-us/library/bb490907.aspx?f=255&MSPPError=-2147217396


* wmic 이용
    - 설치된 프로그램 확인
wmic product get description | findstr /i /C:"nprotect"
        - 리스트에 없음, nProtect와 WizVera는 이 방법으로 없앨수 없음

    - 제거 (예:WebFldrs XP)
wmic product where "description='WebFldrs XP'" uninstall


* msiexec 이용
msiexec /x "c:\filename.msi" /q
msiexec.exe /x {11111111-1111-1111-1111-11111111111X}    //GUID


* GUID 확인 방법
- 32-BIT :
 HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall
 HKCU\Software\Microsoft\Windows\CurrentVersion\Uninstall (per user section)

- 64-BIT :
 HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall



//=====================================================
* 인터넷 뱅킹이나 결제 사용후 프로세서 정리




//================
* 서비스 멈추기
sc config WizveraPMSvc start= demand
sc stop WizveraPMSvc


* 시작 프로그램에서 제거
reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v "AhnLab Safe Transaction Application" /f

* 프로세스 강제 종료
Taskkill /IM veraport.exe /F


//참고
C:\Program Files (x86)\Wizvera\Veraport20\veraport.exe
C:\Program Files (x86)\Wizvera\Delfino-G3\delfino.exe

반응형
Posted by codens