Como posso fechar a janela de script em lote sem primeiro ter que fechar o arquivo PDF que está aberto? Mesmo com exit
a janela fica aberta até eu fechar o arquivo PDF.
@echo off
setlocal enabledelayedexpansion
rem query the registry to get the full path to acrobat
for /f "usebackq tokens=3*" %%a in ('reg query HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\ /s /f \Acrobat.exe ^| findstr Default') do (
set _acrobat=%%a %%b
rem create the shortcut
"!_acrobat!" /A "page=10" "file.pdf"
)
endlocal
exit
Tags batch-file cmd.exe