Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7182527
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T17:47:21+00:00 2026-05-28T17:47:21+00:00

I am developing a C# program that will load files and get information such

  • 0

I am developing a C# program that will load files and get information such as loaded file created date, modification date, size etc. Another thing that I need to know is whether the loaded file (executable.exe) is linked with the LARGEADDRESSAWARE flag. The FileInfo class doesn’t provide this information.

Does anyone know how in C# can I find out whether a given executable.exe is linked with the LARGEADDRESSAWARE flag (to handle addresses larger than 2 GB)?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T17:47:23+00:00Added an answer on May 28, 2026 at 5:47 pm

    Here is some code that checks for the Large Address Aware flag. All you have to do is pass a stream that is pointed to the start of an executable.

    IsLargeAware("some.exe");
    
    static bool IsLargeAware(string file)
    {
        using (var fs = File.OpenRead(file))
        {
            return IsLargeAware(fs);
        }
    }
    /// <summary>
    /// Checks if the stream is a MZ header and if it is large address aware
    /// </summary>
    /// <param name="stream">Stream to check, make sure its at the start of the MZ header</param>
    /// <exception cref=""></exception>
    /// <returns></returns>
    static bool IsLargeAware(Stream stream)
    {
        const int IMAGE_FILE_LARGE_ADDRESS_AWARE = 0x20;
    
        var br = new BinaryReader(stream);
    
        if (br.ReadInt16() != 0x5A4D)       //No MZ Header
            return false;
    
        br.BaseStream.Position = 0x3C;
        var peloc = br.ReadInt32();         //Get the PE header location.
    
        br.BaseStream.Position = peloc;
        if (br.ReadInt32() != 0x4550)       //No PE header
            return false;
    
        br.BaseStream.Position += 0x12;
        return (br.ReadInt16() & IMAGE_FILE_LARGE_ADDRESS_AWARE) == IMAGE_FILE_LARGE_ADDRESS_AWARE;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm developing a program that needs to load and save data in external files,
first question here. I'm developing a program in C# (.NET 3.5) that displays files
I'm currently developing a program that will generate reports based upon lead data. My
I am developing a program that uses a view to display information. Usernames and
I am developing a program that will be run through Windows remote desktop, and
I'm developing a program using App Inventor that will tweet stuff. I've assigned a
I'm developing an iPad app that will be distributed in-house using the Enterprise Program
I am developing an application that will upload files to Amazon. Amazon provides a
I am developing a program in Java that I will use for registering data.
I'm developing a very simple program in VB2010 Express that will create folders based

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.