Search found 474 matches

by synchronicity
Thu Dec 31, 2015 3:47 pm
Forum: wimlib discussion
Topic: image-property
Replies: 1
Views: 5483

Re: image-property

Yes, the property names are the XML element names. 'wiminfo' will format the information differently, but that's just to make it easier to read.
by synchronicity
Thu Dec 31, 2015 3:45 pm
Forum: wimlib discussion
Topic: capture wim compatible with windows7 setup.exe
Replies: 32
Views: 58581

Re: capture wim compatible with windows7 setup.exe

Currently, the best way to check for a file's existence is to use wimlib_iterate_dir_tree(). Pass in the image index, the path to the file, 0 for the flags, and a no-op callback. If it returns 0, then the file exists; if it returns WIMLIB_ERR_PATH_DOES_NOT_EXIST, then the file doesn't exist.
by synchronicity
Thu Dec 31, 2015 3:35 pm
Forum: wimlib discussion
Topic: checksum collision and incremental backups
Replies: 7
Views: 14013

Re: checksum collision and incremental backups

1) As some new file systems on linux had problems with automatic deduplication due to collision in checksums, I would like to know how far wimlib was tested? Did you or someone you know used it to create incremental backups of huge server file-systems? Or is there some theoretical proof that the sh...
by synchronicity
Mon Dec 21, 2015 4:43 pm
Forum: wimlib discussion
Topic: capture wim compatible with windows7 setup.exe
Replies: 32
Views: 58581

Re: capture wim compatible with windows7 setup.exe

@JFX Great to hear that you were able to build a working program! Does it obtain all its information from the registry, or are there other sources of information as well? With regards to your question: If you are referring to determining whether a file is, in fact, a WIM file, wimlib doesn't provide...
by synchronicity
Sat Dec 19, 2015 11:36 pm
Forum: wimlib discussion
Topic: capture wim compatible with windows7 setup.exe
Replies: 32
Views: 58581

Re: capture wim compatible with windows7 setup.exe

Hi, In wimlib v1.8.4-BETA1 (just posted) I have extended the ability to set information in the WIM file's XML document. There are two changes: 1.) The wimlib_{get,set}_image_property() API functions were updated to allow the use of bracketed indices such as "WINDOWS/LANGUAGES/LANGUAGE[2]"....
by synchronicity
Thu Dec 17, 2015 1:30 am
Forum: wimlib discussion
Topic: capture wim compatible with windows7 setup.exe
Replies: 32
Views: 58581

Re: capture wim compatible with windows7 setup.exe

Hi, Those are all good ideas. But I think the most user friendly way would be to have the info set automatically when you create a WIM image, like what WIMGAPI does. I'll look into it more when I have time. wimlib_set_image_property() and wimlib_get_image_property() don't yet support multiple same-n...
by synchronicity
Sat Dec 12, 2015 12:47 am
Forum: wimlib discussion
Topic: Write some information in the header of wim file
Replies: 1
Views: 7421

Re: Write some information in the header of wim file

You could put custom information in the WIM file's XML document, either in the "image description" elements or in your own custom elements. The latest version of wimlib allows library users to set/get any information from the XML document they want. But the XML document is not in the file ...
by synchronicity
Sun Nov 29, 2015 7:40 pm
Forum: wimlib discussion
Topic: wim image incompatible with WDS. Lack of information in XML.
Replies: 2
Views: 7123

Re: wim image incompatible with WDS. Lack of information in XML.

Hi,

This is a known limitation; wimlib does not yet fill in Windows-specific information in the XML document.

You may, however, may use of the --flags argument to 'wimcapture' to set a value in the <FLAGS> element, which (I think) is all that WDS looks for.

- synchronicity
by synchronicity
Sun Nov 29, 2015 6:28 am
Forum: wimlib discussion
Topic: Just some questions.
Replies: 1
Views: 7788

Re: Just some questions.

1.) You're welcome to try it, but I doubt that Microsoft's software supports it.
2.) Currently, I don't have any plans to add support for LZMA compression.
3.) I do not plan to add mount support for Windows. There is already mount support for Linux, however.