.MOF - File Extension for Managed Object Format Files

Q

What is MOF? MOF, short name for Managed Object Format, is used as the file extension for Managed Object Format files. .MOF files are text files that contain programming source code written in language similar to C language. See the sample .MOF file included below.

✍: FYIcenter.com

A

File Extension: .MOF

MIME Type: text/plain

d. #pragma AUTORECOVER

File Content: Managed Object Format

.MOF files are Managed Object Format files, that contain programming source code written in language similar to C language. Here is a sample .MOF Managed Object Format file, register.mof:

//Copyright 2009 - 2010 Intel Corporation All Rights Reserve
#pragma classflags("forceupdate")
#pragma namespace("\\\\.\\root")

instance of __Namespace {
	name="Intel_ME";
};

#pragma namespace("\\\\.\\root\\Intel_ME")

/////////////////////////////////////////////////////////////////////
//                  Provider registration                          //
/////////////////////////////////////////////////////////////////////
instance of __Win32Provider as $P
{
    Name    = "IntelMEProv" ;
    ClsId   = "{73C0325A-D3BF-48af-9F37-1589CC58E788}" ;
    HostingModel="LocalSystemHost";
};    

instance of __MethodProviderRegistration
{
    Provider = $P;
};

instance of __InstanceProviderRegistration
{
    Provider = $P;
    SupportsGet = TRUE;
    SupportsEnumeration = TRUE;
};

.MOF Managed Object Format file sample: Click sample.mof to download.

Since .MOF files are in text format, you can use Notepad or any text editor to create or modify them. No special software is needed.

For for information on how to use .MOF Managed Object Format files, see links below:

2012-09-07, 5434👍, 0💬