Reading a MOF file with PowerShell

Hello,

I am new to PowerShell and I was wondering if I could use PowerShell to display the contents of server MOF files? If so, can you please point me in the right direction?

Thanks in advance,

J

Hi,

Not sure what you are aiming for.

To list file contents in powershell console:

 Get-Content "C:\test.mof" 

To load file contents line by line into variable:

 $temp = Get-content "C:\temp.mof" 

Don’t think it is possible to convert .mof file into powershell script.