[TOOL] POWIS - Powerful Windows Setup v1.0.3

Discussion in 'MDL Projects and Applications' started by George King, May 24, 2021.

  1. George King

    George King MDL Expert

    Aug 5, 2009
    1,858
    2,197
    60
    I'm not going to be rude, but everything is well explained in first post. If you don't understand documentation with pictures, that's sad and I recommend you do NOT reinstall Windows yourself.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. George King

    George King MDL Expert

    Aug 5, 2009
    1,858
    2,197
    60
    #63 George King, Jul 23, 2021
    Last edited: Jul 24, 2021
    (OP)
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. maargueb

    maargueb MDL Member

    Jun 9, 2019
    206
    27
    10
  4. George King

    George King MDL Expert

    Aug 5, 2009
    1,858
    2,197
    60
    @maargueb That mean, you are not logged on Administrator account. Maybe another settings. You can see same “problem” on previous pages. Simply copy and paste full ISO path inside POWIS
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. maargueb

    maargueb MDL Member

    Jun 9, 2019
    206
    27
    10
    #67 maargueb, Jul 24, 2021
    Last edited: Jul 24, 2021
    I have tried many scripts in the forum that work for me, but the scriptPOWIS does not work for me, :confused:
    Is there another way, better than drag and drop?
     
  6. George King

    George King MDL Expert

    Aug 5, 2009
    1,858
    2,197
    60
    If anybody can tell me why you can’t use drag a drop (as its Windows feature, WinRar or 7zip can’t use more than one drag and drop session at the same time)
    Let me know If there is anything what can I change in script itself to solve it
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. maargueb

    maargueb MDL Member

    Jun 9, 2019
    206
    27
    10
    My system is Windows 7
    I wish the tool was without drag and drop, just run the script as administrator
     
  8. George King

    George King MDL Expert

    Aug 5, 2009
    1,858
    2,197
    60
    Simply paste full path to ISO into tool. Or use it from CMD. Run POWIS.CMD /? To see details
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. maargueb

    maargueb MDL Member

    Jun 9, 2019
    206
    27
    10
    can i write the path inside cmd,
    Exemple:
    C:\POWIS\Win10.iso
    =======
    I repeated the drag and drop process dozens of times with no result !!!!:(
     
  10. maargueb

    maargueb MDL Member

    Jun 9, 2019
    206
    27
    10
    Please, change the drag and drop method,
     
  11. shhnedo

    shhnedo MDL Expert

    Mar 20, 2011
    1,676
    2,225
    60
    Do you even read what you're being told?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. George King

    George King MDL Expert

    Aug 5, 2009
    1,858
    2,197
    60
    Yes, If you can't drag and drop into POWIS (probably cause by UAC or similar settings), then simply copy (CTRL+C) full path to ISO / extracted path and paste (CTRL+V / right click) it into POWIS. I already wrote solution here and here

    Or use run POWIS.cmd /? from CMD mentioned here

    upload_2021-7-26_9-56-51.png

    Just let me know what I missed and what is not clear. First post needs to be updated with new plugins folders usage, so I can include another informations if it's needed
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. George King

    George King MDL Expert

    Aug 5, 2009
    1,858
    2,197
    60
    Yes, you already liked solution here. So I hope it worked for you
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. maargueb

    maargueb MDL Member

    Jun 9, 2019
    206
    27
    10
  15. George King

    George King MDL Expert

    Aug 5, 2009
    1,858
    2,197
    60
    #78 George King, Jul 27, 2021
    Last edited: Jul 27, 2021
    (OP)
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. maargueb

    maargueb MDL Member

    Jun 9, 2019
    206
    27
    10
    Is it possible to add programs Repack to a file setup?
     
  17. George King

    George King MDL Expert

    Aug 5, 2009
    1,858
    2,197
    60
    Yes, RunOnceEx.cmd is designed to handle manual install or repacks too. If you place for example CCleaner-all.exe without CCleaner.txt. Then is setup executed, but you need to finish it manually unless it's a silent repack.

    Code:
        REM Auto-install %ARCH% depend software with predefined silent switch
        IF EXIST "%DRIVE%\setup\*-%ARCH%.exe" (
            REG ADD %ROE%\006 /ve /d %SILTEXT% /f
    
            FOR %%C IN ("%DRIVE%\setup\*-%ARCH%.exe") DO (
                REM Get Installer
                FOR /F "tokens=1 delims=-" %%G IN ("%%~nC") DO (
                    REM Get Switch
                    if exist "%DRIVE%\setup\%%G.txt" (
                        for /F "usebackq tokens=*" %%A in ("%DRIVE%\setup\%%G.txt") do (
                            REG ADD %ROE%\006 /v "%%~nC" /d "%%C %%A" /f
                        )
                    ) else (
                        REM Execute installer without specified switch - manual install or silent repacks
                        REG ADD %ROE%\006 /v "%%~nC" /d "%%C" /f
                    )
                )
            )
        )
    
        REM Auto-install %ARCH% independent software with predefined silent switch
        IF EXIST "%DRIVE%\setup\*-all.exe" (
            REG ADD %ROE%\006 /ve /d %SILTEXT% /f
    
            FOR %%C IN ("%DRIVE%\setup\*-all.exe") DO (
                REM Get Installer
                FOR /F "tokens=1 delims=-" %%G IN ("%%~nC") DO (
                    REM Get Switch
                    if exist "%DRIVE%\setup\%%G.txt" (
                        for /F "usebackq tokens=*" %%A in ("%DRIVE%\setup\%%G.txt") do (
                            REG ADD %ROE%\006 /v "%%~nC" /d "%%C %%A" /f
                        )
                    ) else (
                        REM Execute installer without specified switch - manual install or silent repacks
                        REG ADD %ROE%\006 /v "%%~nC" /d "%%C" /f
                    )
                )
            )
        )
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...