Search found 40 matches

by JFX
Wed Mar 01, 2023 5:06 pm
Forum: wimlib discussion
Topic: ARM64 Support
Replies: 38
Views: 57668

Re: ARM64 Support

@zipmagic
could you share some details about your creation of ARM64 wimib-imagex.exe?
I mean thanks to joveler we have a simple way of creating libwim-15.dll from the current version.
All that's left is a non static linked version of wimib-imagex.exe.
by JFX
Thu Jan 19, 2023 2:14 pm
Forum: wimlib discussion
Topic: using wimlib apply wim file cannot boot
Replies: 14
Views: 11090

Re: using wimlib apply wim file cannot boot

\DosDevices\C: tells Windows which partition should be mounted as C: If you apply your OS to a different partition, it will still point to the old one. So after apply do load offline registry and swap the mountpoints reg load D:\Windows\System32\config\system HKLM\sys and with Regedit.exe change HKL...
by JFX
Wed Jan 18, 2023 8:55 pm
Forum: wimlib discussion
Topic: using wimlib apply wim file cannot boot
Replies: 14
Views: 11090

Re: using wimlib apply wim file cannot boot

Yes, DISM++ does update the MountedDevices key in the applied Os.
by JFX
Wed Jan 18, 2023 5:40 pm
Forum: wimlib discussion
Topic: using wimlib apply wim file cannot boot
Replies: 14
Views: 11090

Re: using wimlib apply wim file cannot boot

If you apply windows to a different partition, you need to change registry accordingly.

HKEY_LOCAL_MACHINE\SYSTEM\MountedDevices, \DosDevices\C:
by JFX
Thu Dec 30, 2021 2:05 pm
Forum: wimlib discussion
Topic: Wimlib_iterate_dir_tree without hashing
Replies: 2
Views: 4115

Wimlib_iterate_dir_tree without hashing

Wimlib_iterate_dir_tree() does calculate the SHA-1 for all files the are not yet written to the WIM file.
This is very slow, in case I only want to know if some files or folders exists inside an modified image.

Could you add a flag to skip hashing files?
by JFX
Mon Nov 22, 2021 4:25 pm
Forum: wimlib discussion
Topic: Bug report: Specifying a drive letter with no slash ("C:" rather than "C:\") doesn't scan correctly
Replies: 1
Views: 4204

Re: Bug report: Specifying a drive letter with no slash ("C:" rather than "C:\") doesn't scan correctly

That is normal Windows behavior. For the root folder you always need ?:\.
C: means the current working directory of the drive.
by JFX
Sat Dec 02, 2017 2:44 pm
Forum: wimlib discussion
Topic: EA and CAB support?
Replies: 5
Views: 12052

Re: EA and CAB support?

Thanks,

using wimlib_add_image() is working perfectly here. :D
by JFX
Thu Nov 30, 2017 7:07 pm
Forum: wimlib discussion
Topic: EA and CAB support?
Replies: 5
Views: 12052

Re: EA and CAB support?

Thanks, sounds good.
If cab support it to much work, I think it would be enough if wimlib_reference_resource_files()
could use a already extracted cab content.
by JFX
Fri Nov 17, 2017 12:50 pm
Forum: wimlib discussion
Topic: Windows 10 --compact deployment of Windows 8.1
Replies: 7
Views: 18455

Re: Windows 10 --compact deployment of Windows 8.1

Hi Vallo, You need to put wofADK.sys (version 10.0,14393,0) into \Windows\system32\drivers\. And add following registry keys: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\System\ControlSet001\services\WofAdk] "DebugFlags"=dword:00000000 "DependOnService"=hex(7):46,00,...
by JFX
Mon Nov 13, 2017 7:51 pm
Forum: wimlib discussion
Topic: EA and CAB support?
Replies: 5
Views: 12052

EA and CAB support?

Hi, it seems Microsoft has finally added support for Extended file attributes , properly in favor of the linux subsystem. And they also added support for cabinet files (or their extracted folders) as reference file. These *.cab files have a $filehashes$.dat inside their root that wimgapi seem to use...