anyone looking for the fix before the dev fixes it the solution is to open the cpupdate_portable.bat in notepad and change this:
:: Setting Mod directory
SETLOCAL
for /f "delims=" %%i in ('cscript %TEMP%\moddir.vbs "%UserDocs%\My Games\FarmingSimulator2017\gameSettings.xml" //Nologo') do set moddir=%%i
rem Setting Courseplay mod folder or file
if defined moddir (
set _dest=%moddir%\ZZZ_courseplay
) else (
set _dest=%UserDocs%\my games\FarmingSimulator2017\mods\ZZZ_courseplay
to :
:: Setting Mod directory
SETLOCAL
for /f "delims=" %%i in ('cscript %TEMP%\moddir.vbs "%UserDocs%\My Games\FarmingSimulator2019\gameSettings.xml" //Nologo') do set moddir=%%i
rem Setting Courseplay mod folder or file
if defined moddir (
set _dest=%moddir%\ZZZ_courseplay
) else (
set _dest=%UserDocs%\my games\FarmingSimulator2019\mods\ZZZ_courseplay
anyone looking for the fix before the dev fixes it the solution is to open the cpupdate_portable.bat in notepad and change this:
:: Setting Mod directory SETLOCAL for /f "delims=" %%i in ('cscript %TEMP%\moddir.vbs "%UserDocs%\My Games\FarmingSimulator2017\gameSettings.xml" //Nologo') do set moddir=%%i
rem Setting Courseplay mod folder or file if defined moddir ( set _dest=%moddir%\ZZZ_courseplay ) else ( set _dest=%UserDocs%\my games\FarmingSimulator2017\mods\ZZZ_courseplay
to :
:: Setting Mod directory SETLOCAL for /f "delims=" %%i in ('cscript %TEMP%\moddir.vbs "%UserDocs%\My Games\FarmingSimulator2019\gameSettings.xml" //Nologo') do set moddir=%%i
rem Setting Courseplay mod folder or file if defined moddir ( set _dest=%moddir%\ZZZ_courseplay ) else ( set _dest=%UserDocs%\my games\FarmingSimulator2019\mods\ZZZ_courseplay