AutoDrive GitHub Update Farming Simulator 22 - PMC Farming

FS22 AutoDrive GitHub Updating

Here is a batch file to automatically download FS22 AutoDrive from the official GitHub repository and pack FS22 compatible mod ZIP packet. This batch file requires windows WGET software, in my example its on path or in the directly you are running this bat.

_run_FS22_download_autodrive.bat:

@echo off
wget https://github.com/Stephan-S/FS22_AutoDrive/archive/refs/heads/main.zip
md temp
cd temp
7za x ..\main.zip
cd FS22_AutoDrive-main
del credits.txt
del README.md
7za a -tzip ..\..\FS22_AutoDrive.zip *
cd ..\..
del main.zip
rd /q /s temp
pause
exit