Jump to content

JFX

Member
  • Posts

    1,224
  • Joined

  • Days Won

    6
  • Donations

    0.00 USD 

Everything posted by JFX

  1. Using a unattend.xml, you can launch programs, just before desktop icons and taskbar appears. WinNTSetup's tweaks are limited, but FirstLogonCommands do run with admin rights, so you can do any customization in these scripts.
  2. No problem here, just adding a SynchronousCommand to Win7-11-Select.xml. <?xml version="1.0" encoding="utf-8"?> <!-- [WinNTSetup] process=1 ;process 1 - asks for user input and replaces all 4 %variables% ;process 2 - don't ask and only replaces %WinNTSetup-Arch% ;WinNTSetup-Arch ;WinNTSetup-User ;WinNTSetup-PC ;WinNTSetup-Group --> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="specialize"> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="%WinNTSetup-Arch%" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ComputerName>%WinNTSetup-PC%</ComputerName> </component> <component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="%WinNTSetup-Arch%" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Identification> <JoinWorkgroup>%WinNTSetup-Group%</JoinWorkgroup> </Identification> </component> </settings> <settings pass="oobeSystem"> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="%WinNTSetup-Arch%" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="NonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Name>%WinNTSetup-User%</Name> <Group>Administrators</Group> <Password> <PlainText>true</PlainText> <Value /> </Password> </LocalAccount> </LocalAccounts> <AdministratorPassword> <Value /> </AdministratorPassword> </UserAccounts> <AutoLogon> <Password> <Value /> </Password> <Enabled>true</Enabled> <LogonCount>1</LogonCount> <Username>%WinNTSetup-User%</Username> </AutoLogon> <OOBE> <NetworkLocation>Home</NetworkLocation> <HideEULAPage>true</HideEULAPage> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> <SkipMachineOOBE>true</SkipMachineOOBE> <SkipUserOOBE>true</SkipUserOOBE> </OOBE> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <CommandLine>net accounts /maxpwage:unlimited</CommandLine> <Order>1</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>C:\Windows\Setup\Scripts\FirstLogon.cmd</CommandLine> <Order>2</Order> </SynchronousCommand> </FirstLogonCommands> </component> </settings> </unattend> If I see this right, FirstLogonCommands are actually converted to RunOnce registry values. So there is no logging, if something goes wrong. They are only mentioned in \Windows\Panther\UnattendGC\setupact.log: 2023-05-18 15:23:26, Info [Shell Unattend] LogonCommands: Set command 'net accounts /maxpwage:unlimited' 2023-05-18 15:23:26, Info [Shell Unattend] LogonCommands: Set command 'C:\Windows\Setup\Scripts\FirstLogon.cmd'
  3. New wimlib has a (more) optimized SHA-1 hashing. During a wimcapture operation all files are being hashed, thus hashing speed makes difference. Even more if you are appending a WIM, were only new files are being compressed. However, you need a recent CPU to notice any difference.
  4. Re-uploaded with wimlib v1.14.1.
  5. WinNTSetup 5.3.1 - updated wimlib to version 1.14.1 (faster wim capture) - fixed GUI capture may ignores WimScript.ini - fixed wimlib LZMS capture did not used solid compression - fixed auto format option should disable free space warning - fixed wincopy/wimcapture could not be canceled during VSS creation - fixed Win7-11-Select.xml required all fields to be set - added some support for MinWin with ARM64 sources - added commandline switch: -NoTweaks - much faster wincopy (wimlib mode) - changed wimboot/compact mode don't use exclusion for GPT formated disk
  6. Firefox download windows, show the same problem as growing titlebars here. A sudden jump of NONCLIENTMETRICS caption font from -12 to -16. Programs that draw their own title like VMware Workstation will be the first that show big titles. At some point DWM picks this up and all titlebars will be drawn with big fonts. Don't know if it's related to SAB, but I'm seeing this since October 2021, so it has nothing to do with a specific version.
  7. With version 3.6.3.4670 Start_ShowNetConn no longer fits in any style:
  8. I added some log lines for WinNTSetup.log: https://mega.nz/file/KWgX2JKS#liM5r1_ONwfMdUu7Od2xx3rkcDNiRgDUeiufXW2nbMg
  9. Yes, it should work that way. NT6Only.txt is only there to hide in for XP installs. A log file is created \Windows\Logs\WinNTSetup\%Date%\WinNTSetup_RegImport.log. Maybe there is a parsing error. @Sonic Wimscript folder was moved to out of Tools, but there is also another bug with it.
  10. Somehow you overused my mind reading capability, it's not working anymore. Please ask questions in a way that someone else than you can understand them.
  11. If you want classic drive grouping, try this:DriveTypeCategorizer.zip
  12. Maybe, you disabled notifications system wide than SIB/SAB updater does not do anything.
  13. No, svbus only interprets a loaded image (from grub4dos or grub4efi) as physical disk.
  14. It does not support upgrade or repair installation. You actually overwrite an existing Installation.
  15. "VSS ERROR: 80042302" yeah the '0x' is missing. There might be a better message, thought.
  16. @Antonino Online capture uses VSS, properly you broke that or optimized it away. Anyways there should be an error message.
  17. No idea what your are trying to ask with the first question. As for ESD apply yeah I have seen a few crashes and dead locks while applying a wimlib captured image with wimgapi or dism. So switch to wimlib (Ctrl + Shift + W) and apply this ESD.
  18. @Antonino Only The Windows11.txt got a new line for windows dev explorer.
  19. WinNTSetup 5.3 - compiler updated to PureBasic 6.00 C-Backend - updated wimlib to version 1.13.6 - right-click on apply mode combo opens Tools\Compact\WimBootCompress.ini - fixed errors with native 4K drives - fixed VSS error not displayed - fixed Bootice Mod always starts in darkmode - fixed capture problem with OneDrive On-Demand files - fixed error message on FormatEx failures - fixed inaccessible devices were listed in drive combo boxes - fixed offline windows scan may not detect Windows 10/11 builds correctly - fixed internal VHD boot files option may create duplicate BCD entries - fixed auto format may not work if drive is in use - fixed loading ISO with relative path may create duplicates in source combo box - added commandline switch for VHD-CREATE -uuid:{UUID} (simular to VBoxManage internalcommands sethduuid) - added WinCopy option (copy Windows from one partition to another) - added WinCopy and WinCopy-CLI command line - added ReFS support for Windows 11 23H2 - added combobox script selection to diskpart window - added -diskpart command line switch to bring up diskpart window - added WIM_MSG_ERROR and WIMLIB_PROGRESS_MSG_HANDLE_ERROR Messagebox choice - added Remove OneDrive tweak - added DISM feature enable/disable and APPX removal - added possability to disable SFX detection with file: "nosfx" next to WinNTSetup_x64.exe - new right-click on tweaks button to quickly disable all tweaks - changed wimlib is the default compression engine - changed Unattend: Win7-11-Select.xml disables 42 days password expire - changed rearrage folder layout - MinWin: support inline comments (//) - MinWin: grant full admin access to files - MinWin: fixed VCRuntime 2008 installer needs sxsstore.dll and config\TxR - MinWin: fixed diskpart shrink needs defragproxy.dll - RegImport: added support for [?HKEY_LOCAL_MACHINE\...] (only processed if key exists) - workaround windows 7 Dism /add-driver bug 30 (AMD, NVIDIA drivers with LZSS compression) - workaround EFI NTFS driver bug
  20. For BIOS booting you need to have a active primary partition. You can do this in windows diskmanager.
  21. It's ready when it's ready. If there are no further problems it will be final on Wednesday.
  22. On build 2262?, Clear type has be vanish between preview and 3.6 Final, for tabbar and OK, Cancle, buttons.
  23. There are no other features, it's mainly a bug fix version.
  24. Beta 8 adds ReFS support for Windows 11 Dev builds. ReFS version should be displayed (you need at least the current version 3.9). Format dialog will show this option regardless of the Windows edition, no need for Enterprise or Professional Workstation.
  25. No, all files that are fully stored on local disk are still being captured. Only files with attribute FILE_ATTRIBUTE_RECALL_ON_DATA_ACCESS are skipped. It's not possible to capture them. These files will be loaded from cloud storage during first read access. For online VSS capture this wouldn't work because the snapshot is read-only and for offline capture the cloud provider is not running to transfer the data.
×
×
  • Create New...