myITforum.com Community Forum myITforum.com Community Forum

Home  Forums  Blogs  Live Support chat  Search Articles  Wiki  FAQ  Email Lists  Register  Login  My Profile  Inbox  Address Book  My Subscription  My Forums 

Photo Gallery  Member List  Search  Calendars  FAQ  Ticket List  Log Out

All Forums RSS Feed Subscription:


  


Using MOF to Extract ALL SubKeys?

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
  Printable Version
All Forums >> [Management Products] >> System Center Products >> System Center Configuration Manager >> Using MOF to Extract ALL SubKeys? Page: [1]
Login
Message << Older Topic   Newer Topic >>
Using MOF to Extract ALL SubKeys? - 8/15/2008 12:20:02 AM   
jkovarik

 

Posts: 38
Score: 0
Joined: 6/6/2001
From: jarrod_kovarik@hotmail.com
Status: offline
Hi,

I am trying to report, via additions to the SMS_DEF.MOf, the values of various registry keys that contain the versions of the SOE build.
This in itself is not that hard to do, but I have come across a stumbling block and cannot find any info on how to return the keys and values that I am after.
The scenario:
The registry key that contains the values that I want is HKLM\SOFTWARE\CompanyName\SOE. This key contains various values such as Current Version, Platform etc and these are constant across the various machines. This is where I come in to some issues as I also need to retrieve the initial build data and how it was built. The keys are written such as this: SOE_v3-1-24_Date and SOE_v3-1-24_Method. Now I can retrieve this info without any problems, but I do not know if this key exists on the machine so I guess I am trying to capture all subkeys and values of those keys under the SOE key. Clear as mud? (everything after the '-' is the value)
Machine A:
HKLM\SOFTWARE\CompanyName\SOE|CurrentVersion - v3-1-24
HKLM\SOFTWARE\CompanyName\SOE|Platform  - Desktop
HKLM\SOFTWARE\CompanyName\SOE|SOE_v3-1-24_Date - 02/07/2008
HKLM\SOFTWARE\CompanyName\SOE|SOE_v3-1-24_Method - Manual
HKLM\SOFTWARE\CompanyName\SOE|SOE_v3-1-23_Date - 02/01/2008
HKLM\SOFTWARE\CompanyName\SOE|SOE_v3-1-23_Method - Image Build
Machine B:
HKLM\SOFTWARE\CompanyName\SOE|CurrentVersion - v3-1-24
HKLM\SOFTWARE\CompanyName\SOE|Platform  - Desktop
HKLM\SOFTWARE\CompanyName\SOE|SOE_v3-1-24_Date - 02/07/2008
HKLM\SOFTWARE\CompanyName\SOE|SOE_v3-1-24_Method - Image Build
Machine C:
HKLM\SOFTWARE\CompanyName\SOE|CurrentVersion - v3-1-25
HKLM\SOFTWARE\CompanyName\SOE|Platform  - Laptop
HKLM\SOFTWARE\CompanyName\SOE|SOE_v3-1-25_Date - 02/08/2008
HKLM\SOFTWARE\CompanyName\SOE|SOE_v3-1-25_Method - Pacakge Push
HKLM\SOFTWARE\CompanyName\SOE|SOE_v3-1-24_Date - 02/07/2008
HKLM\SOFTWARE\CompanyName\SOE|SOE_v3-1-24_Method - Image Build
I hope this makes sense as I need to capture this information for all machines and cannot for the life of me work out how to capture this without creating an entry for each of the instances that may occur. This is not really a great a idea as I would have to create an entry going back x versions and would have to update the MOF files each time a new version was released.

Ideally, (although I know that this is asking way too much!) I would like to extract all keys and values under the CompanyName key as we also register the software installations, machine location etc in a similar way.

HKLM\SOFTWARE\CompanyName\SOE and all subkeys and values
HKLM\SOFTWARE\CompanyName\Software and all subkeys and values
HKLM\SOFTWARE\CompanyName\HomeOffice and all subkeys and values

Each of the software entries, Office, Winzip, AdobeReader etc (although are internal apps) have the same subkeys and so once I can enumerate them, I can grab all the information. My issue is, again, that I do not know what software is installed where so do not know how to enumerate the keys and then grab the values from each of them.
Machine A:
HKLM\SOFTWARE\CompanyName\Software\Office|Version - 12
HKLM\SOFTWARE\CompanyName\Software\Office|Installed Date - 12/08/2008
HKLM\SOFTWARE\CompanyName\Software\Office|Installed Path - c:\program files\office

Machine B:
HKLM\SOFTWARE\CompanyName\Software\Office|Version - 12
HKLM\SOFTWARE\CompanyName\Software\Office|Installed Date - 12/08/2008
HKLM\SOFTWARE\CompanyName\Software\Office|Installed Path - c:\program files\office
HKLM\SOFTWARE\CompanyName\Software\winzip|Version - 12
HKLM\SOFTWARE\CompanyName\Software\winZip|Installed Date - 12/08/2008
HKLM\SOFTWARE\CompanyName\Software\winzip|Installed Path - c:\program files\Winzip

Thanking you in advance for ANY help in lighting the way!!

Post #: 1
RE: Using MOF to Extract ALL SubKeys? - 8/15/2008 5:11:31 AM   
skissinger


Posts: 2167
Score: 135
Joined: 9/13/2001
From: Sherry Kissinger
Status: offline
Does this help?   "Custom Inventory – values within registry subkeys" topic?

_____________________________

mofmaster@smsexpert.com (version 2007) | http://www.smsexpert.com | http://www.sccmexpert.com
My Blog
Microsoft MVP - ConfigMgr

(in reply to jkovarik)
Post #: 2
RE: Using MOF to Extract ALL SubKeys? - 8/17/2008 7:16:23 PM   
jkovarik

 

Posts: 38
Score: 0
Joined: 6/6/2001
From: jarrod_kovarik@hotmail.com
Status: offline
Brilliant!!

Thank you so much.

(in reply to skissinger)
Post #: 3
RE: Using MOF to Extract ALL SubKeys? - 8/18/2008 1:40:18 AM   
jkovarik

 

Posts: 38
Score: 0
Joined: 6/6/2001
From: jarrod_kovarik@hotmail.com
Status: offline
Hmmm, looks like I jumped the gun a little too early as I have had some issues getting this working!! Here is what I have done....


HKLM\Software\CompanyName
HKLM\Software\CompanyName\WSOE | SOE_CurrentVersion REG_SZ v3-21
   | SOE_initialVersion REG_SZ v3-19
   | SOE_v3-21_Date REG_SZ 09/07/2008
   | SOE_v3-21_Method REG_SZ SoftDist
   | SOE_v3-19_Date REG_SZ 07/06/2007
   | SOE_v3-19_Method REG_SZ InitialBuild


All machines will have similar information, but the SOE_v etc will change as they obviously were not all built at the same time with the same build nor updated using the same the method.

This is how the 'Software' key is setup.

HKLM\Software\CompanyName\Software
HKLM\Software\CompanyName\Software\FlashPlayer |Version  REG_SZ 9.0.124
     |Manufacturer REG_SZ Adobe
     |Loan  REG_SZ False
HKLM\Software\CompanyName\Software\AdobeReader |Version REG_SZ 8.1
     |Manufacturer REG_SZ Adobe
     |Loan  REG_SZ True
HKLM\Software\CompanyName\Software\InhouseApp |Version REG_SZ 5.3
     |Manufacturer REG_SZ CompanyName
     |Loan  REG_SZ False

By following the information in the link I have managed to write out the classes to WMI in both the CIMV2 and CIMV2\SMS namespaces but receive an error when trying to report on them. It is a very helpful error!!

Unknown error encountered processing an instance of class Win32Reg_WSOE: 80041001

Here are my entries in the SMS_DEF.MOF:

[SMS_Report(TRUE),
SMS_Group_Name("Company_WSOE"),
SMS_Class_ID("Company|Company_WSOE|1.0")]
class Win32Reg_WSOE : SMS_Class_Template
{
[SMS_Report(TRUE), Key] string CompanyName;
[SMS_Report(TRUE) ] string WSOE;
[SMS_Report(TRUE) ] string Software;
};

And the Configuration.MOF:

[Dynamic,
Provider("RegProv"),
ClassContext("local|KEY_LOCAL_MACHINE\\Software\\CompanyName")]
class Win32Reg_WSOE
{
[key]  string CompanyName;
[PropertyContext("WSOE")] string WSOE;
[PropertyContext("Software")] string Software;
};

Hopefully I have done something silly and this is easily resolved!!

If not, I have also been looking at exporting the lot and using a MIF file to pick it up. I have been able to use a VB script to export all the keys from under the 'CompanyName' but it is stored as a reg export format file and I cannot work out how to make it write to a MIF formatted file.

Any suggestions on either of the above options?


(in reply to jkovarik)
Post #: 4
RE: Using MOF to Extract ALL SubKeys? - 8/18/2008 5:55:24 AM   
skissinger


Posts: 2167
Score: 135
Joined: 9/13/2001
From: Sherry Kissinger
Status: offline
Since in your Regkey it's HKLM\Software\CompanyName\Software\<DifferentNameOfSoftware>

and in configuration.mof you have ClassContext("local|KEY_LOCAL_MACHINE\\Software\\CompanyName")

I'm going to guess you need to add the 2nd 'software', like:

ClassContext("local|HKEY_LOCAL_MACHINE\\Software\\CompanyName\\Software")

Try that; change it in configuration.mof; wait for the change to get to your MP, then several policy retrieval & evaluation actions at a client, waiting minutes or so between each one (so the client picks up & evaluates that changed policy), then try another Hinv.

(Edit: I'm also guessing that was just a typo in HKEY, if not... remember to add the H to HKEY_LOCAL_MACHINE)

< Message edited by skissinger -- 8/18/2008 5:57:31 AM >


_____________________________

mofmaster@smsexpert.com (version 2007) | http://www.smsexpert.com | http://www.sccmexpert.com
My Blog
Microsoft MVP - ConfigMgr

(in reply to jkovarik)
Post #: 5
RE: Using MOF to Extract ALL SubKeys? - 8/19/2008 9:34:39 PM   
jkovarik

 

Posts: 38
Score: 0
Joined: 6/6/2001
From: jarrod_kovarik@hotmail.com
Status: offline
Hmm, I've changed that to include the second 'Software' and it still does not appear to be working. I no longer get the error message which is a good thing!

Left it over night to ensure it was all updated and forced a MOFCOMP just to make sure!!

Inventory appears to run correctly but nothing is created in the DB. There is not even anything created in the GroupMap table so I am guessing that nothing is being sent to the DB. No errors can be seen in any of the logs and there are no bad MIFs being created.


(in reply to skissinger)
Post #: 6
RE: Using MOF to Extract ALL SubKeys? - 8/19/2008 10:08:18 PM   
gjones


Posts: 844
Score: 50
Joined: 6/5/2001
From: Ottawa, Ontario, Canada
Status: offline
Can you see the data within WMI on the site server? What about a client PC?

_____________________________

Garth@enhansoft.com

For a List of my Articles
http://www.myitforum.com/contrib/default.asp?cid=116
Blogs:
http://smsug.ca/blogs/garth_jones/default.aspx
http://myitforum.com/cs2/blogs/gjones/default.aspx


(in reply to jkovarik)
Post #: 7
RE: Using MOF to Extract ALL SubKeys? - 8/19/2008 10:11:05 PM   
jkovarik

 

Posts: 38
Score: 0
Joined: 6/6/2001
From: jarrod_kovarik@hotmail.com
Status: offline
The entry is in WMI, Win32Reg_WSOE, but none of the fields under either CIMV2 or CIMV2\SMS have any data.

(in reply to gjones)
Post #: 8
RE: Using MOF to Extract ALL SubKeys? - 8/19/2008 10:38:23 PM   
jkovarik

 

Posts: 38
Score: 0
Joined: 6/6/2001
From: jarrod_kovarik@hotmail.com
Status: offline
Should also note that I have followed the HINV process via the lgos and not seen any issues and have checked in the Resource Explorer and can see that the correct date and time have been set for the hardware scan so I know that the standard (and other modifications) information is being written abck correctly.

(in reply to jkovarik)
Post #: 9
RE: Using MOF to Extract ALL SubKeys? - 8/20/2008 12:12:36 AM   
jkovarik

 

Posts: 38
Score: 0
Joined: 6/6/2001
From: jarrod_kovarik@hotmail.com
Status: offline
Even if I cannot ype correctly!!

(in reply to jkovarik)
Post #: 10
RE: Using MOF to Extract ALL SubKeys? - 8/20/2008 2:33:25 AM   
jkovarik

 

Posts: 38
Score: 0
Joined: 6/6/2001
From: jarrod_kovarik@hotmail.com
Status: offline
I have also removed the second 'Software' again as I am trying to enumerate all the information under local|HKEY_LOCAL_MACHINE\\Software\\Company which would be all the WSOE information and I still receive no information.

I have looked at the 'Add Remove Programs' in the Config and SMS_DEF MOFs as it is very similar to what I am trying to retrieve. The only difference I can see is that in the DEF.MOF it defines the Namespace:

Namespace      ("\\\\\\\\localhost\\\\root\\\\cimv2")

And has the following lines which I do not know the meaning of: 

SMS_Context_1  ("__ProviderArchitecture=32|uint32"),
SMS_Context_2  ("__RequiredArchitecture=true|boolean")

< Message edited by jkovarik -- 8/20/2008 7:22:36 PM >

(in reply to skissinger)
Post #: 11
RE: Using MOF to Extract ALL SubKeys? - 8/20/2008 7:07:47 AM   
skissinger


Posts: 2167
Score: 135
Joined: 9/13/2001
From: Sherry Kissinger
Status: offline
can you send me your...

Mof edits as they stand now.
a sample reg export (if there is sensitive data inside, before you send it, change any serial numbers, etc).
I'll see if I can get it working in my lab.  Send it to mofmaster //at\\ smsexpert //dot// com

Since I won't have access to my lab until after work again, in your spare time if you think it looks like it should work, you could try cleaning the database of previous attempts, and letting a new Hinv re-create the tables/views and procedures.  Sometimes I've found that necessary--especially when I'm messing with something new/different than I've done before.  www.sccmexpert.com has "SiteSweeper" available for free, or there are manual steps at the bottom of this article.

_____________________________

mofmaster@smsexpert.com (version 2007) | http://www.smsexpert.com | http://www.sccmexpert.com
My Blog
Microsoft MVP - ConfigMgr

(in reply to jkovarik)
Post #: 12
RE: Using MOF to Extract ALL SubKeys? - 8/20/2008 8:24:39 AM   
gjones


Posts: 844
Score: 50
Joined: 6/5/2001
From: Ottawa, Ontario, Canada
Status: offline
That will be your problem, until there is data within WMI nothing will be sent to the SMS db.

_____________________________

Garth@enhansoft.com

For a List of my Articles
http://www.myitforum.com/contrib/default.asp?cid=116
Blogs:
http://smsug.ca/blogs/garth_jones/default.aspx
http://myitforum.com/cs2/blogs/gjones/default.aspx


(in reply to jkovarik)
Post #: 13
RE: Using MOF to Extract ALL SubKeys? - 8/20/2008 7:21:19 PM   
jkovarik

 

Posts: 38
Score: 0
Joined: 6/6/2001
From: jarrod_kovarik@hotmail.com
Status: offline
Hi Sherry, I've sent through the info as requested. Hopefully it is soemthing silly that I am missing and it is an easy fix!

Garth, I have looked at other similar entries, such as the Win32Reg_AddRemovePrograms that I ahve enabled and it is reporting data, but there is no data when I look at it in WBEMTest.

(in reply to gjones)
Post #: 14
RE: Using MOF to Extract ALL SubKeys? - 8/20/2008 9:26:51 PM   
skissinger


Posts: 2167
Score: 135
Joined: 9/13/2001
From: Sherry Kissinger
Status: offline
Hey Garth, I looked at his mof edits; what he wants is really a combination of static keys, and also some recursive entries.  So it has to be split up into two snippets.  He's going to test it and barring any spelling errors on my part, or missing ; or }; on my part (happens all the time to me *cough*), it'll be about 95% of what he needs.

_____________________________

mofmaster@smsexpert.com (version 2007) | http://www.smsexpert.com | http://www.sccmexpert.com
My Blog
Microsoft MVP - ConfigMgr

(in reply to jkovarik)
Post #: 15
RE: Using MOF to Extract ALL SubKeys? - 9/2/2008 12:54:39 AM   
jkovarik

 

Posts: 38
Score: 0
Joined: 6/6/2001
From: jarrod_kovarik@hotmail.com
Status: offline
Hi guys,

Cheers for all the support here. I was still having issues after the info that Sherry sent through so have been playing around and found that if I specify the '#pragma namespace' in the MOF I can run the query in WBEMTEST and receive the results that I am after. However, this does not work when running the inventory. In the inventoryagent.log I have the following:

Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, AnswerFile, AppNameAndVersion, Loan, Manufacturer, Name, PackageVersion, Version FROM Win32Reg_Company_Software; Timeout = 600 secs.

Unknown error encountered processing an instance of class Win32Reg_Company_Software: 80041017

If I just use WBEMTEST and query: SELECT __CLASS, __PATH, __RELPATH, AnswerFile, AppNameAndVersion, Loan, Manufacturer, Name, PackageVersion, Version FROM Win32Reg_Company_Software it returns the full results.

Any ideas?

< Message edited by jkovarik -- 9/2/2008 12:55:53 AM >

(in reply to skissinger)
Post #: 16
RE: Using MOF to Extract ALL SubKeys? - 9/2/2008 3:21:09 AM   
jkovarik

 

Posts: 38
Score: 0
Joined: 6/6/2001
From: jarrod_kovarik@hotmail.com
Status: offline
Have just been playing with straight WMI queries and this returns all the information that I am after so I can definitely say that it is being recorded by the changes in the MOF, just not being collected.....

strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2")
Set colItems = objWMIService.ExecQuery( _
  "SELECT * FROM Win32Reg_Company_Software",,48)
For Each objItem in colItems
Wscript.Echo "-----------------------------------"
Wscript.Echo "Win32Reg_Company_Software instance"
Wscript.Echo "-----------------------------------"
Wscript.Echo "AppNameAndVersion: " & objItem.AppNameAndVersion
Wscript.Echo "AnswerFile: " & objItem.AnswerFile
Wscript.Echo "Loan: " & objItem.Loan
Wscript.Echo "Manufacturer: " & objItem.Manufacturer
Wscript.Echo "Name: " & objItem.Name
Wscript.Echo "PackageVersion: " & objItem.PackageVersion
Wscript.Echo "Version: " & objItem.Version
Next

(in reply to jkovarik)
Post #: 17
RE: Using MOF to Extract ALL SubKeys? - 9/2/2008 6:04:53 AM   
skissinger


Posts: 2167
Score: 135
Joined: 9/13/2001
From: Sherry Kissinger
Status: offline
What does your mof snippet look like for that section?  I know I have it, but others might spot something I missed.

_____________________________

mofmaster@smsexpert.com (version 2007) | http://www.smsexpert.com | http://www.sccmexpert.com
My Blog
Microsoft MVP - ConfigMgr

(in reply to jkovarik)
Post #: 18
RE: Using MOF to Extract ALL SubKeys? - 9/2/2008 7:38:21 PM   
jkovarik

 

Posts: 38
Score: 0
Joined: 6/6/2001
From: jarrod_kovarik@hotmail.com
Status: offline
Configuration.mof:


#pragma namespace ("\\\\.\\root\\cimv2")
[Dynamic,
Provider("RegProv"),
ClassContext("local|HKEY_LOCAL_MACHINE\\Software\\Company\\SOFTWARE")]
class Win32Reg_Company_Software
{
[key]      string AppNameAndVersion;
[PropertyContext("AnswerFile")]   string AnswerFile;
[PropertyContext("Loan")]   string Loan;
[PropertyContext("Manufacturer")] string Manufacturer;
[PropertyContext("Name")]   string Name;
[PropertyContext("PackageVersion")] string PackageVersion;
[PropertyContext("Version")]  string Version;
};

SMS_DEF.MOF:

#pragma namespace ("\\\\.\\root\\cimv2\\sms")
[SMS_Report(TRUE),
SMS_Group_Name("Company_Software"),
SMS_Class_ID("CompanyCustom|Company_Software|1.0")
]
class Win32Reg_Company_Software : SMS_Class_Template
{
[SMS_Report(TRUE), Key] string AppNameAndVersion;
[SMS_Report(TRUE) ] string AnswerFile;
[SMS_Report(TRUE) ] string Loan;
[SMS_Report(TRUE) ] string Manufacturer;
[SMS_Report(TRUE) ] string Name;
[SMS_Report(TRUE) ] string PackageVersion;
[SMS_Report(TRUE) ] string Version;
};

< Message edited by jkovarik -- 9/2/2008 7:40:17 PM >

(in reply to skissinger)
Post #: 19
RE: Using MOF to Extract ALL SubKeys? - 9/2/2008 8:00:26 PM   
jkovarik

 

Posts: 38
Score: 0
Joined: 6/6/2001
From: jarrod_kovarik@hotmail.com
Status: offline
And just to clarify, here is a dump of the registry info that I am trying to get....

[HKEY_LOCAL_MACHINE\SOFTWARE\Company\SOFTWARE]
[HKEY_LOCAL_MACHINE\SOFTWARE\Company\SOFTWARE\AdobeFlashPlayer9_0_124_0]
"Loan"="False"
"Manufacturer"="Adobe"
"Name"="Flash Player"
"PackageVersion"="1.0"
"Version"="9.0.124.0"
"AnswerFile"="Company_install_flash_player_active_x.mst"
@=""
[HKEY_LOCAL_MACHINE\SOFTWARE\Company\SOFTWARE\AdobeReader8_1_2]
"Name"="Acrobat Reader"
"Manufacturer"="Adobe"
"AnswerFile"="AcroRead.mst"
"Version"="8.1.2"
"PackageVersion"="1.0"
"Loan"="False"
[HKEY_LOCAL_MACHINE\SOFTWARE\Company\SOFTWARE\HousatonicProjectViewer2007]
@=""
"Loan"="False"
"Manufacturer"="Housatonic"
"Name"="Project Viewer"
"PackageVersion"="1.0"
"Version"="2007"
"AnswerFile"="Company_Solo.mst"

(in reply to jkovarik)
Post #: 20
RE: Using MOF to Extract ALL SubKeys? - 9/3/2008 1:41:42 AM   
rolson


Posts: 79
Score: 4
Joined: 6/4/2001
Status: offline
I tested this MOF set based on your reg key dump and works perfectly.

//==================================================================
//      Register : Win32Reg_Company_Software
//==================================================================
#pragma namespace("
\\\\.\\root\\cimv2")
#pragma deleteclass("Win32Reg_Company_Software",NOFAIL)

[dynamic, provider("RegProv"),
ClassContext("Local|HKEY_LOCAL_MACHINE\\SOFTWARE\\Company\\SOFTWARE")]
Class Win32Reg_Company_Software
{
[key] string KeyName;
[PropertyContext("Loan")] string Loan;
[PropertyContext("Manufacturer")] string Manufacturer;
[PropertyContext("Name")] string Name;
[PropertyContext("PackageVersion")] string PackageVersion;
[PropertyContext("Version")] string Version;
[PropertyContext("AnswerFile")] string AnswerFile;
};



//==================================================================
//      REPORT : Win32Reg_Company_Software
//==================================================================
#pragma deleteclass("Win32Reg_Company_Software",NOFAIL)

[SMS_Report(TRUE), SMS_Group_Name("Company_Software"), SMS_Class_ID("CompanyCustom|Company_Software|1.0")]
class Win32Reg_Company_Software : SMS_Class_Template
{
[SMS_Report(TRUE), key] string KeyName;
[SMS_Report(TRUE)] string Loan;
[SMS_Report(TRUE)] string Manufacturer;
[SMS_Report(TRUE)] string Name;
[SMS_Report(TRUE)] string PackageVersion;
[SMS_Report(TRUE)] string Version;
[SMS_Report(TRUE)] string AnswerFile;
};



Thumbnail Image


Attachment (1)

< Message edited by rolson -- 9/3/2008 1:42:40 AM >


_____________________________

Rob Olson
rob@dudeworks.com
www.dudeworks.com/inventorymanager

(in reply to jkovarik)
Post #: 21
RE: Using MOF to Extract ALL SubKeys? - 9/3/2008 2:35:43 AM   
jkovarik

 

Posts: 38
Score: 0
Joined: 6/6/2001
From: jarrod_kovarik@hotmail.com
Status: offline
Cut and pasted, cleaned up the MOF files etc and I still get that error.

Will let it go over night and see how it looks in the morning.

(in reply to rolson)
Post #: 22
RE: Using MOF to Extract ALL SubKeys? - 9/3/2008 11:23:14 AM   
rolson


Posts: 79
Score: 4
Joined: 6/4/2001
Status: offline
Change the class name to something else, there must be something hung up from your prior testing possibly.

_____________________________

Rob Olson
rob@dudeworks.com
www.dudeworks.com/inventorymanager

(in reply to jkovarik)
Post #: 23
RE: Using MOF to Extract ALL SubKeys? - 9/3/2008 7:55:26 PM   
jkovarik

 

Posts: 38
Score: 0
Joined: 6/6/2001
From: jarrod_kovarik@hotmail.com
Status: offline
Yeah, tried that one.

I'm building up a couple more machines to stick in the test lab just in case it is something weird with the machine that I have been testing on.

Fingers crossed!!

(in reply to rolson)
Post #: 24
RE: Using MOF to Extract ALL SubKeys? - 9/4/2008 12:45:36 AM   
jkovarik

 

Posts: 38
Score: 0
Joined: 6/6/2001
From: jarrod_kovarik@hotmail.com
Status: offline
It is working on other machines so there is something dodgy with the original test machine.

Thank to all those that helped out - I owe you a few beers!

(in reply to jkovarik)
Post #: 25
Page:   [1]
All Forums >> [Management Products] >> System Center Products >> System Center Configuration Manager >> Using MOF to Extract ALL SubKeys? Page: [1]
Jump to:





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts



  
Forum Software © ASPPlayground.NET Advanced Edition 2.4.5 ANSI

0.406