codens
2016. 9. 25. 16:39
콘솔창 커맨드 라인 명령으로 프로그램 제거하는 방법 - 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 //===================================================== * 인터넷 뱅킹이나 결제 사용후 프로세서 정리
더보기 접기
rem Bank_STOP.bat 관리자 권한으로 실행 rem Banking Unload rem nProtect Online Security (INCA Internet) 제거 "C:\Program Files (x86)\INCAInternet UnInstall\nProtect Online Security\nProtectUninstaller.exe" rem AhnLab\Safe Transaction Uninstall "C:\Program Files\AhnLab\Safe Transaction\V3Medic.exe" -Uninstall sc config nossvc start= demand sc stop nossvc sc config WizveraPMSvc start= demand sc stop WizveraPMSvc sc config "AnySign4PC Launcher" start= demand sc stop "AnySign4PC Launcher" sc config "INISAFEClientManager" start= demand sc stop "INISAFEClientManager" sc config "KicaPMSvc" start= demand sc stop "KicaPMSvc" sc config "PSSWSCSVC" start= demand sc stop "PSSWSCSVC" reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v "AhnLab Safe Transaction Application" /f reg delete HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Run /v "wizvera-delfino-pc" /f reg delete HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Run /v "wizvera-veraport" /f reg delete HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Run /v "ipinside-lws" /f reg delete HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Run /v "keysharpbiz" /f reg delete HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Run /v "AnySign4PC" /f reg delete HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v "CrossEXService" /f Taskkill /IM veraport.exe /F Taskkill /IM delfino.exe /F Taskkill /IM SCSKSender.exe /F Taskkill /IM KeySharpNxBiz.exe /F Taskkill /IM AnySign4PCLauncher.exe /F Taskkill /IM AnySign4PC.exe /F Taskkill /IM CrossEXService.exe /F Taskkill /IM INISAFECrossWebEXSvc.exe /F Taskkill /IM IniClientSvc.exe /F Taskkill /IM kpmcnt.exe /F Taskkill /IM kpmsvc.exe /F Taskkill /IM PWSLocalServer.exe /F pause
접기
//================ * 서비스 멈추기 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