Jump to content

JFX

Member
  • Posts

    1,230
  • Joined

  • Days Won

    6
  • Donations

    0.00 USD 

Everything posted by JFX

  1. 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
  2. Problem was introduced with support for relative paths. I had not thought that PathIsRelativeW API returns true for an empty string. So now for some Combo boxes, selection is interpreted as the WinNTSetup directory even is there is no selection.
  3. Yeah, there are still problems in some places with the empty combobox. Guess I really have to go through all the 100k+ lines of source code to get them all
  4. @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.
  5. @bphlpt, yeah took me over a hour to successfully upload 1.4 MB 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
  6. @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
  7. @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 )
  8. Click the Win icon in the right top corner and than "Create Language File"
  9. WinNTSetup 5.0.2 - added command line -fat32:n - drivers and regtweak combo display relative paths - offline windows detection correctly identifys Windows 11
  10. Should be possible, if you add these lines to WinNTSetup.ini: [WinNT6] sourcedir=.\ driverdir=.\ unattenddir=.\ regtweaksdir=.\ oemdir=.\ rundir=.\
  11. I uploaded WinNTSetup_v501a.rar. This should fix it, just wonder that I have not seen this one the 200dpi screen.
  12. Yes, it only runs on 64-bit operation systems. 32-bit version was dropped after 4.25. Old version is still available for download.
  13. WinNTSetup 5.0.1 - Win11: disabled buggy Mica effect - Win11: use new font only, if system font is Segoe UI - fixed scaling with higer system fonts - fixed combobox flyout high for high dpi systems - fixed wrong log line - ini load/save dialogs remember last selection
  14. Win7-11-Select.xml (a simple option for fully unattend installs) is only applied if you choose it. With WinNTSetup there are not complaints about hardware restrictions, but it does not mean it will work.
  15. Use adksetup.exe and only select want you want.
  16. Nope, this app has been discontinued. Version 21.04 is the very last one.
  17. Glad you make it. Indeed, the update of the boot configuration often causes that error message. I have never found out what's exactly the problem is. Even with the same BCD file, it does not always happen.
  18. @sharicov@gmail.comtry try normal windows setup instead. @Sonic Yes, Ctrl+S works for this option, too.
  19. WinNTSetup 5.0 Final is out. - mounting boot partition is disabled by default - combobox list to select boot and installation drive - MRU feature for most inputs - mounted ISO in VHD menu will stay alive - mounted ISO sources will be save with ISO names to ini - regimport supports HKEY_CURRENT_USER\Software\Classes (UsrClass.dat) - regimport will effect all existing user profiles - separate disable Windows Defender tweak (-nodefender command line) - fixed WinRE could not display PNG compressed icons - new gui font on Windows 11 - uses Mica on Windows 11 - ini option nodownload added - command line source accepts wildcard - new dikspart GUI with selectable disk and warn dialog
  20. 1) It saved the window position and MRU outside the SFX, so it won't be lost. You could make it unaware of the SFX, by removing the environment variable with CMD: set 7zSfxFolder36= Or change "SfxFolder" Unicode string in the SFX.exe 2) That would make the start very slow, but I will think about it
  21. Thanks for the translation. While you're at it, Final version will have 2 more: 1439, "Restore Classic Menus" 1440, "Always show the full context menus"
  22. Don't know about add any more tweaks. The development of Windows requires more and more tweaks to get it usable. So I tend to always collect tweaks in folder and select it in regtweaks combo box. Than we have the problem of the name, I mean 3 years ago I wrote a shell extension called ClassicContextMenus, to fixed the blurry menus in Windows Explorer.
  23. Oh, that function did still expect a drive letter, fixed and reuploaded.
  24. WinNTSetup 5.0 Beta 4 - fixed various bug on Windows 7 Host - fixed WinRE could not display PNG compressed icons - fixed MessageBox font on Windows 11 - fixed tweaks incorrectly loaded from ini - lighter disk access during disk scanning
  25. 1 - will be fixed 2 - you can use UP DOWN to select an entry in the list or press A - Z to select a drive letter directly 3 - progressbar should only be yellow while canceling a progress with the cancel button. Maybe it does not get reset sometimes. 4 - Hmm, have not seen that, but I have an idea ...
×
×
  • Create New...