SCCM 2012 "hardware inventory classes" for AppV?

Hi, I would like to get a better view what App-V application issue we have on App-V 4.6.2 in an usercentric deployment senrio
I also see that SCCM 2012 "hardware inventory classes" "Appv Client Applications" is not set and not all is activated under "Virtual Applications".
I also would like to our support to get an better view if an user call an say it dont get an App-V 4.62 required deployment.  
So what "hardware inventory classes" do I need to activate to get App-V deployment /and launch status.
/SaiTech

Are you saying the class exists in SCCM 2012 for you but not applied to all of your virtual applications or that there and can't be applied or that the option isn't in SCCM for you at all?
PLEASE MARK ANY ANSWERS TO HELP OTHERS Blog:
rorymon.com Twitter: @Rorymon

Similar Messages

  • SCCM 2012 Hardware Inventory - Custom Inventory Class ( to Include a registry information in to HW Inv)

    Hi,
     I am trying to include information from a registry into SCCM HW Inventory, I would need some help in extending the HW inventory.
    I have followed one of the blog which says that the change needs to be done on both Configuration.mof and also import the .mof in "Default Client Settings".
    In Microsoft documentation I see an option to just import a .mof file, I did follow the option of importing the .mof into HW inventory and it was imported without any error (I used a mofcomp -check to compile the code)
    Result:
    I see following errors in the InventoryAgent.log which are related to the class that I imported and the information or the fields are not yet available in the resource explorer
    =================================================
    Invalid Query for class abcd: 80041017, will retry to remove invalid properties
    Collection-Retry:Ignore invalid property DeviceType
    =================================================
    Reference I used :
    http://technet.microsoft.com/en-us/library/gg712290.aspx
    http://schadda.blogspot.com/2012/02/sccm-2012-customize-extend-hardware.html

    Just to add to John's comment, I did up a blog post on how to use Regkeytomof to.
    http://be.enhansoft.com/post/2014/02/13/How-to-Use-RegKeyToMof.aspx
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • SCCM 2012 hardware Inventory

    I want my
    Inventory for Printers and Scanner (USB or Network Model), network devices such as Switches and router and any devices attached to POS terminals such as PDT, Monitor, and Keyboard. Can SCCM 2012 R2 can do this.
    How to configure this feature if SCCM 2012 can do 
    Rgds, SSJE

    ConfigMgr can run a network discovery, however the information you will get back on the objects will be limited to IP address, hostname and mac address. Check in the discover methods in the Administation workspace.
    You can extend the hardware classes to gather more information on printers - some info here
    http://www.74k.org/find-printer-information-in-sccm-2012
    You already get monitor details in ConfigMgr. This blog gives you some info on how to get a little extra from the EDID data. http://exar.ch/collecting-monitor-serial-numbers-with-sccm/
    Cheers
    Paul | sccmentor.wordpress.com

  • SCCM 2012 - Hardware Inventory - Dynamic Registry Key Inventory

    Hi all,
    I am trying to inventory a set of registry values based upon a dynamic registry key. The  application is called ACME and different versions of it exist on all clients. For example:
    Some clients have:
    HKLM\Software\ACME\5.0.1
    While others have:
    HKLM\Software\ACME\5.0.2
    While others have:
    HKLM\Software\ACME\5.0.3
    The common denominator is that under the version key, all of the subkeys are consistent and the same.
    The two values I am looking for are "LastUser" and "LastExecuted" which reside under the version key.
    HKLM
    ------> Software
    --------------------> ACME
    ------------------------------>5.0.1
    --------------------------------------> LastUser & LastExecuted
    So i basically want to do a dynamic lookup for the first child key under "ACME".
    I have been using RegKeyToMOF but I am unable to get the data populated into the database. The configuration.mof file compiles successfully (as can be seen in dataldr.log).
    Below are the configs I am using. Can anyone shed some light as to why its not populating anything in the DB?
    #pragma namespace ("\\\\.\\root\\cimv2")
    #pragma deleteclass("ACME", NOFAIL)
    [dynamic, provider("RegProv"), ClassContext("Local|HKEY_LOCAL_MACHINE\\SOFTWARE\\ACME")]
    Class ACME
    [key] string KeyName;
    [PropertyContext("LastUser")] String LastUser;
    [PropertyContext("LastExecuted")] String LastExecuted;
    #pragma namespace ("\\\\.\\root\\cimv2\\SMS")
    #pragma deleteclass("ACME", NOFAIL)
    [SMS_Report(TRUE),SMS_Group_Name("ACME"),SMS_Class_ID("ACME")]
    Class ACME: SMS_Class_Template
    [SMS_Report(TRUE),key] string KeyName;
    [SMS_Report(TRUE)] String LastUser;
    [SMS_Report(TRUE)] String LastExecuted;
    From the client when it hits HINV cycle
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, KeyName, LastExecuted, LastUser FROM ACME; Timeout = 600 secs.
    TIA!

    You have to specify the full path in the MOF to collect the data. I have an example of how you can embed a WMI trigger and a vbscript into a MOF file that will populate any information you want from the registry into a cimv2 class, but that may actually
    be more than you really need. Why don't you just inventory each version? It is not as clean, but will be easier.
    example of Acme 5.0.1:
    #pragma namespace ("\\\\.\\root\\cimv2")
    #pragma deleteclass("ACME501", NOFAIL)
    [dynamic, provider("RegProv"), ClassContext("Local|HKEY_LOCAL_MACHINE\\SOFTWARE\\ACME\\5.0.1")]
    Class ACME501
    [key] string KeyName;
    [PropertyContext("LastUser")] String LastUser;
    [PropertyContext("LastExecuted")] String LastExecuted;

  • SCCM 2012 - Hardware Inventory Registry Import not working - Windows in the name of the Registry key

    I downloaded the Reg to MOF tool and compiled some of our custom Registry Keys which worked fine. There was particular Key that didn't work and after some testing and messing around I realized why it isn't working:
    The key I am using is: HKLM\Software\MyCompanyWindows
    Because the key has the name Windows in it, it fails to import. I get the generic check the formatting for your MOF file error.
    The MOF file you tried to import could not be compiled. Ensure that the MOF file contains valid data. You can use the command line mofcomp utility to test the data.
    But if I run a MOFCOMP against the MOF I am trying to import it checks the syntax successfully.
    If I change the key to MyCompanyWin or MyCompanyW it imports with no problem.
    We have rolled out this key to almost every device in our organization and connected it to other inventory agents so there is no possibility of changing the key.
    Is there any way to disable the validation check that SCCM is performing?

    Hi,
    If possible, could you please upload the MOF file to SkyDrive?
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Default Hardware Inventory Classes

    Does anyone know where I can find what default hardware inventory classes are set out of the box for SCCM 2012 R2? A vendor setup both our test and production systems and decided to select a bunch of classes (including all asset intelligence classes) based
    on his own opionion. I am trying to go back to scratch and then add only what we need.
    Thank you,

    I don't believe this exist. What make you think that they change it? What are you not getting that you want to get?
    Personally I would leave the defaults along and add those items that you want as extras.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Corrupted Hardware Inventory Classes

    I discovered this issue through another thread. Its now occurred in my environment on 3 occasions. Frustration is setting in, as we usually don't realize hardware inventory is failing until a week or more has passed. Is this a known bug? I'm debating on
    opening a case with MS but perhaps there is a better reporting method available.
    Problem:
    For whatever reason the defined hardware inventory classes in my workstation client policy get corrupted, breaking hardware and software inventory. When I open the defined hardware inventory classes in the console I receive the following:
    Error Text:
    ConfigMgr Error Object:
    instance of SMS_ExtendedStatus
    Description = "CSspInventoryReport::GetRealInstance: Failed to get item from database";
    ErrorCode = 2151811598;
    File = "e:\\qfe\\nts\\sms\\siteserver\\sdk_provider\\smsprov\\sspinventoryreport.cpp";
    Line = 627;
    Operation = "GetObject";
    ParameterInfo = "SMS_InventoryReport.InventoryReportID=\"{a8bfc190-b4a6-47c0-be52-abc1f634563c}\"";
    ProviderName = "ExtnProv";
    StatusCode = 2147749890;
    Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryException
    The SMS Provider reported an error.
    Stack Trace:
    at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlConnectionManager.GetInstance(String objectPath)
    at Microsoft.ConfigurationManagement.AdminConsole.Features.Common.ViewModelBase.GetInstance(String objectPath)
    at Microsoft.ConfigurationManagement.AdminConsole.ClientAgentSettings.HardwareInventoryClassesViewModel.InitializeInventoryReport(String inventoryReportID)
    at Microsoft.ConfigurationManagement.AdminConsole.ClientAgentSettings.HardwareInventoryClassesViewModel.InitializeInventoryClasses()
    System.Management.ManagementException
    Not found
    Stack Trace:
    at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlConnectionManager.GetInstance(String objectPath)
    at Microsoft.ConfigurationManagement.AdminConsole.Features.Common.ViewModelBase.GetInstance(String objectPath)
    at Microsoft.ConfigurationManagement.AdminConsole.ClientAgentSettings.HardwareInventoryClassesViewModel.InitializeInventoryReport(String inventoryReportID)
    at Microsoft.ConfigurationManagement.AdminConsole.ClientAgentSettings.HardwareInventoryClassesViewModel.InitializeInventoryClasses()

     
    Go read dataldr.log, perhaps there is a clue there: 
    http://myitforum.com/cs2/blogs/skissinger/archive/2011/08/03/configmgr2012beta2-hardware-inventory-set-classes-does-not-load.aspx
    Another potential thing... if someone/somehow changed configuration.mof, your backups are here:  Your Server installed location\data\hinvarchive  .  You may want to save off whatever is in there to a
    safe location elsewhere before you start troubleshooting--it may be as simply as restoring one of the archived configuration.mof files back into inboxes\clifiles.src\hinv --but don't just "do that"... read logs, etc.
    Standardize. Simplify. Automate.

  • Add Hardware Inventory Classes - ClientSDK

    Hi,
    I'm trying to add a new Hardware Class to SCCM 2012 but keep hitting an issue.
    The actual WMI class I'm trying to add is "CCM_Application" within "root\ccm\clientSDK".
    I can add the Hardware class by connecting to a remote client (via the connect option within the Add Hardware Classes) and it shows up in the inventory classes OK.
    But on updating the client machine policy, and start a Hardware Invetory action, the inventory fails with the following message in the InventoryAgent.log file:
    Collection: Namespace = root\ccm\clientSDK; Query = SELECT __CLASS, __PATH, __RELPATH, Id, IsMachineTarget, Revision, AllowedActions, ApplicabilityState, ConfigureState, ContentSize, Deadline, DeploymentReport, Description, EnforcePreference, ErrorCode,
    EstimatedInstallTime, EvaluationState, FileTypes, FullName, Icon, InformativeUrl, InProgressActions, InstallState, IsPreflightOnly, LastEvalTime, LastInstallTime, Name, NextUserScheduledTime, NotifyUser, OverrideServiceWindow, PercentComplete, Publisher, RebootOutsideServiceWindow,
    ReleaseDate, ResolvedState, SoftwareVersion, StartTime, SupersessionState, Type, UserUIExperience FROM CCM_Application; Timeout = 600 secs.
    Unknown error encountered processing an instance of class CCM_Application: 80041024
    If, on the client machine, I run the following command in PowerShell
    Get-WmiObject -ComputerName . -Namespace "root\ccm\clientSDK" -Query "select FullName from CCM_Application"
    I get the following error:
    Get-WmiObject : Provider is not capable of the attempted operation
    At line:1 char:1
    + Get-WmiObject -ComputerName . -Namespace "root\ccm\clientSDK" -Query "select Ful ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (:) [Get-WmiObject], ManagementException
        + FullyQualifiedErrorId : GetWMIManagementException,Microsoft.PowerShell.Commands.GetWmiObjectCommand
    But if I run the following command:
    Get-WmiObject -ComputerName . -Namespace "root\ccm\clientSDK" -Query "select * from CCM_Application" | Select FullName
    The results are returned OK.
    So it looks as though you cannot select instances but have to use select *
    The question I'm asking is that, is it possible to change the query used by SCCM so that select * is used instead of each instance?
    Thanks

    Although I agree with Jason it's a goofy request, here's a way to get some of the information back. You have to have two edits.
    Add this to the bottom of your Configuration.mof in inboxes\clifiles.src\hinv:
    [Union, ViewSources{"select * from CCM_Application"},ViewSpaces{"\\\\.\\root\\ccm\\clientsdk"}, dynamic,Provider("MS_VIEW_INSTANCE_PROVIDER")]
    class cm_ClientSDKCCMApplication
     [PropertySources{"Id"},key]     string Id;
     [PropertySources{"IsMachineTarget"},key]   boolean IsMachineTarget;
     [PropertySources{"Revision"},key]    string Revision;
     [PropertySources{"ApplicabilityState"}]  string ApplicabilityState;
     [PropertySources{"ErrorCode"}]    uint32 ErrorCode;
     [PropertySources{"FullName"}]    string FullName;
     [PropertySources{"LastEvalTime"}]    datetime LastEvalTime;
     [PropertySources{"LastInstallTime"}]    datetime LastInstallTime;
     [PropertySources{"StartTime"}]   datetime StartTime;
     [PropertySources{"UserUIExperience"}]   boolean UserUIExperience;
    In your Default Client Agent Settings, Hardware Inventory, delete whatever it is you have for this.  Save the below as "ImportThis.mof", and in Default Client Agent Settings, Hardware Inventory, Import... and import it.
    [ SMS_Report (FALSE),
      SMS_Group_Name ("ClientSDKApps"),
      SMS_Class_ID  ("ClientSDKApps"),
      SMS_Namespace (FALSE) ]
    class cm_ClientSDKCCMApplication : SMS_Class_Template
     [SMS_Report(TRUE),key]  string Id;
     [SMS_Report(TRUE),key]  boolean IsMachineTarget;
     [SMS_Report(TRUE),key]  string Revision;
     [SMS_Report(TRUE)    ]  string ApplicabilityState;
     [SMS_Report(TRUE)    ]  uint32 ErrorCode;
     [SMS_Report(TRUE)    ]  string FullName;
     [SMS_Report(TRUE)    ]  datetime LastEvalTime;
     [SMS_Report(TRUE)    ]  datetime LastInstallTime;
     [SMS_Report(TRUE)    ]  datetime StartTime;
     [SMS_Report(TRUE)    ]  boolean UserUIExperience;
    As always, monitor dataldr.log, machine policy refreshes on clients, and see what you get back. 
    Standardize. Simplify. Automate.

  • Configuration Manager 2012 - Hardware Inventory/Software Inventory insert into DB

    Hello,
    I have SCCM 2012 R2 with CU1, with multi site hierarchy. One stand alone primary site with few secondary sites beneath it.
    Recently have noticed an issue with a few (100+) clients that we have Inventory issues. Although I was trying to find out the solution on my one for some time now it seems that it is over my head. So decided to ask for a tip or advice.
    The issue is that for some reason 100 + clients do not update their Software/Hardware inventory. All clients are reporting well. The clients are sending the mif's back and they are being processed. The issue seems to be that for those 100 + the miff's
    cannot be imported into the SQL. I am receiving errorcode_4 issue. By the posts I have found it is supposed to be SQL error with data being truncated for pINSTALLED_SOFTWARE_DATA. Any Idea on how to approach this.
    I have tried reconfiguring Software/Hardware policies, reinstalling clients. Nothing helps. I have also tried to locate the installed app/software on the machines but no luck.
    All Ideas on this are welcome.
    Regards, Luka

    Hello Torsten,
    I have traced down the error to this event in the dataldr.log. I believe this is my actual issue. After this event there are plenty delta mismatches, which make sense as full inventory for machines cannot be imported. 
    Begin transaction: Machine=RADO7(GUID:8DC6F66B-4D54-4184-8AFE-8FBA9A47CF95) SMS_INVENTORY_DATA_LOADER 7/30/2014 12:56:50 PM 3484 (0x0D9C)
    *** [22001][8152][Microsoft][SQL Server Native Client 11.0][SQL Server]String or binary data would be truncated. : pINSTALLED_SOFTWARE_DATA SMS_INVENTORY_DATA_LOADER 7/30/2014 12:56:50 PM 3484 (0x0D9C)
    ERROR - SQL Error in SMS_INVENTORY_DATA_LOADER 7/30/2014 12:56:51 PM 3484 (0x0D9C)
    ERROR - is NOT retyrable. SMS_INVENTORY_DATA_LOADER 7/30/2014 12:56:51 PM 3484 (0x0D9C)
    Rollback transaction: Machine=RADO7(GUID:8DC6F66B-4D54-4184-8AFE-8FBA9A47CF95) SMS_INVENTORY_DATA_LOADER 7/30/2014 12:56:51 PM 3484 (0x0D9C)
    Cannot process MIF XH1MDK5IG.MIF, moving it to D:\Microsoft Configuration Manager\inboxes\auth\dataldr.box\BADMIFS\ErrorCode_4\ej0ybj1m.MIF SMS_INVENTORY_DATA_LOADER 7/30/2014 12:56:52 PM 3484 (0x0D9C)
    STATMSG: ID=2703 SEV=W LEV=M SOURCE="SMS Server" COMP="SMS_INVENTORY_DATA_LOADER" SYS=SEYC-CCM-SIP1.EYC.COM SITE=EY1 PID=5436 TID=3484 GMTDATE=Wed Jul 30 10:56:52.451 2014 ISTR0="XH1MDK5IG.MIF" ISTR1="D:\Microsoft Configuration Manager\inboxes\auth\dataldr.box\BADMIFS\ErrorCode_4\ej0ybj1m.MIF"
    ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0 SMS_INVENTORY_DATA_LOADER 7/30/2014 12:56:52 PM 3484 (0x0D9C)
    Done: Machine=RADO7(GUID:8DC6F66B-4D54-4184-8AFE-8FBA9A47CF95) code=4 (3312 stored procs in XH1MDK5IG.MIF) SMS_INVENTORY_DATA_LOADER 7/30/2014 12:56:52 PM 3484 (0x0D9C)
    Regards, Luka

  • SCCM 2012 - Software Inventory Timeout

    Hi,
    I'm currently using SCCM 2012 R2 in my environment and we are inventorying PST files on our Server collection.  The PST Software Inventory job is timing out after 4 hours on some of the servers, which leads to incomplete reporting.  I believe the
    timeout is occurring due to a large number of compressed files and folders within the directory structure on the servers that are experiencing the issue.  We are unable to disable compression on these files and folders.  We are also unable to specify
    individual paths for scanning as we are trying to discover all PST files on our network.
    My questions:  Is there a way to increase the timeout settings of the Software Inventory job or is there a different workaround for the above?  Is there a way to increase the local cpu priority for the Software Inventory job?
    Regards,
    Joe Coviello

    It's not timing out due to the compressed folders, it's timing out due to the shear number of overall files that on on your file servers.
    No, there is no supported way to increase the timeout.
    For file servers, ConfigMgr is not the tool of choice -- you should be using FSRM or something similar.
    Jason | http://blog.configmgrftw.com

  • SCCM 2012 Software Update Management for Windows Servers and how to automatic set SCOM maintenance mode?

    Hi,
    We planning to go one level higher to automat and have more dynamic Software Update Management for Windows Servers. We have SCCM 2012 R2, SCOM 2012 R2 and SCO 2012 R2.
    Our plan is to pur server in an AD-Group to get Update Schedule, from the servers will be importet to an Collection for Automatic Update and reboot. If I understand Everything right SCOM can't read AD-Group and put then in an Schedule maintenance mode. SCOM
    can read reg value as exempel.
    IS there any smar way to make the SCOM Maintenance Mode Schedule dynamic?
    I found this
    http://www.scom2k7.com/scom-2012-maintenance-mode-scheduler/?
    /SaiTech

    You could use Orchestrator to put the servers from a specific collection, or AD group, in maintenance mode in SCOM. For an example see:
    http://www.systemcentercentral.com/orchestrator-how-to-scom-maintenance-mode-for-windows-computers-in-an-sccm-collection/
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • SCCM 2012 NO SP - Reporting for application deployments not up to date

    Hello, 
    We have a problem when deploying applications with our SCCM 2012 NO SP.
    The reports for the application deployments and sup deployment are not up to date.
    The applications have been deployed on the clients but the information is not in sccm servers. 
    The reporting for the package deployment are working correctly.
    Do you have an idea ?
    Thanks

    Hi,
    How are things going? Please let us know if there is any progress.
    Regards.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • SCCM 2012 - 802.1x authentication for zero touch installation

    Hi guys,
    I'm setting up a demo environment for sccm 2012. Our customer has the requirement to enforce 802.1x authentication (username & password without certificates) on the network. So I need a 802.1x integration into the WinPE image, that clients can access
    the install vlan instead of the guest vlan during the zero touch Windows 7 OS install process.
    What I did before:
     - mount the SCCM modified WinPE image (boot.XXX99999.wim)
     - integration of the KB972831 hotfix into the WinPE
     - creation of a lan profile and eap profile file
     - copy both files into the mounted image
     - creation of new wim file
    I've booted the boot wim via a usb stick to test the 802.1x integration with the following commands:
      net start dot3svc
      => The Wired AutoConfig service was started successfully
      netsh lan add profile filename="X:\8021x\Local Area Connection.xml " interface="Local Area Connection"
      => The profile was added successfully on the interface Local Area connection
     netsh lan set eapuserdata filename=x:\8021x\Wired-WinPE-UserData-PEAP-MSChapv2.xml allusers=yes interface="Local Area Connection"
      => Error setting user data for interface Local Area Connection. The operation is not supported.
    Actually I can't post web links here. If the files are needed I can send them per mail.
    What can I do to solve this problem?
    Thanks!
    Regards
    Bastian

    Hi!
    Did you gave a look at this website: http://myitforum.com/cs2/blogs/lakey81/archive/2011/07/06/configuring-802-1x-network-authentication-for-winpe-3-0-and-configmgr-deployments.aspx
    I've followed those steps and it worked as a charm, even for WinPE 4.0.
    If you have questions let me know.
    Cheers.

  • SCCM 2012 Compliance 7 Customize for Total Updates Needed

    I can't find single report in SCCM 2012 that lists the total count of updates needed for each computer. This really irks me and many others as this and similar info was readily available with the old WSUS console. It also takes a lot more
    clicks to get the same info in SCCM (if SCCM even has it) as it did in WSUS. Anyway, I've decided to try to customize an existing report. I made a copy of "Compliance 7 - Computers in a specific compliance state for an update group (secondary)".
    Try as I might, I can't get the query to work right to create a field for number of updates required for each computer. I'd really like columns for Failed/Needed/Applied but I'll start with just Needed. Why they got rid of this in SCCM reporting baffles me.
    I have several SQL queries that pull this info for needed patches when run in Management Studio but I can't get them to work in a SCCM Report. Does anyone know how to do this?
    Ben JohnsonWY

    I'm looking at Compliance 1, 5, and 7. The closest to what I want is Compliance 7 but with a new column for "Required Updates". I have that column made but it's not populated. I have a "Required Updates" Dataset now inside this custom
    report. BUT the row of info in the table (computer name, last logon, etc) only lets you select fields from Dataset0. Where I'm stuck is how get to the "Required_Updates" field from the "Required Updates" dataset to appear in Dataset0.
    I've spent a big chunk of time trying to get the code from the two queries merged but I can't get it to work. The other option is to somehow get the field to appear in the row's field selection list (ie, read field from both datasets).
    Oh, and when I followed your steps above, I got the report created but it throws and "error during processing" error when I run it.
    Ben JohnsonWY

  • SCCM 2012 SP1 and SCEP for Mac

    Hello all,
    We have SCCM 2012 SP1 with SECP installed and working well for Windows clients.
    A request came to me that we have the roughly 10ct Mac computers protected by EndPoint and reporting through SCCM.
    Is this possible with what I have now? 
    Please let me know if you have any clues for me.
    Many thanks!

    Hi,
    There is no way to push the SCCM MAC Client to a MAC Computer, you have to install it manually, threre are scripts available on blogs that can assits but still you have to run those scripts manually as well.
    The System Center Endpoint Protection client for MAC is indeed a separate download on the volume licensing site, it is not managed through SCCM it is a standalone antivirus software which download it's defenition files directly from the internet. So there
    is now way to manage it centrally.
    I hope that answered your questions.
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

Maybe you are looking for

  • How do I convert a pdf to a fillable word document

    I am having difficulty converting a pdf to fillable word document.  The fonts change from line to line and it isn't lining up.

  • Delete records on basis of primary key.

    HI all, I need an ODI code so that i Should delete the record from target table on the basis of primay key with the reference of I$ table. for example .. T is target table & I$T is IKm table. T has primary key P and I$t is also primay key. So catuall

  • Messages goes into scheduled status in adapter engine

    Hi all we are doing idoc to file scenario with direct mapping. the messages are getting processed in integration engine sucessfully. the messages are getting into scheduled status in the adapter engine even when there is less load in the server. Thii

  • Extractor for FLEET table

    I need to extract some fields from the table FLEET, does any of you know if there's already a standard extractor for that? Otherwise I may need to enhance an existing one or create my own. If so, can you suggest any ideas about how to link the data?

  • VAT calculated differently

    Hi All, In MC$4 the PO value is value is coming as zero. Please guide me how to bring the actual PO value in MC$4 report. Thanks in advance Pavan