”대량 PPT → PDF 변환”을 한 번에(일괄) 처리
·
ChatGPT
가장 간단한 방법 (Windows PowerPoint 자체 기능)PowerPoint가 설치되어 있고, 수십 개 이하 파일이라면 이게 제일 쉽습니다.✅ 절차모든 PPT 파일을 한 폴더에 넣기아래 코드를 메모장에 복사 후 convert.vbs 로 저장 ' convert all pptx in folder to pdf Set fso = CreateObject("Scripting.FileSystemObject") folder = InputBox("변환할 PPT 폴더 경로를 입력하세요:") Set folderObj = fso.GetFolder(folder) Set pptApp = CreateObject("PowerPoint.Application") pptApp.Visible = True For Each file I..