WMI Objects Created By FEP But Not SCEP

We're moving from FEP to SCEP (2012 R2) in a server environment.  Manual install using scepinstall.exe (v4.5.216.0), configuation via GPOs, monitoring via SCOM.  No SCCM.
I've found that the following WMI objects, which are created when FEP is installed, are not created when SCEP is installed:
 * Root\Microsoft\PolicyPlatform namespace
 * Root\Microsoft\PolicyPlatform\WindowsFirewallConfiguration namespace (of course)
 * FirewallState class in Root\Microsoft\SecurityClient
The MOF files which define these objects were installed by SCEP to C:\Program Files\Microsoft Security Client, and manually compiling them via mofcomp.exe appears to work fine.  Bug?  By design?  Am I missing something?
(The WMI objects are retained on a FEP-to-SCEP "upgrade."  It's only for newly built systems which have only had SCEP installed that the WMI objects are missing.)
Thanks,
Mark

In the SMSSETUP\CLIENT\<arch> folder on the SCCM 2012 R2 media, there's a WindowsFirewallConfigurationProvider.msi.  The MSI installs to "C:\Program Files\Windows Firewall Configuration Provider" and contains the same FirewallConfiguration*.mof
files as "C:\Program Files\Security Client."  Just with slightly different names and one or two minor textual differences.  It also contains a version of WindowsFirewallConfigurationProvider.dll which is older than the one (currently)
in C:\Program Files\Security Client.  Doesn't make a lot of sense to me.
Mark

Similar Messages

  • Detected use of SPRequest for previously closed SPWeb object. Please close SPWeb objects when you are done with all objects obtained from them, but not before.

    I have develop a custom solution for SharePoint Foundation 2010 that provide PDF documents filled with lists data and attachemnts.
    If the Customer run the solution to get the PDF we found in the ULS log following entry:
    03/07/2014 12:07:20.69  w3wp.exe (0x0B10) 0x18EC 
    SharePoint Foundation General                        90hv Unexpected 
    Detected use of SPRequest for previously closed SPWeb object.  Please close SPWeb objects when you are done with all objects obtained from them, but not before.  Stack trace:    at Microsoft.SharePoint.Utilities.SPUtility.GetLocalizedString(String
    source, String defaultResourceFile, UInt32 language)     at Microsoft.SharePoint.SPFieldCollection.get_DisplayNameDict()     at Microsoft.SharePoint.SPFieldCollection.GetFieldByDisplayName(String strDisplayName, Boolean
    bThrowException)     at Microsoft.SharePoint.SPFieldCollection.GetField(String strName, Boolean bThrowException)     at Microsoft.SharePoint.SPListItem.GetValue(String strName, Boolean bThrowException)    
    at Microsoft.SharePoint.SPListItem.get_Item(String fieldName)    
    at ECM_PDF_Excel.ListClicked.GetECOs(Dictionary`2 searchedEC... e918ecd4-7ed6-44bb-9e4f-d764586a2f79 ...RECONumber)    
    at ECM_PDF_Excel.PDF.Create()     at ECM_PDF_Excel.Layouts.ECM_PDF_Excel.ECMPDFExcel.ProcessRequest(HttpContext context)     at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)     at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error)     at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext
    context, AsyncCallback cb)     at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr
    managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 f... e918ecd4-7ed6-44bb-9e4f-d764586a2f79
    03/07/2014 12:07:20.69* w3wp.exe (0x0B10)                        0x18EC SharePoint Foundation        
     General                        90hv Unexpected ...lags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr
    managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32
    flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)   e918ecd4-7ed6-44bb-9e4f-d764586a2f79
    We check the method
            /// <summary>
            /// Returns the ECOs in a Dictionary: ECO Number, Suffix
            /// </summary>
            /// <param name="searchedECRECONumber">Dictionary, with the search ECR/ECO Number</param>
            /// <returns>Dictionary ECO Number, Suffix</returns>
            public static Dictionary<string, string> GetECOs(Dictionary<String, String> searchedECRECONumber)
                SPSite siteContx = SPContext.Current.Site;
                SPWeb webContx = siteContx.RootWeb;
                Dictionary<string, string> listECOs = new Dictionary<string, string>();
                string ecoNumber = string.Empty;
                string ecoSuffix = string.Empty;
                if (searchedECRECONumber.ContainsKey(ConstantData.listClickedECONumberDictionary))
                    ecoNumber = searchedECRECONumber[ConstantData.listClickedECONumberDictionary];
                else
                    return listECOs;
                // Ich suche die ECO Nummber bei gegebener ECR Nummer
                // Ich brauche den Listen Namen der in den Spalten Realtion ECR Number & Realtion ECO Number einen Wert hat
                SPList dataList = webContx.Lists.TryGetList(ConstantData.listName_ECMExcelTemplateDataLists);
                if (dataList != null)
                    SPListItemCollection dataListItems = webContx.Lists.TryGetList(ConstantData.listName_ECMExcelTemplateDataLists).Items;
                    foreach (SPItem dataListItem in dataListItems)
                        Object relationECRColumnName = (String)dataListItem[ConstantData.listFieldName_ECMExcelTemplateDataLists_RelationECRNumber];
                        Object relationECOColumnName = (String)dataListItem[ConstantData.listFieldName_ECMExcelTemplateDataLists_RelationECONumber];
                        if (relationECRColumnName != null && relationECOColumnName != null)
                            // Ich habe den Listennamen gefunden in dem Spalten Realtion ECR Number & Realtion ECO Number einen Wert haben
                            string searchedListName = (String)dataListItem[ConstantData.listFieldName_ECMExcelTemplateDataLists_Title];
                            string searchedECOSuffixColumnName = (String)dataListItem[ConstantData.listFieldName_ECMExcelTemplateDataLists_RelationECONumber];
                            // Get the List from variable listName
                            listECOs = GetECOsDictionary(searchedListName, searchedECOSuffixColumnName, ecoNumber, relationECOColumnName);
                return listECOs;
    - What take we wrong?
    - How can we avoid this message?
    Regards
    Jonnyenglisch
    Ralf Happe - Christobal Colón N° 1 ES 07670 Portocolom Tel.: +34 6961 0375 7 @: [email protected] Skype: ralfhappe msm: [email protected] www.ralfhappe.com ralfhappe | soluciónes

    Here the code of GetECOsDictionary:
             /// <summary>
            /// Fill the dicionary with related ECO Numbers/Suffix
            /// </summary>
            /// <param name="searchedListName">String: the name of the list</param>
            /// <param name="ecoNumber">String: the ECO Number</param>
            /// <param name="relationECOColumnName"></param>
            /// <returns>Dictionary</returns>
            private static Dictionary<string, string> GetECOsDictionary(string searchedListName, string ecoNumber, Object relationECOColumnName)
                SPSite siteContx = SPContext.Current.Site;
                SPWeb webContx = siteContx.RootWeb;
                Dictionary<string, string> listECOs = new Dictionary<string, string>();
                SPQuery oQuery = new SPQuery();
                oQuery.Query = "<OrderBy>" +
                                    "<FieldRef Name='" + "Title" + "' Ascending='TRUE'></FieldRef>"
    +
                                "</OrderBy>" +
                                "<Where><BeginsWith>" +
                                    "<FieldRef Name='" + "Title" + "'/>" +
                                    "<Value Type='Text'>" + ecoNumber + "</Value>" +
                                "</BeginsWith></Where>";
                SPListItemCollection searchedListItems = webContx.Lists.TryGetList(searchedListName).GetItems(oQuery);
                foreach (SPItem searchedListItem in searchedListItems)
                    // Wenn die geclickte ECO Nummer gleich der Listen ECO Nummer ist dann setze die gefundene ECO Nummer
                    string foundECONumber = (String)searchedListItem[relationECOColumnName.ToString()];
                    string[] splitECONumber = foundECONumber.Split(ConstantData.splitBy_Slash);
                    if (ecoNumber == splitECONumber[0])
                        ecoNumber = splitECONumber[0];
                        if (splitECONumber.Count() == 1)
                            listECOs.Add(foundECONumber, "0");
                        if (splitECONumber.Count() > 1)
                            listECOs.Add(foundECONumber, splitECONumber[1]);
                return listECOs;
    Ralf Happe - Christobal Colón N° 1 ES 07670 Portocolom Tel.: +34 6961 0375 7 @: [email protected] Skype: ralfhappe msm: [email protected] www.ralfhappe.com ralfhappe | soluciónes

  • Contact persons which are created in ECC but not replicated as  employee

    Dear Experts,
    Where can i find the contact persons which are created in ECC but not replicated as  employee in the CRM.
    For example i created the 10000 personal no in that 800 should replicate to the CRM from  ECC but only 600 is replicated and  remaining 200 i have to find in the ECC to replicate again running PFAL.
    If i have to down lode and compare in excel please provide the details. in which tables i have to down load in ECC and CRM which what input.
    Best Regards,
    Siva Anjith

    Dear Gurus,
    Can you please help to resolve my replication issue.
    Best Regards,
    Siva Anjith

  • How to use the dll  created by c++ but not write a jni wrapper around

    how to use the dll created by c++ but not write a jni wrapper around through a java program. now I can't access that dll like this directly from java.

    Your question is unclear. (You haven't said what dll you are talking about.)
    But:
    If you are talking about an existing dll, then the only alternative to writing a wrapper is to use one of the wrapper generators floating around. Do a search on JACE.
    If you are talking about a dll you are writing, then run jah and get the interface to match java right away; then you won't have to write a wrapper.

  • Objects Exist in Prod but not in Dev - how to Delete?

    Hi All,
    I have recently taken over a system and I am doing some clean up of process chains which are failing and not needed anymore.
    I have noticed that there are objects like DTP and Transformation in Production for an Infocube in-active in production that have a different technical name in the Development environment.
    When I activate the objects in Dev and transport them through it does not work as presumably the objects have different technical names, my transport seems to do nothing.
    I am now looking at deleting the objects from production and then transporting through new Active DTP and Transformation so that both systems are in Sync but because the objects are in prod and not in Dev I cannot delete them with a trasnport.
    Same with my Process chain it is in production and I want to delete it but when I delete it in Dev and transport through to prod it does not delete.
    Help please

    Hi,
    For deleting DTP :
    Execute the RSBKDTPDELETE report. As of NW 7.0 Support Package 08, this report exists in your system, before this, you must use Transaction SE38 to create it and copy the program text from the correction instructions. The report requests the ID of the DTP that is to be deleted.
    Caution: You should execute the report only if you cannot delete a DTP using the normal procedure. The report does not check whether the DTP may be deleted, for example if this DTP has already been used to load delta requests and if a deletion would invalidate the delta administration.
    For deleting ProcessChain :
    For deleting process chain, we will have access in the system. If not, tey to transport the chain again.
    Deleting process chain is not an issue i guess.
    Hope this helps.
    Thanks and Regards,
    Srinath.

  • Active Directory User which can Create a User but not Allowed to Enable Disabled Users

    Hi Guys, we have a requirement to create a User Group in Active Directory which will grant its members permission to 'Create Users' but not be allowed to 'Enable' 'Disabled Users'.
    We have tried delegating control and assigning permissions by going to 'Security Tab>Advanced'.
    It seems like when a group is granted permission to create users, it will also be allowed to enable, disabled users.
    Kindly advise if it is possible to create a user group with permissions to 'Create Users' but not be allowed to 'Enable', 'Disabled Users'.

    Hi,
    According to my experience, you can assign permission with create/delete user objects. If you want to disable/enbale
    a user, you must be a member of the Account Operators group, Domain Admins group, or the Enterprise Admins group in Active Directory, or you must have been delegated the appropriate authority.
    In general, if you just give a user group the permission to create user objects, it cannot disable or enable user accounts. Please make sure that the permission you assigned is correct and the
    user group are not the member of Account Operators group, Domain Admins group, or the Enterprise Admins group in Active Directory.
    Best regards,
    Susie

  • How can I create a pdf but not have it open in acrobat afterwards

    I want to be able to create a pdf file but not have it open up in acrobat after it is created.
    I am doing this in an Access application that outputs a report to a pdf and then faxes that pdf to a fax number associated with that report.  It might loop thru several hundred reports so I don't want to have close several hundred pdfs manually, plus I doubt my computer could even handle that many opened pdf files.  Is there someway of configuring acrobat so that it won't open after a pdf is created?
    Thank you
    Ben Tolsky

    Using VBA I open up a report and then use the following code:
    DoCmd.OutputTo acOutputReport, RptName, acFormatPDF, strFile, 0
    RptName is the name of the report
    strFile is C:\Reports\test.pdf
    It creates the pdf no problem, its just that it opens it up afterwards.  I would like it to not open up the pdf in acrobat because I want to loop thru several hunderd reports and fax them to different numbers.

  • Why does Adobe Reader 9.5.0 open pdf created by Excel, but not with Reader X.

    We have a number of pdf's that open 100% with Adobe Reader 9.5.0, but not with Reader X.
    On Reader X, the message “A Number is out of range” is shown and the image is corrupted.
    The image was created using “File SaveAs PDF” from Excel (Office 2007), with “Standard” optimization.
    For interest, if the same “File SaveAs PDF”  from Excel (Office 2007) is used, but with “Minimum Size” optimization set, then the resulting pdf opens perfectly with both Reader 9 & X.
    Distressing that a new version does not work where previous version did.

    HI
    Sorry, my first time posting and I don’t seem to be able to attach the problem pdf to my posting.
    Example of problem file attached. Opens in 9.5.0 but not X
    Regards
    Colin

  • Project files creating dup assets (but not imported via scan)

    I've looked at these two threads: http://discussions.apple.com/thread.jspa?messageID=9147105#9147105
    and
    http://discussions.apple.com/thread.jspa?messageID=9096958&#9096958
    which sort of address my question.
    I do not import media via scan. I am attempting to import project files with associated media. I import a project file and it imports the media assets as well. Here's the problem. When I then go and import another project file with many of the same assets, FCSvr creates duplicate assets, but only if I import the second project file soon after the first. I waited a week and tried it, and no duplicate assets were created. I have setup periodic scans on my Library Device which is an EIP device and which is where I'm sending the files that get imported. The scans are setup to run every 10 mins or so but don't seem to have an effect. So why does this work if I wait more than a day or so and can I manually kick off the scan or whatever process I need to setup so that I avoid getting duplicate assets.
    Again, I don't want to originally import the media via scan of an EIP device b/c I want to do set some metadata fields on multiple assets but not all assets in the project.
    I'm really just curious what process it is that tells FCSvr that these assets already exist in the db and filesystem and how I can manually kick it off.
    Any enlightenment would be great.
    Thanks.
    H.

    You probably have a full scan running overnight, which is what is catching all the media. The add only scan you have running every 10 minutes only get new media that is written to the EIP device.
    If that doesn't seem to address your question, then try rephrasing it. It's difficult to understand from your explanation what you have running where, and what you're uploading where.

  • Playlist created in iPad but not showing on iPhone?

    I have had iTunes Match for couple years now and no issues till today -- purchased a new tune on iPad and then created a new playlist with new song and others already purchased - the new song shows up on iPhone, but not the newly created playlist ? It is only on my iPad where I created it ??

    Welcome to the Apple Community.
    You can re-download content purchased from the app store using the purchased option which is revealed by tapping the updates option at the bottom of the screen of the App store app on your iOS device.

  • Trying to print an object at all pages but not last

    Hi.
    I'm trying to print an object (a square ) at all pages but not printing at last. I try to use "All But Last Page" at "Print Object On" property of field but this is not ok.
    Tried to get value of any function like SRW.GET_PAGE_NUM to find the last page indicator, but I think this doesn't exist.
    Any idea will be apreciated.
    Thanks.

    Hope this helps.
    It's all about anchors. Objects cannot have a property of Print Object On "Last Page" or "All but last page" if their Base Printing On property is "Enclosing Object". In order for it to work, you should anchor the fields or frames you want displayed on "all but the last page" to the main frame which holds the Repeating frame of the detail section of your report. Then, you should set the Base Printing On property to "Anchoring Object" and now you're ready to use the "All but last page" and "Last Page" options on Print Object On property.
    -vcastane.mx

  • Purchase Requisition Is Being Getting Created In APO But not being publishe

    On doing, SNP Location Heuristics on  one of our item, purchase requisition is being getting created in APO (We are able to see the same in RRP3) but the same is not being getting published in ECC. On doing CCR of the said location - product combination, it is showing Error u201C182u201D. We have checked the following parameters :-
    Item is an APO Item i.e. X0.
    It is having a proper Purchasing Group.
    As This be a purchase item. So, it is having a valid single Purchase Info Record.
    Item Has Not Been Blocked At Any Level.
    Vendor From Whom This Item is being getting procured is also open (Not Blocked).
    Please suggest what else to be checked  and what else can be the reason for non-flowing of purchase requisition from APO to ECC.
    Thanks & Best Regards,
    Sanjeev Chugh

    Hi Sanjeev,
    Please check change pointers if any and send them to ECC. Check the order in the planning book whether it has picked the same source for which there is a Purchase info record. If these all are fine then You send them to ECC from the CCR then check the log in ECC through CFG1 tcode.
    Regards,
    Kishore k Reddy

  • Doc is created frm BAPI_DOCUMENT_CREATE2 but not visible in CV02N

    Hi Everyone,
    I have created document through BAPI_DOCUMENT_CREATE2 and given the input values as below
    DOCUMENTDATA:
            DOCUMENTTYPE-                   DES
    DOCUMENTDESCRIPTIONS:
            LANGUAGE -                      EN
            DESCRIPTION  -                  TESTING FROM BAPI
    OBJECTLINKS:
            OBJECTTYPE  -                  MARA
            OBJECTKEY   -                   1000 MILES
    DOCUMENTFILE:
            WSAPPLICATION -                 TXT
            DOCPATH -                           C:\USERS\V-KISHRK\DESKTOP
            DOCFILE -                               WSDL.TXT
    when i executed the function it returns Document number and other details, but when i check in CV01N with that document number
    it showing error like data is not exsists.
    DOCPATH and  DOCFILE  are from my desktop(local mechine).
    Please tell me what input values i need to give.
    Thanks,
    Kishore

    Yes,
    COMMIT WORK  is important.
    But the path should end with "\"
    Are you using parameter  pf_ftp_dest ?
    When working from local machine it should be: 'SAPFTP'
    When the application server shoul pull the document apply 'SAPFTPA' and place original in a share the application server can reach.
    Regards
    Daniel K.

  • Help -- Trying to create JAR file but not working

    Hi everyone
    I have created a rather noddy Java program that consists of 4 JComboBox's and 1 JButton on a JFrame.
    When the button is clicked a text file is generate with the options that have been selected.
    There are severial files that the program uses for this:
    gcc.java
    OutToFile.java
    gccConfirm.java
    MyNewWindow.java
    main.java
    I am using Jcreator and so must use the command line to create the Jar file.
    I have never done a jar file before so I did an example with a hello world program and got it working now problem. I did the same for this program and the JAR file is generated without error. I double click on the JAR file to run the application, but nothing happens. I can see the application running in memory but nothing loads on the screen. However if I run it from the command line using Java -jar gcc.jar then everything is ok.
    can anyone help me here?
    thanks in advance

    If you run you .jar from the command line (a shell in unix speak) there
    already is a console where your java program can send it's System.out
    stuff. Right click on your .jar and select 'properties' (or similar). Note
    that your .jar is run by 'javaw'. This executable is similar to the 'java'
    executable except that it doesn't open a console for you. Change the
    'javaw' command to 'java' and voila, there's your console again.
    kind regards,
    Jos

  • Sh.Cart created from PR - but not visible in SOCO(MaterialsHas MRPview)

    Hi,
    We are in SRM 7.0 Classic scenario - EhP4 - Using ECC-PI-SRM route to transfer docs.
    When a PR is created with materials which has MRP1 view with MRP Type value 'ND - no mrp' .... transfered to central system - Shopping cart is getting created. Issue is : this Shopping cart is not displayed in Assign sources of Supply(SOCO) screen.
    Shopping carts with PR's containing materials without MRP view are displayed in Assign Sources of supply(SOCO) screen.
    We are creating RFx from Assign sources of supply screen by selecting the Shopping carts .
    Pls suggest as how to make the "Shopping carts from PRs having materials with MRP view" available in SOCO.
    Thanks,
    Ashwin.

    This is little work around FM  BBP_PDH_DB_DIRECT_UPDATE By using this FM you can can forcely send them to cockpit. but SAP has to do automatically .
    Create ONE oss message under SRM-EBP-EXR
    It may not happen due to your master data as you expected. let us wait for SAP reply ..
    Question:
    Why has my shopping cart not come to the Sourcing Cockpit ?
    Answer:
    Whether or not a shopping cart/external requirement goes to the Sourcing cockpit depends on the customizing SPRO settings  for Define Product Categories for Sourcing (see attachment).
    Here there are the following options:
    Sourcing Always carried out
    Sourcing Never carried out
    Sourcing carried out for items withour Assd Source of supply
    Aut. creation of Bid Inv for items w/o source of supply
    Aut. Grouping. Sourcing for items withour source
    Aut. Grouping, sourcing is never carried out
    Aut. Grouping, and creation of Bid Inv w/o source
    The technical field to check is : BBP_PDIGP-SOURCE_REL_IND

Maybe you are looking for

  • Second HD installation snag

    I'm about to install a second hard drive (as slave) to my G4 and before I do I have a very simple question: How do I mount the drive using the "original screws" if I'm not replacing it but simply adding on to what already exists? No screws came with

  • How do you make the smallest pdf from InDesign CS4 but retain some sharpness?

    I have a 2 page brochure, front and back with layered photoshop files and when I make the small pdf I need to make a 100kb file like a client has done in the past. The smallest I can make the pdf file is 460kb.  It will not go smaller no matter what

  • Explanation of Restore File?

    Boy, its been weird around here the last few days. Complaints about typical problems with new products are now being taken to the nth degree. I sure hope everyone gets good news no matter which way it goes for them and things return to a little more

  • Regarding displaying unicode

    Hello javaGurus! <Please Help me regarding displaying unicode> I am new to javaInternationalization, Till now i studies. Java Internationalization tutorial at http://java.sun.com/docs/books/tutorial/i18n/index.html and understand basic Structure. I h

  • Why can't I download photos marked as NSMenultem into iPhoto?

    Why can't I download photos marked as NSMenultem into iPhoto?