I'm not very practical so I would like to ask for your help in compiling a batch file
I set the file to automatically start some cmd commands to be able to download videos with destream
@echo OFF cd C:\Windows\destreamer start destreamer -i "url i want to download" pause
Now I would like to insert a command in the batch file that allows me to paste the url of the desired video once the batch file is started without manually editing it in the file itself
Such as the command set / p "var = Enter Name:"
i tried a test but it doesn't work and i also tried to modify it but i don't think it's the correct way could you help me? Thanks in advance
@echo OFF
set /p "var=Enter Name: "
cd C:\Windows\destreamer
start destreamer -i "%var %"
pause