@echo off
rem Copies the sounds in the same folder as this bat file, to your NVDA directory, assuming it is an installed copy.
rem Now attempts to work with portable installs too.
rem Created, then modified by Andre Louis, 19:41 28/07/2015

if exist C:\Program Files\NVDA\waves goto std
if exist C:\Program Files (x86)\NVDA\waves goto x86
if exist ..\waves goto portable

:x86
copy *.wav "C:\Program Files (x86)\NVDA\waves\"

:std
copy *.wav "C:\Program Files\NVDA\waves\"

:portable
copy *.wav ..\waves\