P@docIT Posted October 29, 2015 Report post Posted October 29, 2015 Oh man the new query is much better as it picks up all machines. My previous query was only picking up machines that had VSE installed this shows the status of all machines and teh NULL fields show as n/a. Perfect. Thanks again for all of your help. I picked up a tremendous amount of knowledge in our two days together. Quote Share this post Link to post Share on other sites More sharing options...
GarthMJ Posted October 29, 2015 Report post Posted October 29, 2015 Not a dumb question at all because I believe that was it. So now that i'm aware of the DB drop down I think my focus was on that drop down when I attempted to scroll in another window, inadvertantly changing the DB. I use this trick. http://www.enhansoft.com/blog/invalid-object-name-in-sql-server-management-studio-ssms ;-) Quote Share this post Link to post Share on other sites More sharing options...
P@docIT Posted October 30, 2015 Report post Posted October 30, 2015 Thanks. Made that change so that won't happen again. Hopefully last question. I need some MOF help. So I added the McAfee mof using Sherry K.'s steps in this post http://www.myitforum.com/forums/Mcafee-mof-beginner-issues-m242989.aspx. The issue is that is only looking for HKEY_LOCAL_MACHINE\\SOFTWARE\\Network Associates\\ePolicy Orchestrator\\Application Plugins I need to add HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Network Associates\\ePolicy Orchestrator\\Application Plugins Just now sure how to add, do i need to add a new section to the mof or can I just add a second ClassContext? EDIT: I added a second [dynamic, ... section to the "McAfee ePO Plugins Enumeration" section. Do i need to do anything after editing the config.mof to get that change to take effect? EDIT2: That seemed to do the trick. Report running perfectly. Thanks again. //-------------------------------------------- // Mcafee ePO Plugins Enumeration //-------------------------------------------- #pragma namespace ("\\\\.\\root\\cimv2") #pragma deleteclass("Win32Reg_Mcafee_ePO_Plugins", NOFAIL) [dynamic, provider("RegProv"), ClassContext("local|HKEY_LOCAL_MACHINE\\SOFTWARE\\Network Associates\\ePolicy Orchestrator\\Application Plugins") ] class Win32Reg_Mcafee_ePO_Plugins { [PropertyContext("Software ID"), key] string SoftwareID; [PropertyContext("Version")] string Version; [PropertyContext("Product Name")] string ProductName; [PropertyContext("Plugin Path")] string PluginPath; [PropertyContext("Uninstall Command")] string UninstallCommand; [PropertyContext("Install Path")] string InstallPath; [PropertyContext("Installed Path")] string InstalledPath; [PropertyContext("HotFixVersions")] string HotFixVersions; [PropertyContext("HotFixInstallDate")] string HotFixInstallDate; [PropertyContext("DatInstallDate")] string DatInstallDate; [PropertyContext("DatVersion") ] string DatVersion; }; [dynamic, provider("RegProv"), ClassContext("local|HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Network Associates\\ePolicy Orchestrator\\Application Plugins") ] class Win32Reg_Mcafee_ePO_Plugins { [PropertyContext("Software ID"), key] string SoftwareID; [PropertyContext("Version")] string Version; [PropertyContext("Product Name")] string ProductName; [PropertyContext("Plugin Path")] string PluginPath; [PropertyContext("Uninstall Command")] string UninstallCommand; [PropertyContext("Install Path")] string InstallPath; [PropertyContext("Installed Path")] string InstalledPath; [PropertyContext("HotFixVersions")] string HotFixVersions; [PropertyContext("HotFixInstallDate")] string HotFixInstallDate; [PropertyContext("DatInstallDate")] string DatInstallDate; [PropertyContext("DatVersion") ] string DatVersion; }; #pragma namespace ("\\\\.\\root\\cimv2") Quote Share this post Link to post Share on other sites More sharing options...