批处理命令中间如何加选择是否继续命令?

@ echo off

"\\cnhshalcf8ms005\itdoc$\Software\Adobe Reader 6.0\AdbeRdr60_enu_full.exe"

"\\cnhshalcf8ms005\itdoc$\Software\Adobe Reader 6.0\Adobe Reader 6.0 Asian Font Packs\AdobeReader60_AsianFontPacks\WXPW2K_TI_10\install.exe"

call :ask

"\\cnhshalcf8ms005\itdoc$\Software\Lotus Notes 6.0.3\Notes 6.0.3 English\Lotus Notes 6.0.3.msi"

"\\cnhshalcf8ms005\itdoc$\Software\WinZip_90SR1\Source\WinZip_90SR1.msi"

call :ask

"\\cnhshalcf8ms005\itdoc$\Software\Office_2003SP2\Source\PRO11.MSI"

"\\cnhshalcf8ms005\itdoc$\Software\TPO_SW\LCS\communicator\Communicator.msi"

call :ask

"\\cnhshalcf8ms005\itdoc$\Software\TPO_SW\jre-1_5_0_11-windows-i586-p-s.exe"

"\\cnhshalcf8ms005\itdoc$\Software\TPO_SW\Trend\OfficeScan-Client for Workstation\SHA-Ver-73-for-XP-2K-20060902.exe"

:ask

set /p q=还要继续吗? (y/n)

if /i %q%==n exit

goto :eof

exit