ExifTool Forum

ExifTool => The "exiftool" Application => Topic started by: stoffball on July 12, 2024, 11:11:00 AM

Title: ExifTool 12.88 Windows package
Post by: stoffball on July 12, 2024, 11:11:00 AM
Hi Phil,

I integrate exiftool.exe in a Windows installer of Hugin panorama stitcher.

Until now it were a 2 liner in CMake (Hugins build system) to put exiftool.exe into the installer:
  FIND_PATH(EXIFTOOL_EXE_DIR exiftool.exe ...
  INSTALL(FILES ${EXIFTOOL_EXE_DIR}/exiftool.exe DESTINATION ${BINDIR})

With the new Windows packages starting with 12.88 this becomes troublesome.
Now I have the parse the whole exiftool_files folder structure and recreate it in the installer.
The brute force method would be to get a recursive list of all files, then make the filename relative to the base folder and create for each file a separate INSTALL(FILES ... command. This will result in nearly 500 additional separate INSTALL commands. (The Hugin installer has currently about 250 files.)
Not sure how efficient this is? I will try it in the next days.

But before starting to code I have some questions:
Will this structure be fixed in further versions? Or can it change?
Currently the folder structure has up to 6! level. Is such a deep nested structure necessary?

I'm also open if there is a CMake expert which can propose a simple and efficient way to do with the changed installer.

I can understand that the new structure can solve some problems with the old structure. But for redistribution of exiftool.exe I find the new package not so nice.
Title: Re: ExifTool 12.88 Windows package
Post by: Phil Harvey on July 12, 2024, 03:02:13 PM
Quote from: stoffball on July 12, 2024, 11:11:00 AMWill this structure be fixed in further versions? Or can it change?

The structure shouldn't change unless we find a significant problem, but this is unlikely because this structure has withstood 3 years of testing already.

QuoteCurrently the folder structure has up to 6! level. Is such a deep nested structure necessary?

We could have done this with 1 less level, but I don't want to change it now.

QuoteI'm also open if there is a CMake expert which can propose a simple and efficient way to do with the changed installer.

I can understand that the new structure can solve some problems with the old structure. But for redistribution of exiftool.exe I find the new package not so nice.

Why can't you just expand the .zip file in the target folder?

- Phil
Title: Re: ExifTool 12.88 Windows package
Post by: soundbyte on July 12, 2024, 07:51:09 PM
I found a solution that works for me with Windows 10 applications that only use local copies of exiftool.exe. YMMV.

Extract the files from the new version zip file into c:\windows as suggested.

Use Windows Explorer to select c:\windows, find exiftool.exe and create a shortcut for exiftool.exe.

Once you have that shortcut, copy the shortcut into the application location/s that only use local copies of exiftool.exe.
This allows applications that use the standalone old version/s to find the new version.
Title: Re: ExifTool 12.88 Windows package
Post by: stoffball on July 13, 2024, 02:13:14 AM
Quote from: Phil Harvey on July 12, 2024, 03:02:13 PMWhy can't you just expand the .zip file in the target folder?

We are using a MSI installer package. This is already a zipped package. It is probably not possible to additionally insert an "extract the extracted file" step (and then rename exiftool(-k).exe to exiftool.exe) into the installer.
Title: Re: ExifTool 12.88 Windows package
Post by: FrankB on July 13, 2024, 04:45:26 AM
Quote from: soundbyte on July 12, 2024, 07:51:09 PMExtract the files from the new version zip file into c:\windows as suggested.

I know that suggestion has been made often. But I strongly advise to use a different folder and add that folder to your PATH. MS makes it harder with every Windows version to use C:\Windows for your own purposes.
Title: Re: ExifTool 12.88 Windows package
Post by: FrankB on July 13, 2024, 04:52:30 AM
Quote from: stoffball on July 13, 2024, 02:13:14 AMWe are using a MSI installer package. This is already a zipped package. It is probably not possible to additionally insert an "extract the extracted file" step (and then rename exiftool(-k).exe to exiftool.exe) into the installer.

Without any knowledge from your MSI installer it's hard to tell. But here are a 2 suggestions (no solutions!).
- Create a self extractor, with WinRar for example, and call that self extractor from within your MSI installer.
- Have a look at the installer for ExifToolGui. It downloads and unzips the ExifTool package and installs it as a subdirectory in the GUI program folder.
Installer created with Inno Setup, source is here:
https://github.com/FrankBijnen/ExifToolGui/blob/main/Redist/ExifToolGUI_install.iss (https://github.com/FrankBijnen/ExifToolGui/blob/main/Redist/ExifToolGUI_install.iss)
Title: Re: ExifTool 12.88 Windows package
Post by: Viktor Nemeth on July 13, 2024, 11:59:40 AM
Hi Phil,

I didn't quite want to open a separate thread for this but are we allowed to build and distribute exiftool ourselves?
I am totally noob to perl but managed to take the source code and compile it into a single-exe Windows file (like it used to be). Is it okay (mostly in terms of licence agreement) to distribute this within my own app (indicating that this was build in such as way etc.) - basically the new structure doesn't work for me much either but if there's a way around it like so that'd make life a fair bit easier.
Title: Re: ExifTool 12.88 Windows package
Post by: Phil Harvey on July 13, 2024, 02:47:12 PM
How did you generate the single-exe?  I'm open to new ideas.  The old PAR-packaged version had some problems.

But yes, you are allowed to distribute ExifTool yourself as long as you don't charge for it.

- Phil
Title: Re: ExifTool 12.88 Windows package
Post by: FixEUser on July 13, 2024, 03:30:58 PM
Quote from: Viktor Nemeth on July 13, 2024, 11:59:40 AMI am totally noob to perl but managed to take the source code and compile it into a single-exe Windows file (like it used to be)

Would you mind to share this single-exe file?
Could you provide a DL link for it?

Or if it is more convenient for you:
Can you tell us what steps are required to compile such a single exe file by ourself?
Title: Re: ExifTool 12.88 Windows package
Post by: StarGeek on July 13, 2024, 03:37:33 PM
Quote from: FixEUser on July 13, 2024, 03:30:58 PMCan you tell us what steps are required to compile such a single exe file by ourself?

There's some discussion on the subject here (https://exiftool.org/forum/index.php?msg=84500) with links to previous posts. There are probably more. Search the forums for "PAR Packer"
Title: Re: ExifTool 12.88 Windows package
Post by: Viktor Nemeth on July 13, 2024, 04:59:20 PM
Quote from: FixEUser on July 13, 2024, 03:30:58 PMOr if it is more convenient for you:
Can you tell us what steps are required to compile such a single exe file by ourself?

- Get Perl for Windows (eg Strawberry Perl, I used that one)
- run the below in cmd
- cpanm PAR::Packer
- cpanm https://github.com/exiftool/exiftool.git --force
- pp -o d:\temp\exiftool.exe d:\StrawberryPerl\perl\site\bin\exiftool
(replace relevant bits in the last one as...relavant...)

Though Phil might suggest better ways as I didn't do any config and haven't fully tested beyond the fact that it launches.
Title: Re: ExifTool 12.88 Windows package
Post by: Phil Harvey on July 13, 2024, 06:36:36 PM
Thanks.  It was the PAR packer we are trying to avoid.

- Phil
Title: Re: ExifTool 12.88 Windows package
Post by: soundbyte on July 14, 2024, 01:17:15 AM
Quote from: FrankB on July 13, 2024, 04:45:26 AM
Quote from: soundbyte on July 12, 2024, 07:51:09 PMExtract the files from the new version zip file into c:\windows as suggested.

I know that suggestion has been made often. But I strongly advise to use a different folder and add that folder to your PATH. MS makes it harder with every Windows version to use C:\Windows for your own purposes.

Agreed not a really good idea but I used what is mentioned in the installation instructions https://exiftool.org/install.html "Windows" Point 5.
I had some problems getting the 2 latest versions working for me so I posted one solution.

Zip install (118 sub-directories and 498 files ~33,611,776 bytes) works and standalone applications can find exiftool.exe if the shortcut is copied as I mentioned.
The installer version (Everyone Settings - 1453 files in 125 sub-directories ~49,393,664 bytes) for me failed, it did not change the PATH environment variable when asked to do so, no application could find exiftool.exe.
Manually changing the PATH environment variable works.
Title: Re: ExifTool 12.88 Windows package
Post by: obetz on July 15, 2024, 01:37:51 AM
Quote from: soundbyte on July 14, 2024, 01:17:15 AMThe installer version (Everyone Settings - 1453 files in 125 sub-directories ~49,393,664 bytes) for me failed, it did not change the PATH environment variable when asked to do so, no application could find exiftool.exe.
Manually changing the PATH environment variable works.
Sorry about the size - I'll investigate why the installer copies all files regardless the selection.

Regarding the path variable: Are you aware that only command windows started after the installation get the updated path? The environment in running CMD sessions is not changed.
Title: Re: ExifTool 12.88 Windows package
Post by: obetz on July 15, 2024, 03:21:31 AM
Installer fixed now. In an earlier change, I didn't set the matching exclude rules. Now the default installation is approx. 540 files.

I also checked the path setting and found no problem. It works only for cmd windows opened after the installation, though.
Title: Re: ExifTool 12.88 Windows package
Post by: soundbyte on July 15, 2024, 08:32:50 PM
obetz Thanks for the update.

After doing a bit of checking this morning I can see there are now differences with the Windows 64bit zip distributions of the exiftool application.
The Windows 64bit version on the https://exiftool.org/ site (10,596,352 bytes) is different to the one on https://oliverbetz.de/pages/Artikel/ExifTool-for-Windows#toc-3 (12,718,080 bytes).

64bit zip install from exiftool.org site is now 119 directories and 498 files (32,590,019bytes) larger than previously.
64bit zip install from the OB site is now 125 directories and 1449 files (43,517,914bytes) larger than previously.
Some more work to synchronize these files with the same names?

I am pretty sure there may well be people now having issues installing the Windows version as a lot will not necessarily know what the "PATH" is and how to find which locations are part of that Environment variable.
Glad that C:\Windows (https://exiftool.org/install.html "Windows" Point 5.) was removed but difficult to make a default install location suggestion as there can no reliable knowledge of the "PATH" Environment variable on the Windows installation on the local computer that is suitable.
I know that using something like this shortcut way "Windows key+R" - "CMD" - "PATH" could/would confuse as well.

Did not do a check of the installation version.

Thanks for your efforts.
Title: Re: ExifTool 12.88 Windows package
Post by: Phil Harvey on July 15, 2024, 08:54:16 PM
The version of the package available from the ExifTool home page does not contain the documentation and some other unnecessary files, but both versions should behave exactly the same.  If not, please say so.

- Phil
Title: Re: ExifTool 12.88 Windows package
Post by: soundbyte on July 17, 2024, 05:16:29 AM
Thanks, I suspected that to be the case.
Both versions seem to work, I prefer to use the one that has the least files.

As there are 2 main web site options to download the exiftool application I suggest that the alternate site files be renamed to ensure no confusion between 2 files with the same name from differing sites that do the same thing but have differing file lists.
Perhaps the ones from the alternate site have should a prefix/suffix added to the filename - possibly OB?

As for a default location to place the Windows zip install files, I think that C:\Program Files\Exiftool for 64bit or C:\Program Files (x86) for 32bit could be suggested as these are the default locations for the 64bit and 32bit install version/s.
Title: Re: ExifTool 12.88 Windows package
Post by: StarGeek on July 17, 2024, 10:23:35 AM
Quote from: soundbyte on July 17, 2024, 05:16:29 AMAs for a default location to place the Windows zip install files, I think that C:\Program Files\Exiftool for 64bit or C:\Program Files (x86) for 32bit could be suggested as these are the default locations for the 64bit and 32bit install version/s.

Oliver Betz's installer will install to the "Program Files" directory if you select the install for all users option.  See Installer options (https://oliverbetz.de/pages/Artikel/ExifTool-for-Windows#toc-4).
Title: Re: ExifTool 12.88 Windows package
Post by: StarGeek on July 18, 2024, 06:22:07 PM
Link for building the PAR packer version
pp_build_exe.args, Arguments for building stand-alone Windows executable (https://exiftool.org/forum/index.php?msg=18798)
Title: Re: ExifTool 12.88 Windows package
Post by: Phil Harvey on July 18, 2024, 08:00:35 PM
I just updated the .args file you linked to the latest version.  (That was a 12-year-old thread. :P)

- Phil
Title: Re: ExifTool 12.88 Windows package
Post by: StarGeek on July 18, 2024, 10:38:51 PM
Yep, but I that was the one I had in my notes and I couldn't find anything newer searching on pp_build_exe.args.