You two now have the same problem I had through several previous versions. IMO the update routine may need simplifying, see post #926 above.
@dhjohns @endbase I think it may be useful to @s1ave77 if you show your specified download path and what's in it. After you have chosen replace and at PRESS ANY KEY - don't press a key, close the window and show folder structure (where you specified to download). @s1ave77 - Is this a different user languages problem? Post #901
Code: C:\Users\dhjoh\Downloads\uupdl.v0.06.32\uupdl-master-f13b927e31cfea9c80e2749ac82ba8140d393ee3\ After you have closed window before PRESS ANY KEY the new downloaded files/folders are there??? In above my head. Wait for @s1ave77 or coders/scripters.
@s1ave77 - Sorry, thought I'd tested the fixed version to destruction. Now confirming as @dhjohns and @endbase - still broken, running it at. Code: "D:\Archives\Unpacks\UUPDL" Specified download folder was c:\ Nothing gets copied to. Code: "D:\Archives\Unpacks\UUPDL" And it's left empty. Sorry.
Problem is i can't find a way to unpack the subfolder directly (like 'unpack here') to a folder with specified name .
Yes but see this. If specify c:\ as the download path and after choosing replace the only file that goes to c:\ is uupdlupd.cmd Edit: If specify c:\Update as download folder and after replace all files/folders go to: Code: "C:\Update\uupdl.v0.06.52\uupdl-master-1c45298e6bb553e15ddb6b757e2b18f899e0b783" And update and restart script succeeds. Dunno, it's above me.
S-M-R-T M50 UUPDL v0.06.59 released . +++ BUG FIX RELEASE +++ Changelog v0.06.59 --still fixing the update https://forums.mydigitallife.net/threads/uup-dump.75052/page-5#post-1368477
lets hope after all this work you did we can test it in new builds etc great work bro.! btw choosing language and press 2 times digits is really necessary???
Dedicated work today doggie. Well done and thank you. Hope the update routine gets nailed soon. Nite.
ATTENTION: I must admit (hope @Atari800XL will notice the correct usage) the idea to merge the download folder to: Code: %buildstr%\%lang%\%arch% was s-m-r-t enough to make it into the script. So when downloading single editions of 16288 en-us x64 files will get merged and unnessecary downloads will be skipped. So be prepared to adapt to new folder structure with next release.
Code: xcopy "%downpath%\uupdl.%projectvernew%\%foldername%\*.*" /s /q "%cd%\" /y ^>nul 2^>^&^1 Why not use "uupdl-~1" instead of "%foldername%" Edit: Your last edit from the update process has destroyed the update process This is the code from "uupdlupd.cmd" Code: @echo off :: Code by s1ave77 setlocal ENABLEDELAYEDEXPANSION pushd "R:\Update" echo ##################### echo [ INFO ] UUPDL UPDATE echo ##################### echo [ INFO ] PLEASE WAIT. echo ##################### timeout /t 5 >nul 2>&1 rd /s /q "R:\uupdl\files" >nul 2>&1 rd /s /q "R:\uupdl\fileinfo" >nul 2>&1 del /q "R:\uupdl\FILE_ID.DIZ" >nul 2>&1 del /q "R:\uupdl\READ_ME.NFO" >nul 2>&1 del /q "R:\uupdl\uup.downloader.cmd" >nul 2>&1 timeout /t 5 >nul 2>&1 xcopy "R:\Update\uupdl.v0.06.59\\*.*" /s /q "R:\uupdl\" /y >nul 2>&1 start cmd /k "R:\uupdl\uup.downloader.cmd" if exist "R:\Update\uupdl.v0.06.59\" rd /s /q "" >nul 2>&1 endlocal del %0
You always run it from R:\uupdl and hard code it to R:\Update instead of %downpath% so I assume you have bypassed the user typing in the download path? I wondered about that and simplifying the update routine. Post.