omangon
Posts: 6
Score: 0 Joined: 8/8/2008 Status: offline
|
Hello The sollution in your articles is not working in my environnment (Windows 2008 64 Bits) But i'have found the tricky things, i would like to add to your wiki the following things: In a 64 bits environnments, the default request must be focus in the architecture where the Key or Classes exists by adding the following syntaxe in a classes in the sms_def.mof: For 32 bits Value to retrieve [SMS_Report(TRUE), SMS_Group_Name("YourGroup"), SMS_Context_1 ("__ProviderArchitecture=32|uint32"), SMS_Context_2 ("__RequiredArchitecture=true|boolean"), SMS_Class_ID("MICROSOFT|YourClass|1.5")] For 64 bits to retrieve [SMS_Report(TRUE), SMS_Group_Name("YourGroup"), SMS_Context_1 ("__ProviderArchitecture=64|uint32"), SMS_Context_2 ("__RequiredArchitecture=true|boolean"), SMS_Class_ID("MICROSOFT|YourClass|1.5")] In general you have to declare 2 times your classes, so they can be esxecute on 32bits and 64 bits environnments. Thanks again for your articles they show me the path. I have something special how to retrieve the contents of a Sub registry key when we don't know the value and contents. Here an example: HKLM\SOFTWARE\MYKEY Inside this key you have multiple value string that are not known before so what i want is the contents of MYKEY.
|