<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to add version information to a Intel Fortran EXE in Visual Studio in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1688420#M175760</link>
    <description>Hurrah! Glad to see you got there. It was clear to me the the instal was broken in some way but when registry has been messed up by a third app that can be difficult to find and fix.</description>
    <pubDate>Thu, 08 May 2025 07:51:32 GMT</pubDate>
    <dc:creator>andrew_4619</dc:creator>
    <dc:date>2025-05-08T07:51:32Z</dc:date>
    <item>
      <title>How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1685570#M175605</link>
      <description>&lt;P&gt;I would like to add version information to a Fortran EXE when it is built.&amp;nbsp; I would like the version number to follow the notes below.&amp;nbsp; What is the recommended approach for doing this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;Major &lt;/STRONG&gt;= pulled from file&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Minor &lt;/STRONG&gt;= pulled from file&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Release&lt;/STRONG&gt; = number of days since Jan 1 2000&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Build&lt;/STRONG&gt; = number of seconds since midnight (00:00:00), divided by 2&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 25 Apr 2025 23:46:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1685570#M175605</guid>
      <dc:creator>Bryan_H_1</dc:creator>
      <dc:date>2025-04-25T23:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1685644#M175610</link>
      <description>&lt;P&gt;There are many ways to do this.&lt;/P&gt;&lt;P&gt;One suggestion is to add to the solution a Pre-Build step (that runs a program/batch script), that generates the desired data into an appropriate source file (e.g. a module file).&lt;/P&gt;&lt;P&gt;You may want to add a Post-Build step that copies this file to a LastBuild....) file then deletes the module file.&lt;/P&gt;&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Sat, 26 Apr 2025 15:02:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1685644#M175610</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2025-04-26T15:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1685655#M175611</link>
      <description>&lt;P&gt;You can add a resource file (.rc) to your build that contains info Windows can display for version info. I have attached a sample file here (generated by Visual Studio), the important block is this:&lt;/P&gt;&lt;LI-CODE lang="none"&gt;VS_VERSION_INFO VERSIONINFO
 FILEVERSION 1,0,314,159
 PRODUCTVERSION 1,0,314,159
 FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
 FILEFLAGS 0x1L
#else
 FILEFLAGS 0x0L
#endif
 FILEOS 0x40004L
 FILETYPE 0x0L
 FILESUBTYPE 0x0L
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040904b0"
        BEGIN
            VALUE "CompanyName", "TODO: &amp;lt;Company name&amp;gt;"
            VALUE "FileDescription", "TODO: &amp;lt;File description&amp;gt;"
            VALUE "FileVersion", "1.0.314.159"
            VALUE "InternalName", "TODO: &amp;lt;Internal name&amp;gt;"
            VALUE "LegalCopyright", "Copyright (C) 2025"
            VALUE "OriginalFilename", "TODO: &amp;lt;Original filename&amp;gt;"
            VALUE "ProductName", "TODO: &amp;lt;Product name&amp;gt;"
            VALUE "ProductVersion", "1.0.314.159"
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        VALUE "Translation", 0x409, 1200
    END
END&lt;/LI-CODE&gt;&lt;P&gt;You could use a pre-build step to create this file and it would get built in automatically. When you ask Windows for the version info, you see something like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Steve_Lionel_0-1745681791114.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/65199i54F96B556F054B59/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="Steve_Lionel_0-1745681791114.png" alt="Steve_Lionel_0-1745681791114.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This data can also be retrieved with a call to a Windows API routine (GetFIleVersionInfo)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Apr 2025 15:38:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1685655#M175611</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2025-04-26T15:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1685982#M175618</link>
      <description>&lt;P&gt;As a first test, I am trying to get the version information added to the EXE, then worry about dynamically updating it.&amp;nbsp; First added the example resource1.rc to the project.&amp;nbsp; After adding the existing item, it appears under the "resource files" folder in the project solution.&amp;nbsp; Next ran "Clean" then "Build".&amp;nbsp; The resulting EXE did not have any version information added to it.&amp;nbsp; The build log gave the following below.&amp;nbsp; Is there some additional configuration needed?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Compiling with Intel® Fortran Compiler Classic 2021.11.0 [IA-32]...
ifort /nologo /debug:full /Od /Qdiag-disable:10448 /warn:interfaces /module:"Debug\\" /object:"Debug\\" /Fd"Debug\vc170.pdb" /traceback /check:bounds /check:stack /libs:dll /threads /dbglibs /c /Qlocation,link,"C:\Program Files\Microsoft Visual Studio\2022-LTSC-17.8.9\VC\Tools\MSVC\14.38.33130\bin\HostX86\x86" /Qm32 "C:\Users\me.COMPANY\source\repos\VersionTest\VersionTest\Main.for"
Linking...
Link /OUT:"Debug\VersionTest.exe" /INCREMENTAL:NO /NOLOGO /MANIFEST /MANIFESTFILE:"Debug\VersionTest.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:\Users\bryan.MBS\source\repos\VersionTest\VersionTest\Debug\VersionTest.pdb" /SUBSYSTEM:CONSOLE /IMPLIB:"C:\Users\bryan.MBS\source\repos\VersionTest\VersionTest\Debug\VersionTest.lib" -qm32 "Debug\Main.obj"
Embedding manifest...
mt.exe /nologo /outputresource:"C:\Users\me.COMPANY\source\repos\VersionTest\VersionTest\Debug\VersionTest.exe;#1" /manifest "Debug\VersionTest.exe.intermediate.manifest"

VersionTest - 0 error(s), 0 warning(s)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 12:32:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1685982#M175618</guid>
      <dc:creator>Bryan_H_1</dc:creator>
      <dc:date>2025-04-28T12:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1685992#M175620</link>
      <description>&lt;P&gt;If you right click the RC in the solution explorer pane does it have a build instruction on the properties tab?&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 13:41:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1685992#M175620</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2025-04-28T13:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1685996#M175621</link>
      <description>&lt;P&gt;No.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the Resource1.rc "Property Pages | Configuration Properties | Custom Build Step | General" are fields empty except the "Description" which has "Performing Custom Build Step...".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 13:52:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1685996#M175621</guid>
      <dc:creator>Bryan_H_1</dc:creator>
      <dc:date>2025-04-28T13:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686001#M175622</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="andrew_4619_0-1745850368085.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/65228i2F470E27015A1EF4/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="andrew_4619_0-1745850368085.png" alt="andrew_4619_0-1745850368085.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="andrew_4619_1-1745850386458.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/65229iDE45C1F2DD37155C/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="andrew_4619_1-1745850386458.png" alt="andrew_4619_1-1745850386458.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It needs to compile to make a .res&lt;/P&gt;&lt;P&gt;BTW I have never added this step it has been set up when the project is made.....&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 14:29:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686001#M175622</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2025-04-28T14:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686011#M175623</link>
      <description>&lt;P&gt;I believe it matches what you show.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VersionTest_Resources_General.png" style="width: 802px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/65231i6E4F2E8C6C9A9C2F/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="VersionTest_Resources_General.png" alt="VersionTest_Resources_General.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VersionTest_Resources_CommandLine.png" style="width: 802px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/65232i47BF09C166D2CA8E/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="VersionTest_Resources_CommandLine.png" alt="VersionTest_Resources_CommandLine.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 14:47:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686011#M175623</guid>
      <dc:creator>Bryan_H_1</dc:creator>
      <dc:date>2025-04-28T14:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686013#M175624</link>
      <description>&lt;P&gt;so if you do a clean and then a build is it make the .res file?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 14:57:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686013#M175624</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2025-04-28T14:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686017#M175625</link>
      <description>&lt;P&gt;After a clean and build there is no .res file.&lt;/P&gt;&lt;P&gt;Entire solution attached, if useful in troubleshooting.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 15:09:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686017#M175625</guid>
      <dc:creator>Bryan_H_1</dc:creator>
      <dc:date>2025-04-28T15:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686026#M175626</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="andrew_4619_0-1745854070936.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/65233iF00E43CB4EBE9BC9/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="andrew_4619_0-1745854070936.png" alt="andrew_4619_0-1745854070936.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It threw a wobbler "can't open resource.h file", I opened the rc in a text ed, deleted the include lines for that at the top and did a rebuild. (X64 / iFX)&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 15:29:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686026#M175626</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2025-04-28T15:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686027#M175627</link>
      <description>&lt;P&gt;I think adding a "new" ie empty RC to the project and then in the VS resource editor adding a version object (control) is probably a better way to do this from the start.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 15:32:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686027#M175627</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2025-04-28T15:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686042#M175628</link>
      <description>&lt;P&gt;Test 1:&lt;/P&gt;&lt;P&gt;--------&lt;/P&gt;&lt;P&gt;I commented out all 3 include lines, clean, rebuild.&amp;nbsp; No version info.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Test 2:&lt;/P&gt;&lt;P&gt;--------&lt;/P&gt;&lt;P&gt;Removed Resource1.rc&lt;/P&gt;&lt;P&gt;Created blank file Resource2.rc&lt;/P&gt;&lt;P&gt;Added existing item Resource2.rc&lt;/P&gt;&lt;P&gt;Double clicked Resource2.rc in solution explorer to open it in visual studio.&lt;/P&gt;&lt;P&gt;In the editor, Rt-clicked on Resourec2.rc | Add Resource&lt;/P&gt;&lt;P&gt;In the Add resource dialog double clicked "Version"&lt;/P&gt;&lt;P&gt;Clicked save all, I am given prompt:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; The resource script ... Resource2.rc was not created using Microsoft Visual Studio.&amp;nbsp; Comments, macros, preprocessor directives, and conditionally included information may be modified and/or removed from this file during the build process.&amp;nbsp; Replace existing file?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Selected "Yes"&lt;/P&gt;&lt;P&gt;Clean&lt;/P&gt;&lt;P&gt;Build&lt;/P&gt;&lt;P&gt;No version info.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bryan_H_1_1-1745855136272.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/65234i0A5DF5A4AB20E34C/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="Bryan_H_1_1-1745855136272.png" alt="Bryan_H_1_1-1745855136272.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Test 3:&lt;/P&gt;&lt;P&gt;--------&lt;/P&gt;&lt;P&gt;Closed all open files in visual studio&lt;/P&gt;&lt;P&gt;Double clicked Resource2.rc in solution explorer&lt;/P&gt;&lt;P&gt;Get the following errors:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; error RC2144 : PRIMARY LANGUAGE ID not a number&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; error RC2135: file not found: 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; error RC2135: file not found: TEXTINCLUDE&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; error RC2135: file not found: END&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 15:52:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686042#M175628</guid>
      <dc:creator>Bryan_H_1</dc:creator>
      <dc:date>2025-04-28T15:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686064#M175630</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;Created blank file Resource2.rc&lt;/SPAN&gt;", what is meant was under resources do "add"&amp;gt; "new item"&amp;gt;"Resource File"&amp;gt; "add" . The system will create the resource file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 17:46:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686064#M175630</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2025-04-28T17:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686066#M175632</link>
      <description>&lt;P&gt;&lt;SPAN&gt;"add"&amp;gt; "new item"&amp;gt;"Resource File"&amp;gt; "add".&amp;nbsp; This gives:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; fatal error RC1015: cannot open include file 'winres.h'.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is this a search path issue?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Questions:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1/ Where should this file be found?&amp;nbsp; (C:\Program Files\Microsoft Visual Studio\2022-LTSC-17.8.9\SDK\ScopeCppSDK\vc15\SDK\include\um\winres.h?)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2/ What controls where it searches?&amp;nbsp; (windows environment path variable?)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 18:09:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686066#M175632</guid>
      <dc:creator>Bryan_H_1</dc:creator>
      <dc:date>2025-04-28T18:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686110#M175635</link>
      <description>&lt;P&gt;Those are questions that you should not need to answer. Your installation must be broken!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 20:35:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686110#M175635</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2025-04-28T20:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686113#M175637</link>
      <description>&lt;P&gt;Good to know.&amp;nbsp; Should my next steps be:&lt;/P&gt;&lt;P&gt;1/ Uninstall Intel Fortran&lt;/P&gt;&lt;P&gt;2/ Uninstall Visual studio&lt;/P&gt;&lt;P&gt;3/ Uninstall Windows SDK&lt;/P&gt;&lt;P&gt;4/ Install Windows SDK&lt;/P&gt;&lt;P&gt;5/ Install Visual Studio&lt;/P&gt;&lt;P&gt;6/ Install Intel Fortran&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 20:39:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686113#M175637</guid>
      <dc:creator>Bryan_H_1</dc:creator>
      <dc:date>2025-04-28T20:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686134#M175638</link>
      <description>&lt;P&gt;When I tested this, I right clicked on the project, selected Add &amp;gt; New Item and selected Resource File.&amp;nbsp; I then opened the resource file, right clicked on Resource1.rc in the resource file, selected Add Resource &amp;gt; Version. By adding the resource file this way, it gets added to the project in a way that will get it compiled and linked in.&lt;/P&gt;&lt;P&gt;winres.h ought to be found from the list of folders under Include Files in the Intel Compilers and Libraries &amp;gt; IFX &amp;gt; Compilers dialog, but I've seen issues in the past where this was not honored by the resource compiler (part of Visual Studio's C++ support.) If for some reason this isn't working you can edit the .rc file and insert the complete path to the file.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 22:44:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686134#M175638</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2025-04-28T22:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686734#M175674</link>
      <description>&lt;P&gt;Summary:&lt;/P&gt;&lt;P&gt;=========&lt;/P&gt;&lt;P&gt;Still no version information.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Questions:&lt;/P&gt;&lt;P&gt;=========&lt;/P&gt;&lt;P&gt;1/ Is there a way to know if the resource compiler was successfully run when compiling?&lt;/P&gt;&lt;P&gt;2/ Are there any special considerations/install order when I install Visual Studio, Windows SDK, and Intel Fortran so that versioning will work?&lt;/P&gt;&lt;P&gt;3/ Any suggestions on what should I try next?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Details:&lt;/P&gt;&lt;P&gt;=======&lt;/P&gt;&lt;P&gt;I tested adding the full path to all files referenced directly in the .rc file. Unfortunately, they referenced additional file dependencies.&amp;nbsp; Since I do not want to edit these files that are needed outside of my test project, I instead did a temporary desperate move and copied all files in the "C:\Program Files\Microsoft Visual Studio\2022\Preview\SDK\ScopeCppSDK\vc15\SDK\include\um\" folder and "C:\Program Files\Microsoft Visual Studio\2022\Preview\SDK\ScopeCppSDK\vc15\SDK\include\shared\" folder to be beside my Fortran source code for this project.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: this is only temporary hack to try to bypass this search path problem in a proof of concept.&lt;/P&gt;&lt;P&gt;When this was done, I was able to Add &amp;gt; New Item and selected resource file, then opened the resource file, right clicked on Resource4.rc in the resource file, selected Add Resource &amp;gt; Version.&amp;nbsp; Before I couldn't even open the resource file in visual studio. So, this is progress!&lt;/P&gt;&lt;P&gt;However, when I tried to compile the program, it still does not contain any resource information.&lt;/P&gt;&lt;P&gt;At this point it feels like the resource compiler is not being invoked or did not run successfully.&amp;nbsp; Is there any way to determine if it was?&amp;nbsp; My guess is that something path related might be causing this too.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, I installed everything on a second machine recently, and when I tested on that machine, I am getting the same issue with the resource file #include references not being found.&amp;nbsp; So, it seems that how I installed things was incorrect, or both machines had their installs corrupted, at least as far as the paths needed for resource files are concerned.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any gotchas I need to watch out for when I try to re-install again?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 17:20:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686734#M175674</guid>
      <dc:creator>Bryan_H_1</dc:creator>
      <dc:date>2025-04-30T17:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to add version information to a Intel Fortran EXE in Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686741#M175675</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="andrew_4619_0-1746034575506.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/65328iA446ED1B416070B2/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="andrew_4619_0-1746034575506.png" alt="andrew_4619_0-1746034575506.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If you clean and build you should see it as above. It makes a .res file&lt;/P&gt;&lt;P&gt;On my windows 11 VS2022 system it installed the SDK at&amp;nbsp;C:\Program Files (x86)\Windows Kits\10&lt;/P&gt;&lt;P&gt;You should not need to install the SDK. When you install the C++ components with VS you get the sdk and resource editor/ compiler etc&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 17:43:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-add-version-information-to-a-Intel-Fortran-EXE-in-Visual/m-p/1686741#M175675</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2025-04-30T17:43:13Z</dc:date>
    </item>
  </channel>
</rss>

