Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "INSTALLLOGATTRIBUTES" in [All]

msi

.

        enum INSTALLLOGATTRIBUTES // flag attributes for MsiEnableLog

.

            INSTALLLOGATTRIBUTES_APPEND = (1 << 0),

.

            INSTALLLOGATTRIBUTES_FLUSHEACHLINE = (1 << 1),

.
Documentation
[INSTALLLOGATTRIBUTES] on MSDN
.

public static extern UInt32 MsiEnableLog(INSTALLLOGMODE dwLogMode, string szLogFile, INSTALLLOGATTRIBUTES dwLogAttributes);

.

        public enum INSTALLLOGATTRIBUTES // flag attributes for MsiEnableLog

.

            INSTALLLOGATTRIBUTES_APPEND = (1 << 0),

.

            INSTALLLOGATTRIBUTES_FLUSHEACHLINE = (1 << 1),

.

                             INSTALLLOGATTRIBUTES.INSTALLLOGATTRIBUTES_FLUSHEACHLINE);

.

    MsiEnableLog(INSTALLLOGMODE.INSTALLLOGMODE_VERBOSE, "C:\\temp\\log.log", INSTALLLOGATTRIBUTES.INSTALLLOGATTRIBUTES_APPEND);


 
Access PInvoke.net directly from VS: