콘솔창 커맨드 라인 명령으로 프로그램 제거하는 방법
- 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
'Tips' 카테고리의 다른 글
윈도우7 업데이트 확인 속도가 느릴때 해결 방법 (0) | 2016.11.02 |
---|---|
[게임] 월드 오브 워크래프트(와우) 매뉴얼 정리 (1) | 2016.10.31 |
TiWorker.exe CPU 사용률 문제 (1) | 2016.09.18 |
마우스버튼에 키보드 단축키 설정하기 (1) | 2016.08.03 |
스팀 세일 정보 정리 (0) | 2016.07.06 |