I'm trying to write batch script to zip multiple files separately by using WinRAR. I can do it by using 7zip by using this
for %%X in (*) do "c:\Program Files\7-Zip\7z.exe" a "%%X.zip" "%%X\"
But I want to zip these files using WinRAR. Please help me with this. Thanks