[DISCUSSION] UUP dump - download Windows 10/11 UUPs with ease

Discussion in 'MDL Projects and Applications' started by whatever127, Sep 2, 2017.

  1. gjohnson5

    gjohnson5 MDL Member

    Jul 25, 2013
    132
    54
    10
  2. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,651
    3,398
    60
    That's curious. Usually the native Powershell is 5.1 although the folder has the 1.0 nomenclature.
    What is your system?

    For your case you can invert the code.
    Code:
    where.exe /F PwSh.exe >nul 2>&1 && ( set "PSexe=PwSh.exe" )
    if "%PSexe%" equ "" where.exe /F PowerShell.exe >nul 2>&1 && ( set "PSexe=PowerShell.exe" )
    %PSexe% -NoProfile -ExecutionPolicy Unrestricted .\files\depends_win.ps1 || (pause & exit /b 1)
    
    or
    Code:
    where.exe /F PwSh.exe >nul 2>&1 && ( set "PSexe=PwSh.exe" )
    if "%PSexe%" equ "" where.exe /F PowerShell.exe >nul 2>&1 && ( set "PSexe=PowerShell.exe" )
    %PSexe% -NoProfile -ExecutionPolicy Unrestricted .\files\depends_win.ps1 -ForDownload || (pause & exit /b 1)
    
    So it will always use Powershell 7.x when present. If not, native Powershell will be used.
     
  3. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,226
    84,921
    340
    It's your OS configuration issue (whatever tweaks/policies you set, revert and keep default settings)
     
  4. Paul Mercer

    Paul Mercer MDL Expert

    Apr 6, 2018
    1,349
    2,941
    60
    Updated UUP dump local server to version 1.0.5

    Changelog:
    - Updated PHP to version 8.2.5 (Thread-Safe)
    - Updated Apache HTTP Server to version 2.4.57

    Updated uup-converter to version 88:
    - Added support for the new msu wim files (LCU for builds 25336+)
    - Updated wimlib

    Updated uup-converter is necessary for a new Canary build 25336.1010
    All thanks to @abbodi1406
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,359
    7,078
    210
    @Paul Mercer - If I want to open the server to my LAN, is it enough to modify the "Listen" directives in httpd.conf, or are more edits necessary?
     
  6. Muggaen

    Muggaen MDL Addicted

    Dec 30, 2011
    679
    296
    30
    Are this uup-converter version 88 inplementet in the UUP dump local server and on uupdump.net ?
     
  7. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,359
    7,078
    210
  8. Paul Mercer

    Paul Mercer MDL Expert

    Apr 6, 2018
    1,349
    2,941
    60
    yeah, VirtualHost is already accepts any IP, so only "Listen" controlls real IPs and ports

    you can just remove local IP
    Code:
    Listen 44715
    Listen 44725
    local server is already updated
    uupdump.net website is not updated yet, I can't control that, you can ask luzea for an update

    this is expected, but it happens very very rarely on my system
    I don't want to overcomplicate things
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,359
    7,078
    210
    Thanks. Will keep it within my LAN for now.

    Pleased to say that while I run a local Apache server for many years, yours never collided with it. Although I'm now evaluating the possibility to simply host it on the present Apache that's running anyway. But the on-demand package works great as-is.

    Another good alternative server is nginx.
     
  10. Paul Mercer

    Paul Mercer MDL Expert

    Apr 6, 2018
    1,349
    2,941
    60
    I prefer nginx on Linux, and it's too powerful for our project on Windows
    Current Apache configuration should work in any folder (even with fancy symbols in path), service is supported as well, idk if I really should move to nginx on Windows
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. KleineZiege

    KleineZiege MDL Expert

    Dec 11, 2018
    1,694
    1,933
    60
    why change yet everything works smoothly
     
  12. Muggaen

    Muggaen MDL Addicted

    Dec 30, 2011
    679
    296
    30
    never mind Paul Mercer answer my question:) uupdump.net website is not updated
     
  13. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,359
    7,078
    210
    That's because it is not his website, but under control of @luzea and/or @awuctl. Best is to ask on their discord. The UUPDUMP scripts and API stuff created by whatever127 and his gang is free, and the local server has been made with it.

    Currently using it as TLS upscaler for non-capable services. It's indeed much more than just a webserver.
     
  14. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,292
    94,819
    450
    Actually took over but left it a few months ago after releasing the app and now @luzea has control over the website again.
     
  15. 不忘初心

    不忘初心 MDL Novice

    May 17, 2022
    2
    0
    0
    I have hosted the code on a linux server, using NGINX, and using scheduled tasks, to automatically check the version, and generate the package, completely out of the windows environment