knights-path/Testing/Testing.bat
2024-02-28 13:43:34 -05:00

14 lines
426 B
Batchfile

@echo off
set "file=C:\Users\Rushil Umaretiya\Desktop\Knight's Path\Testing\Music\KP Music.mp3"
( echo Set Sound = CreateObject("WMPlayer.OCX.7"^)
echo Sound.URL = "%file%"
echo Sound.Controls.play
echo do while Sound.currentmedia.duration = 0
echo wscript.sleep 100
echo loop
echo wscript.sleep (int(Sound.currentmedia.duration^)+1^)*1000) >sound.vbs
start /min sound.vbs
pause
taskkill /f /im wmplayer
pause
exit