Page 1 of 4 123 ... LastLast
Results 1 to 10 of 35

Thread: Interesting registry settings about Microsoft Security Essentials

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Default Interesting registry settings about Microsoft Security Essentials

    Hi all,

    As you all know, Microsoft Security Essentials does corrupt TPS files.

    Please read this article:
    http://wpkg.org/MSSecurityEssentials

    With the above info and with this info:
    http://www.clarionmag.com/Page/23999
    it would be possible to check if MSE is active.
    If yes, then show a message to the user.

    And after that you could exclude your application paths and *.tps files
    automatically with those registry settings?

    Perhaps doable with SetupBuilder?
    Anybody interested in writing a script for this?

    --
    Best regards,
    Jeffrey

  2. #2

    Default Re: Interesting registry settings about Microsoft Security Essentials

    Just do it within your program

    --
    Dan Scott
    C55 - C6.3 Legacy
    Garage Partner Pro / Invoice Partner
    www.garagepartner.com
    Plan A is always more effective when the device you are working on
    understands that Plan B involves a larger hammer

  3. #3

    Default Re: Interesting registry settings about Microsoft Security Essentials

    Hi

    I think, in order to WRITE to the registry, I need to run my application
    as "requireAdministrator"?

    Best regards,
    Jeffrey

  4. #4

    Default Re: Interesting registry settings about Microsoft Security Essentials

    - Create a little program that's manifested to run as administrator.
    - Your main program verifies that the registry entry(ies) exist.
    - If the registry needs tweaking, warn the user and give them the
    option of trying to fix it, which RUNs that little program.

    Mike Hanson
    www.boxsoft.net

  5. #5

    Default Re: Interesting registry settings about Microsoft Security Essentials

    Jeffrey,

    > I think, in order to WRITE to the registry, I need to run my application
    > as "requireAdministrator"?

    You can use your SetupBuilder and build a little helper tool to handle it.

    If you need help, just let me know.

    Friedrich

    --
    Friedrich Linder
    Lindersoft
    www.lindersoft.com
    +1.954.252.3910

    SetupBuilder is Windows installation -- "point. click. ship"

    -- Official Comodo Code Signing and SSL Certificate Partner

  6. #6

    Default Re: Interesting registry settings about Microsoft Security Essentials

    Hi Friedrich,

    Thanks, I will try that.

    Question:
    On a 64-bit machine the registry settings are sometimes under
    ....\WOW64\... ?
    And on a 32-bit machine NOT.

    So how does SetupBuilder detect this in order to get the correct
    registry path on a 32- and/or 64-bit machine?

    Best regards,
    Jeffrey

  7. #7

    Default Re: Interesting registry settings about Microsoft Security Essentials

    Hi Jeffrey
    You would have to detect what OS your program is running in and based upon the result, check for the appropriate registry key.

    Ben E. Brady

  8. #8

    Default Re: Interesting registry settings about Microsoft Security Essentials

    Hi Jeffrey,

    > Thanks, I will try that.
    >
    > Question:
    > On a 64-bit machine the registry settings are sometimes under
    > ....\WOW64\... ?
    > And on a 32-bit machine NOT.
    >
    > So how does SetupBuilder detect this in order to get the correct registry
    > path on a 32- and/or 64-bit machine?

    It's very easy to do with SetupBuilder.

    1. Detect whether the operating system is 64-bit or not.

    For example:

    Set Variable %IS_64BIT% to FUNCTION:Get System Info(WOW64 Status)

    2. If it is 64-bit, switch the installer into 64-bit mode.

    For example:

    If %IS_64BIT% Equals "1" Then
    Enable x64 Support
    End

    3. Read/write the registry. This will automatically process the 64-bit
    registry key branch on 64-bit operating systems.

    4. After that, switch back to 32-bit mode.

    If %IS_64BIT% Equals "1" Then
    Disable x64 Support
    End

    BTW, never specify the "Wow6432node" registry item. Windows handles this
    automatically.

    http://www.lindersoft.com/forums/sho...5605#post55605

    Does this help?

    Friedrich

  9. #9

    Default Re: Interesting registry settings about Microsoft Security Essentials

    Hi Friedrich,

    Yes, this helps a lot!
    Thanks, what a great tool SetupBuilder is!!

    Best regards,
    Jeffrey

  10. #10

    Default Re: Interesting registry settings about Microsoft Security Essentials

    > Yes, this helps a lot!
    > Thanks, what a great tool SetupBuilder is!!

    Thank YOU

    Friedrich

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •