|
Answer» @echo on
start "" "C:\PROGRAM Files\windows media Player\wmplayer.exe" "C:\abc.mp3" echo Bye This is not working.
abc.mp3 song is in C: What is the problem with this batch file; MESAGE is that the file cant be LOCATED. I am really annoyed . Pleae please Thanks devduttaaC:\>ftype mp3file mp3file="C:\Program Files\Windows Media Player\wmplayer.exe" /prefetch:6 /Open "%L"
TRY this: if not exist "c:\abc.mp3" echo abc.mp3 not exist start "" "C:\Program Files\windows media Player\wmplayer.exe" /prefetch:6 /open "C:\abc.mp3"
if still not working try: start "" "c:\abc.mp3"
|