I have a VBS file that is runing a bat file in background(the bat file is registering the voice for 1 hour. I want to make this VBS file to run every hour so i can register the voice non stop.
My bat file is like this:
@echo off
mkdir "My records"
set outputpath=My records\record_%date:~-2,2%%date:~-7,2%%date:~-10,2%_%time:~-11,2%%time:~-8,2%.mp3
ffmpeg -f dshow -i audio="Microphone (Realtek High Definition Audio)" -y -t 01:00:00 "%outputpath%"
And my VBS file is like this:
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run chr(34) & "C:\Users\immol\Desktop\voice recorder\record.bat" & Chr(34), 0
Set WshShell = Nothing
So, can someone advise how to make this VBS run every hour and have recording the voice for 24/7 ? Thank you