써먹는 웹개발
[RPA] 프로세스 종료 (메모장, 엑셀, ie, 크롬, sap, 폴더)하는 배치파일 본문
728x90
반응형
프로세스 종료 (메모장, 엑셀, ie, 크롬, sap, 폴더)하는 배치파일 만드는 방법 (taskkill)
- 다음 소스를 텍스트파일에 넣고 확장차를 .bat(배치파일)로 저장
@echo off tasklist /fi "imagename eq notepad.exe" |find ":" > nul if errorlevel 1 taskkill /f /im "notepad.exe" tasklist /fi "imagename eq excel.exe" |find ":" > nul if errorlevel 1 taskkill /f /im "excel.exe" tasklist /fi "imagename eq iexplore.exe" |find ":" > nul if errorlevel 1 taskkill /f /im "iexplore.exe" tasklist /fi "imagename eq chrome.exe" |find ":" > nul if errorlevel 1 taskkill /f /im "chrome.exe" tasklist /fi "imagename eq saplogon.exe" |find ":" > nul if errorlevel 1 taskkill /f /im "saplogon.exe" Set VBSFILE=C:\01_Jein\CloseAllOpenedFolders.vbs ( echo Option Explicit echo Dim shell,oWindows,j echo On Error Resume Next echo set shell = CreateObject("Shell.Application"^) echo set oWindows = shell.windows echo for j = oWindows.count - 1 to 0 Step -1 echo oWindows.item(j^).quit echo next echo set j = nothing echo set shell = nothing echo set oWindows = nothing )>%VBSFILE% Start /Wait %VBSFILE% |
728x90
반응형
'Study > RPA' 카테고리의 다른 글
[RPA - ui path] 엑셀 Read Cell 처리할때 'Int32Converter은(는) System.Double에서 변환할 수 없습니다.' 에러 메시지 해결방법 (0) | 2020.04.28 |
---|---|
[RPA - JBot] Tesseract 캡처 요령 (0) | 2020.02.11 |
[RPA J Bot] getValue를 할때 필요한 C# 문법모음 (0) | 2020.01.20 |
[RPA - J Bot] 오늘부터 2달 전 1일, 1달 전 말일 구해서 출력하는 Flow 및 실행 영상 (0) | 2020.01.02 |
[RPA] cmd의 target이 안잡힐 때도 DOS 명령어를 실행할 수 있는 방법 (0) | 2019.12.27 |
Comments