Jump to content

JFX

Member
  • Posts

    1,271
  • Joined

  • Last visited

  • Days Won

    6
  • Donations

    0.00 USD 

Posts posted by JFX

  1. WinNTSetup 5.2.0

    - fixed capture-cli did not reset console title
    - fixed console tools stdout could not be redirected
    - fixed disk name could show trailing spaces
    - fixed %errorlevel% not set in some cases
    - fixed apply error and silent command line option did not exist WinNTSetup
    - fixed free drive letter scan with buggy VMware mountpoints
    - changed local windows listview uses VHD/VHDX icon
    - changed WimBoot or CompactOS apply now uses wimlib as default
    - changed Win7-11-Select.xml will be igored if not all fields are filled
    - added SecureBoot detection on Windows 7 Host
    - added MinWin Mode (click on Mode)
    - added ini option DriveComboExclude simular to BootMountExclude
    - improved add other OS function

  2. The "Find and add Windows version already installed" option will scan all partition for Windows installations.
    It does ignore not currently mounted VHD files.

    However the "BCD: UEFI combo box" should create a boot entry for the currently for installation selected windows.
    There is a WinNTSetup.log create inside the \Windows folder for the new installation.
    It should have logged the BCDBoot.exe command used to create the boot entry.

    For the "Unattended option" there is sadly no known way to validate it before setup.
    The file you select is copied to \Windows\Panther\unattend.xml.
    There should be a \Windows\Panther\Unattend*\setuperr.log if this error has occurred.
    It should give a hint whats wrong with your unattend.xml.

  3. Did you changed something with bootice?
    I mean in explorer there is lower case file extension .vhd and inside bootice there is uppercase .VHD.

    Bootice has some bugs with BCD editing, which could cause exactly this problem.
    Does "bcdedit -enum" resolves device and osdevice correctly?

  4. Just shrink your C drive by 100 MB to 1 GB and create a FAT32 partiton from the new free space.
    Ideally, but not necessary use diskpart's set id with c12a7328-f81f-11d2-ba4b-00a0c93ec93b to mark this partition a ESP.

    Select this one as boot drive in WinNTSetup and install your Win7.
    After you successfully booted Winows 7 to desktop you can select the same boot drive
    but another partition and install your Win10.

  5. Yeah, the problem is you did not change the system mount point, it's still points to the old drive.
    WinNTSetup always set HKLM\SYSTEM\MountedDevices, \DosDevices\C: to avoid this trouble.

    You could load offline registry and set this value with the binary data from your current system.

    Or just use WinNTSetup without selecting a installation source.

  6. WinNTSetup 5.1.0

    - fixed global disabling of combobox animation
    - fixed vertical alignment of edit controls
    - fixed now using rounded button in Win11 Darkmode
    - fixed vhd-create commandline option only accepts - not /
    - fixed combo could add empty strings and accepts them as valid input
    - removed subframe from Darkmode Messagebox in Win11
    - added format option to ini and GUI (right click on F button)
    - added /help command line option
    - added option 'VHD creation, FAT32 Part' boot file creation
    - added option 'VHD creation, FAT32 Part' select as boot drive
    - added option 'VHD creation, FAT32 Part' assign drive letter
    - updated BootICE Darkmode

  7. @ilkertezcan
    One and Two will be added to next version.

    For Three, don't know if there is a need for drive letter on the VHD internal boot partition.
    WinNTSetup always create boot files on this partition.

    This is to make sure the VHD is boot able if you attach it to a virtual machine.
    If you don't want to physical boot this VHD on real hardware,
    just select any partition as boot drive and set BCD to NONE.

    As for the command line that will be fixed.

    FOUR: I'll think about it, but after 5.1 release I have no new features in mind.

  8. @bphlpt, yeah took me over a hour to successfully upload 1.4 MB :ph34r:

     

    I'll update Tools\Win10Builds.ini with following content in next version, unless someone has an improvement:

    [Builds]
    ;Threshold 1
    10240= v1507
    ;Threshold 2
    10586= v1511
    ;ReadStone 1
    14393= v1607
    ;ReadStone 2
    15063= v1703
    ;ReadStone 3
    16299= v1709
    ;ReadStone 4
    17134= v1803
    ;ReadStone 5
    17763= v1809
    18362= v19H1
    18363= v19H2
    ;Vibranium - 19041 - 19044 only works it capture with wimlib or WinNTSetup
    19041= v20H1
    19042= v20H2
    19043= v21H1
    19044= v21H2
    ;Server / Enterprise 2022
    20348= v21H2
    ;Win11 - Sun Valley
    22000= v21H2
    22400= Dev
    
    [Exclude]
    ;Don't add if name already contains ...
    10240= 1507
    10586= 1511
    14393= 1607
    15063= 1703
    16299= 1709
    17134= 1803
    17763= 1809
    18362= 1903|19H1
    18363= 1909|19H2
    19041= 20H1|2004
    19042= 20H2|2009
    19043= 21H1|2104
    19044= 21H2|2109
    20348= 21H2|2109
    22000= 21H2|2109
    22400= 2209|22H2

     

  9. @alacran Thanks for reporting.

    About ESD and WinPE problems I need more information. He can post on reboot I'll watch this topic.

     

    WinNTSetup 5.0.3

    - run ScanFiles.cmd if exist
    - Mica titlebar is default again on Win11 Dark Mode
    - fixed right-click on unattend label not open editor
    - fixed iso source mru selection problems
    - fixed wimboot:wimcopy exitcode not set

  10. @SuperKolobok

    I hope i have now fixed all relative paths. WinNTSetup_v5021 will run a ScanFiles.cmd if exists.

    You could use something like the following to recreate WinNTSetup_mru.txt before it will be loaded:

    @echo off
    title Scan for files ...
    pushd %~dp0
    
    >WinNTSetup_mru.txt echo [Source_NT6]
    for /f %%c in ('dir /b Sources\*.wim Sources\*.swm Sources\*.esd Sources\*.iso') do (
     >>WinNTSetup_mru.txt echo Sources\%%c
    )
    
    >>WinNTSetup_mru.txt echo [Drivers_NT6]
    for /f %%c in ('dir /b /ad Drivers') do (
     >>WinNTSetup_mru.txt echo Drivers\%%c
    )
    
    >>WinNTSetup_mru.txt echo [RegTweaks_NT6]
    for /f %%c in ('dir /b /ad Tweaks') do (
     >>WinNTSetup_mru.txt echo Tweaks\%%c
    )

     

×
×
  • Create New...