<?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: Extracting messages from executable message files in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/extracting-messages-from-executable-message-files/m-p/3175241#M61761</link>
    <description>I did try your procedure first, but it didn't seem to work on my system (not sure why).  So I changed it to dump out *every* message to a file for a specific facility...&lt;BR /&gt;&lt;BR /&gt;Not the most elegant way but at least its effective! :-)&lt;BR /&gt;&lt;BR /&gt;Many Thanks,&lt;BR /&gt;Darran.&lt;BR /&gt;</description>
    <pubDate>Thu, 29 Jan 2004 11:13:41 GMT</pubDate>
    <dc:creator>Darran Burt</dc:creator>
    <dc:date>2004-01-29T11:13:41Z</dc:date>
    <item>
      <title>Extracting messages from executable message files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/extracting-messages-from-executable-message-files/m-p/3175234#M61754</link>
      <description>Ages ago there was a freeware utility called UNMESSAGE which would read and dump out the contents of any message file.&lt;BR /&gt;&lt;BR /&gt;Anyone know of an up-to-date version of this, or perhaps another way of getting them?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Darran.</description>
      <pubDate>Tue, 27 Jan 2004 10:17:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/extracting-messages-from-executable-message-files/m-p/3175234#M61754</guid>
      <dc:creator>Darran Burt</dc:creator>
      <dc:date>2004-01-27T10:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting messages from executable message files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/extracting-messages-from-executable-message-files/m-p/3175235#M61755</link>
      <description>UNMESSAGE can be found here&lt;BR /&gt;&lt;A href="http://vms.process.com/scripts/fileserv/fileserv.com?UNMESSAGE" target="_blank"&gt;http://vms.process.com/scripts/fileserv/fileserv.com?UNMESSAGE&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 27 Jan 2004 12:16:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/extracting-messages-from-executable-message-files/m-p/3175235#M61755</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2004-01-27T12:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting messages from executable message files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/extracting-messages-from-executable-message-files/m-p/3175236#M61756</link>
      <description>When I use the above link and click on UNMESSAGE.ZIP, I get the error message 550 directory not found.&lt;BR /&gt;&lt;BR /&gt;You can find UNMESSAGE also on:&lt;BR /&gt;&lt;A href="http://www.tmk.com/ftp/vms-freeware/fileserv/unmessage.zip" target="_blank"&gt;http://www.tmk.com/ftp/vms-freeware/fileserv/unmessage.zip&lt;/A&gt;</description>
      <pubDate>Wed, 28 Jan 2004 01:28:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/extracting-messages-from-executable-message-files/m-p/3175236#M61756</guid>
      <dc:creator>Karl Rohwedder</dc:creator>
      <dc:date>2004-01-28T01:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting messages from executable message files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/extracting-messages-from-executable-message-files/m-p/3175237#M61757</link>
      <description>curious - the link works for me. Its still not a recent version (built on VMS V5.1) but possibly the most up to date you are going to get.</description>
      <pubDate>Wed, 28 Jan 2004 04:36:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/extracting-messages-from-executable-message-files/m-p/3175237#M61757</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2004-01-28T04:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting messages from executable message files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/extracting-messages-from-executable-message-files/m-p/3175238#M61758</link>
      <description>I have a brute-force script which might do what you need. Call it with the target message facility as argument. Do a "SET MESSAGE " to the target file before the run.&lt;BR /&gt;You may want to dump the target file block 2 to confirm the numeric values of the messages.&lt;BR /&gt;&lt;BR /&gt;Good luck,&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;$if p1 .eqs. "" then exit&lt;BR /&gt;$fac = "%" + p1&lt;BR /&gt;$i=0&lt;BR /&gt;$loop:&lt;BR /&gt;$!write sys$output f$fao("!XL ",i), f$message(i,"facility")&lt;BR /&gt;$if fac .eqs. f$message(i,"facility") then goto mess&lt;BR /&gt;$i = i + %x10000&lt;BR /&gt;$if i.lt.%x0FFF0000 then goto loop&lt;BR /&gt;$exit&lt;BR /&gt;$mess:&lt;BR /&gt;$write sys$output "Message for ''fac' start at: ", f$fao("!XL",i)&lt;BR /&gt;$end = i + %x10000&lt;BR /&gt;$i =   i + %x8000&lt;BR /&gt;$loop:&lt;BR /&gt;$if f$mess(i,"ident").nes."%NOMSG" then -&lt;BR /&gt;        write sys$output f$fao("!XL ",i), f$message(i)&lt;BR /&gt;$i = i + 8&lt;BR /&gt;$if i.lt.end then goto loop&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;For example:&lt;BR /&gt;&lt;BR /&gt;&amp;gt;@mess_fac vvief&lt;BR /&gt;Message for %VVIEF start at: 03300000&lt;BR /&gt;03308050 %VVIEF-W-BADHEADER, emulator image has bad header&lt;BR /&gt;03308058 %VVIEF-W-BADLOGIC, failed to translate logical name '!AS'&lt;BR /&gt;03308060 %VVIEF-W-MERGEERR, failed to activate image '!AS'&lt;BR /&gt;:&lt;BR /&gt;</description>
      <pubDate>Wed, 28 Jan 2004 14:15:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/extracting-messages-from-executable-message-files/m-p/3175238#M61758</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2004-01-28T14:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting messages from executable message files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/extracting-messages-from-executable-message-files/m-p/3175239#M61759</link>
      <description>Well I got the zipfile and eventually got it to build on alpha (too much messing around on HSGs!) but it only signals abort or stack dumps!&lt;BR /&gt;&lt;BR /&gt;Anyone got an alpha build version? :-)&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Darran.&lt;BR /&gt;</description>
      <pubDate>Thu, 29 Jan 2004 06:52:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/extracting-messages-from-executable-message-files/m-p/3175239#M61759</guid>
      <dc:creator>Darran Burt</dc:creator>
      <dc:date>2004-01-29T06:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting messages from executable message files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/extracting-messages-from-executable-message-files/m-p/3175240#M61760</link>
      <description>&amp;gt;&amp;gt; , or perhaps another way of getting them?&lt;BR /&gt;&lt;BR /&gt;Did my brute-force script not work for you?&lt;BR /&gt;&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Thu, 29 Jan 2004 09:19:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/extracting-messages-from-executable-message-files/m-p/3175240#M61760</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2004-01-29T09:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting messages from executable message files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/extracting-messages-from-executable-message-files/m-p/3175241#M61761</link>
      <description>I did try your procedure first, but it didn't seem to work on my system (not sure why).  So I changed it to dump out *every* message to a file for a specific facility...&lt;BR /&gt;&lt;BR /&gt;Not the most elegant way but at least its effective! :-)&lt;BR /&gt;&lt;BR /&gt;Many Thanks,&lt;BR /&gt;Darran.&lt;BR /&gt;</description>
      <pubDate>Thu, 29 Jan 2004 11:13:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/extracting-messages-from-executable-message-files/m-p/3175241#M61761</guid>
      <dc:creator>Darran Burt</dc:creator>
      <dc:date>2004-01-29T11:13:41Z</dc:date>
    </item>
  </channel>
</rss>

