Search found 40 matches

by JFX
Sat Jan 02, 2016 8:45 pm
Forum: wimlib discussion
Topic: capture wim compatible with windows7 setup.exe
Replies: 32
Views: 56818

Re: capture wim compatible with windows7 setup.exe

Great, looks very good so far. Two things noticed. ARM64 architecture is not supported. #define IMAGE_FILE_MACHINE_ARM64 0xaa64 #define PROCESSOR_ARCHITECTURE_ARM64 12 Also Systemroot seams to be hardcoded to "Windows". WinPE and older Windows version can have custom names for the Windows ...
by JFX
Mon Dec 28, 2015 9:58 am
Forum: wimlib discussion
Topic: capture wim compatible with windows7 setup.exe
Replies: 32
Views: 56818

Re: capture wim compatible with windows7 setup.exe

Yes, all information are collected from kernel32.dll, system and software registry hive. Source code included now. Sorry my question was a unclear. I mean is there a way quick way to detect a file exists inside a given index of a wimfile. Something like wimgapis WIMCreateImageFile() or WIMFindFirstI...
by JFX
Mon Dec 21, 2015 12:46 pm
Forum: wimlib discussion
Topic: capture wim compatible with windows7 setup.exe
Replies: 32
Views: 56818

Re: capture wim compatible with windows7 setup.exe

Works nice now, adding multiple language information.

I made a console program that should detect all stuff and updates the wim.

http://1drv.ms/1Pg0sTG

BTW: What's the most efficient way to tell, if image file exist?
by JFX
Wed Dec 16, 2015 3:41 pm
Forum: wimlib discussion
Topic: capture wim compatible with windows7 setup.exe
Replies: 32
Views: 56818

Re: capture wim compatible with windows7 setup.exe

Maybe just creating a Windows program that extend the XML information later or when needed. It should be easy using the new wimlib_set_image_property() function. :D Just one problem, how to deal with multi language Images? I mean, howto set 2 or more languages, they seam to have the same node name: ...
by JFX
Fri Nov 13, 2015 9:03 am
Forum: wimlib discussion
Topic: Moving/Copying files between images.
Replies: 2
Views: 9125

Re: Moving/Copying files between images.

Ok, Thanks for quick answer.
by JFX
Thu Nov 12, 2015 10:53 am
Forum: wimlib discussion
Topic: Moving/Copying files between images.
Replies: 2
Views: 9125

Moving/Copying files between images.

Hi, I wonder if it's possible to move or copy a file from one image index to another without extracting and than recompressing that file. If that possible, could it be done between multiple wim files that have the same compression, too? Reason I'm asking this is the way we create our custom WinPE. F...
by JFX
Thu Nov 12, 2015 10:19 am
Forum: wimlib discussion
Topic: Compiling wimlib under Ubuntu
Replies: 4
Views: 22864

Re: Compiling wimlib under Ubuntu

I had same problem, solution was to run ldconfig.

sudo ldconfig -v
by JFX
Thu Sep 24, 2015 4:49 pm
Forum: wimlib discussion
Topic: Comparision of --compact compression formats
Replies: 14
Views: 51275

Re: Comparision of --compact compression formats

Hi synchronicity, here are 3 more exclusions. \Windows\Boot\DVD\* \Windows\Boot\EFI\* \Windows\bootstat.dat It seems they only need by Win8.x in compact mode. BTW: XPRESS4K will be okay on these files for a Win10 compact setup, but not for Win7/8.x. Maybe you can apply these files without compressio...
by JFX
Thu Sep 24, 2015 4:36 pm
Forum: wimlib discussion
Topic: Windows 10 --compact deployment of Windows 8.1
Replies: 7
Views: 18340

Re: Windows 10 --compact deployment of Windows 8.1

@supercilious

Have you correctly added wofadk.sys to the new Windows 8 system?

Also for Win8 you may need to also add these 3 exclusions.

Code: Select all

\Windows\Boot\DVD\*
\Windows\Boot\EFI\*
\Windows\bootstat.dat
by JFX
Tue Aug 18, 2015 4:03 pm
Forum: wimlib discussion
Topic: wofadk.sys Support?
Replies: 6
Views: 22443

Re: wofadk.sys Support?

Hi,

the problem is a missing privilege.

Wimgapi request following privileges before it start applying a WIM file.

SeSecurityPrivilege
SeTakeOwnershipPrivilege
SeBackupPrivilege
SeRestorePrivilege
SeManageVolumePrivilege

At least the last one is missing in wimlib apply.