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

Similar Messages

  • 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

  • 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 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.

  • 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 Report - Select by Collection ID or Name

    I am trying to get my custom report to prompt for Collection ID or Name. I have the following so far but this brings out all device hardware with a client, I need to be able to select all the data below but only for Devices in a collection:
    SELECT distinct
    CS.Manufacturer0 as 'Manufacturer',
    CS.Model0 as 'Computer Model',
    CASE
    WHEN ES.ChassisTypes0 in ('1') THEN 'Other'
    WHEN ES.ChassisTypes0 in ('2') THEN 'Unknown'
    WHEN ES.ChassisTypes0 in ('3') THEN 'Desktop'
    WHEN ES.ChassisTypes0 in ('4') THEN 'Low Profile Desktop'
    WHEN ES.ChassisTypes0 in ('5') THEN 'Pizza Box'
    WHEN ES.ChassisTypes0 in ('6') THEN 'Mini Tower'
    WHEN ES.ChassisTypes0 in ('7') THEN 'Tower'
    WHEN ES.ChassisTypes0 in ('8') THEN 'Portable'
    WHEN ES.ChassisTypes0 in ('9') THEN 'Laptop'
    WHEN ES.ChassisTypes0 in ('10') THEN 'Notebook'
    WHEN ES.ChassisTypes0 in ('11') THEN 'Hand Held'
    WHEN ES.ChassisTypes0 in ('12') THEN 'Docking Station'
    WHEN ES.ChassisTypes0 in ('13') THEN 'All in One'
    WHEN ES.ChassisTypes0 in ('14') THEN 'Sub Notebook'
    WHEN ES.ChassisTypes0 in ('15') THEN 'Space-Saving'
    WHEN ES.ChassisTypes0 in ('16') THEN 'Lunch Box'
    WHEN ES.ChassisTypes0 in ('17') THEN 'Main System Chassis'
    WHEN ES.ChassisTypes0 in ('18') THEN 'Expansion Chassis'
    WHEN ES.ChassisTypes0 in ('19') THEN 'SubChassis'
    WHEN ES.ChassisTypes0 in ('20') THEN 'Bus Expansion Chassis'
    WHEN ES.ChassisTypes0 in ('21') THEN 'Peripheral Chassis'
    WHEN ES.ChassisTypes0 in ('22') THEN 'Storage Chassis'
    WHEN ES.ChassisTypes0 in ('23') THEN 'Rack Mount Chassis'
    WHEN ES.ChassisTypes0 in ('24') THEN 'Sealed-Case PC'
    END as 'Chassis Type',
    BIOS.SerialNumber0 as 'Bios serial',
    BIOS.ReleaseDate0 as 'Bios Date',
    CS.name0 as 'Computer Name',
    RAM.TotalPhysicalMemory0 as 'Total Memory',
    sum(isnull(LDisk.Size0,'0')) as 'Hardrive Size',
    OS.Caption0 as 'OS',
    CSDVersion0 as 'Service Pack',
    CS.UserName0 as 'User',
    CS.domain0 as 'Domain',
    CPU.Name0 AS 'Processor',
    COUNT(CPU.ResourceID) AS 'Number of CPUs',
    CPU.NumberOfCores0 AS 'Number of Cores per CPU',
    CPU.NumberOfLogicalProcessors0 AS 'Logical CPU Count'
    from
    v_GS_COMPUTER_SYSTEM CS right join v_GS_PC_BIOS BIOS on BIOS.ResourceID = CS.ResourceID
    right join v_GS_SYSTEM SYS on SYS.ResourceID = CS.ResourceID
    right join v_GS_OPERATING_SYSTEM OS on OS.ResourceID = CS.ResourceID
    right join v_GS_Processor CPU on CPU.ResourceID = CS.ResourceID
    right join V_GS_X86_PC_MEMORY RAM on RAM.ResourceID = CS.ResourceID
    right join v_GS_Logical_Disk LDisk on LDisk.ResourceID = CS.ResourceID
    INNER JOIN dbo.v_GS_SYSTEM_ENCLOSURE ES on SYS.ResourceID = ES.ResourceID
    where
    LDisk.DriveType0 =3
    group by
    CS.Manufacturer0,
    CS.Model0,
    ChassisTypes0,
    BIOS.SerialNumber0,
    BIOS.ReleaseDate0,
    CS.Name0,
    RAM.TotalPhysicalMemory0,
    OS.Caption0,
    CSDVersion0,
    CS.Username0,
    CS.domain0,
    CPU.Name0,
    CPU.NumberOfCores0,
    CPU.NumberOfLogicalProcessors0

    This is what I have so far DataSet1
    SELECT distinct
    CS.Manufacturer0 as 'Manufacturer',
    CS.Model0 as 'Computer Model',
    CASE
    WHEN ES.ChassisTypes0 in ('1') THEN 'Other'
    WHEN ES.ChassisTypes0 in ('2') THEN 'Unknown'
    WHEN ES.ChassisTypes0 in ('3') THEN 'Desktop'
    WHEN ES.ChassisTypes0 in ('4') THEN 'Low Profile Desktop'
    WHEN ES.ChassisTypes0 in ('5') THEN 'Pizza Box'
    WHEN ES.ChassisTypes0 in ('6') THEN 'Mini Tower'
    WHEN ES.ChassisTypes0 in ('7') THEN 'Tower'
    WHEN ES.ChassisTypes0 in ('8') THEN 'Portable'
    WHEN ES.ChassisTypes0 in ('9') THEN 'Laptop'
    WHEN ES.ChassisTypes0 in ('10') THEN 'Notebook'
    WHEN ES.ChassisTypes0 in ('11') THEN 'Hand Held'
    WHEN ES.ChassisTypes0 in ('12') THEN 'Docking Station'
    WHEN ES.ChassisTypes0 in ('13') THEN 'All in One'
    WHEN ES.ChassisTypes0 in ('14') THEN 'Sub Notebook'
    WHEN ES.ChassisTypes0 in ('15') THEN 'Space-Saving'
    WHEN ES.ChassisTypes0 in ('16') THEN 'Lunch Box'
    WHEN ES.ChassisTypes0 in ('17') THEN 'Main System Chassis'
    WHEN ES.ChassisTypes0 in ('18') THEN 'Expansion Chassis'
    WHEN ES.ChassisTypes0 in ('19') THEN 'SubChassis'
    WHEN ES.ChassisTypes0 in ('20') THEN 'Bus Expansion Chassis'
    WHEN ES.ChassisTypes0 in ('21') THEN 'Peripheral Chassis'
    WHEN ES.ChassisTypes0 in ('22') THEN 'Storage Chassis'
    WHEN ES.ChassisTypes0 in ('23') THEN 'Rack Mount Chassis'
    WHEN ES.ChassisTypes0 in ('24') THEN 'Sealed-Case PC'
    END as 'Chassis Type',
    BIOS.SerialNumber0 as 'Bios serial',
    BIOS.ReleaseDate0 as 'Bios Date',
    CS.name0 as 'Computer Name',
    RAM.TotalPhysicalMemory0 as 'Total Memory',
    sum(isnull(LDisk.Size0,'0')) as 'Hardrive Size',
    OS.Caption0 as 'OS',
    CSDVersion0 as 'Service Pack',
    CS.UserName0 as 'User',
    CS.domain0 as 'Domain',
    CPU.Name0 AS 'Processor',
    COUNT(CPU.ResourceID) AS 'Number of CPUs',
    CPU.NumberOfCores0 AS 'Number of Cores per CPU',
    CPU.NumberOfLogicalProcessors0 AS 'Logical CPU Count'
    from
    v_GS_COMPUTER_SYSTEM CS right join v_GS_PC_BIOS BIOS on BIOS.ResourceID = CS.ResourceID
    right join v_GS_SYSTEM SYS on SYS.ResourceID = CS.ResourceID
    right join v_GS_OPERATING_SYSTEM OS on OS.ResourceID = CS.ResourceID
    right join v_GS_Processor CPU on CPU.ResourceID = CS.ResourceID
    right join V_GS_X86_PC_MEMORY RAM on RAM.ResourceID = CS.ResourceID
    right join v_GS_Logical_Disk LDisk on LDisk.ResourceID = CS.ResourceID
    INNER JOIN dbo.v_GS_SYSTEM_ENCLOSURE ES on SYS.ResourceID = ES.ResourceID
    JOIN v_FullCollectionMembership fcm on fcm.resourceid=v_r_system.resourceid
    WHERE fcm.Collectionid= @CollectionID
    group by
    CS.Manufacturer0,
    CS.Model0,
    ChassisTypes0,
    BIOS.SerialNumber0,
    BIOS.ReleaseDate0,
    CS.Name0,
    RAM.TotalPhysicalMemory0,
    OS.Caption0,
    CSDVersion0,
    CS.Username0,
    CS.domain0,
    CPU.Name0,
    CPU.NumberOfCores0,
    CPU.NumberOfLogicalProcessors0
    Then DataSet2 is
    select CollectionID, Name from v_Collection Order by Name
    But when I run it I get this error:
    For more information about this error navigate to the report server on the local server machine, or enable remote errors
    Query execution failed for dataset 'DataSet1'. (rsErrorExecutingCommand)
    An error has occurred during report processing. (rsProcessingAborted)
    Thanks so far,  still plugging away.

  • Task sequencing with SCCM 2012 - Importing a custom start screen layout

    Thanks

    I think you would have a better chance of getting an answer in the SCCM forums, as this question seems like it is leaning more towards a configuration in SCCm, and not a specific issue with Powershell.
    If you find that my post has answered your question, please mark it as the answer. If you find my post to be helpful in anyway, please click vote as helpful.
    Don't Retire Technet

  • [SCCM 2012 R2] How to speed up refreshing of Client Activity Information

    Hi All,
    How to force update from real HW inventory information in Database to Client Activity Status (Hardware Inventory)?
    Thank you in advance.
    Regards,

    I created a [semi-automated] script that reads All System Collection and I want to find out what computers never done HW inventory and what computers did not report HW inventory for more than 60 days.
    I have a workaround creating separate collections for this script but I want to solve this in easiest way.
    Additionally missing of proper/real HW Inventory information in SCCM console is misleading new SCCM admins.
    Regards,

  • SCCM 2012: Asset Intelligence inventory of App-V application?

    SCCM 2012 Sp1: Asset Intelligence inventory of App-V application?
    I do see App-V applikations in AI reports, but somtimes they missing and only MSI apps are showed. In a step to find the reason reason is ther any prerequsite for the client, like minimum build for App-V 4.6 or somthing else? 
    /SaiTech

    Since no one has answer this post, I recommend opening  a support case with CSS as they can work with you to solve this problem.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Accounting for customer inventory in SAP

    Hello Experts
    Here is a scenario with which i need some help.
    We sell products to various customers. Consider an example product - say ABC. The product ABC is sold to multiple retail customers. To improve our forecasting and planning accuracy we need to keep track of inventory of ABC that is available at our company premises as well as at the customers premises. We also have to distinguish the customers inventory from our inventory . While running MRP inventory at customer premises should also be taken into account .
    i have to set up something similar to example below in SAP
    product ABC - our locations  ---  total availability  1000 CS
    product ABC - customer location - total availability  500 CS (customer would send us inventory data via EDI )
    We have to distingusih our inventory from customer inventory (customer inventory will obviously not be available to promise to other customers). While running MRP the total stock available should be 1500 CS .
    How can i setup the above scenario ? I went through a lot of documentation and forum posts but did not get a clear understanding . Can you please help .
    Thanks
    Aparna

    Hi,
    In continuation to my answer , sap has given beautiful explanation for this .
    http://help.sap.com/saphelp_470/helpdata/en/dd/55ffe4545a11d1a7020000e829fd11/frameset.htm
    Regards,

  • SCCM 2012 OSD: Import computer object fails

    Hi,
    Please see this post:
    http://social.technet.microsoft.com/Forums/en-US/6dbd2b38-4dbb-4de3-bb25-e3a30813f108/importing-computer-fails-unable-to-save-changes?forum=configmanagerosd
    We have exactly the same issue: we cannot import a computer object due to the error "Unable to save changes", a query which searches for mac-addresses doesn't reveal the pc-name (which is logic because the sccm 2012 should run an inventory first
    but the pc is not loaded).
    Please advise.
    J.
    Jan Hoedt

    Any chance that the object (where you are trying to add a MAC address) was added to the database by AD group discovery? So the name is already in the database? If so: that's expected.
    If not: CU1 for R2 might fix the problem (it is listed as being fixed)
    Torsten Meringer | http://www.mssccmfaq.de

  • SCCM 2012 Disk Space

    Hi
    I prepare to migrate SCCM 2007 to SCCM 2012, i create one server "stand -alone" (SCCM 2012), i have around 8000 clients.
    On SCCM 2007:
    Drive C: 60 Go
    Drive E:  SMSPKGE$ = 300 Go, SMSPKG = 250 Go. (Sources another server).
    Did i forget something when calculating disk space?
    Thanks

    My plan for a new server (4 vCPU, 32 Go RAM, C: 800 Go) just C: drive because SQL 2012 and sources packages on another server (source don't move), on C: drive install only OS and SCCM 2012?
    Hi,
    Your disk space is enough.
    There is a blog talks about SCCM 2012 hardware requirements. You could have a look.
    Configuration Manager 2012 Sizing considerations
    http://blogs.msdn.com/b/scstr/archive/2012/05/31/configuration_2d00_manager_2d00_2012_2d00_sizing_2d00_considerations.aspx
    Best Regards,
    Joyce
    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 - Component Status

    Hi Experts,
    I need your kind advice,
    In SCCM 2012 console under monitoring - component status - SMS_SITE_SQL_BACKUP_XXXXXXX for primary site server is in failed status and there is no status message logged. Is there any way we can make this component healthy.
    Since the site server backup is not happening atall and i have tried all the steps. Please help
    Log from SMS_bkp
    Volume D:\ (that contains the file(s)) is marked as a candidate for snapshot.  $$<SMS_SITE_BACKUP><11-28-2013 17:03:57.539+00><thread=8248 (0x2038)>
    Component 6 - SCWBackup\SiteDBServer\SMSbkSQLSiteDB.dat.  $$<SMS_SITE_BACKUP><11-28-2013 17:03:57.540+00><thread=8248 (0x2038)>
    Dependency On SQL Writer , LogicalPath:\\DSQLSTPV01\DSQLSTPV01\SCCMINS, ComponentName:CM_SCW  $$<SMS_SITE_BACKUP><11-28-2013 17:03:57.542+00><thread=8248 (0x2038)>
    After GatherWriterMetadata SMS Writer status = STABLE.  $$<SMS_SITE_BACKUP><11-28-2013 17:03:57.708+00><thread=8248 (0x2038)>
    ~Info: Sending message to start the SQL Backup...  $$<SMS_SITE_BACKUP><11-28-2013 17:03:57.710+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed yet. Waiting 30 minutes for it to abort before starting another backup.  $$<SMS_SITE_BACKUP><11-28-2013 17:03:57.872+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:03:57.899+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:04:57.933+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:05:57.972+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:06:58.010+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:07:58.044+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:08:58.085+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:09:58.129+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:10:58.167+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:11:58.214+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:12:58.245+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:13:58.281+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:14:58.310+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:15:58.349+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:16:58.376+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:17:58.413+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:18:58.450+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:19:58.487+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:20:58.518+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:21:58.582+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:22:58.612+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:23:58.658+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:24:58.702+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:25:58.743+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:26:58.777+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:27:58.820+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:28:58.916+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:29:58.985+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:30:59.026+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:31:59.072+00><thread=8248 (0x2038)>
    Previous SQL backup was not aborted or completed. Sleeping for 60 seconds...  $$<SMS_SITE_BACKUP><11-28-2013 17:32:59.112+00><thread=8248 (0x2038)>
    SQL Backup did not complete or abort. You must wait till the backup is completed or aborted before you can start off another backup.   $$<SMS_SITE_BACKUP><11-28-2013 17:33:59.117+00><thread=8248 (0x2038)>
    STATMSG: ID=5051 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_SITE_BACKUP" SYS=DCMPSTPV01.devswad.net SITE=SCW PID=9020 TID=8248 GMTDATE=Thu Nov 28 17:33:59.119 2013 ISTR0="" ISTR1="" ISTR2="" ISTR3=""
    ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0  $$<SMS_SITE_BACKUP><11-28-2013 17:33:59.250+00><thread=8248 (0x2038)>
    Error: Failed to send start message to the SqlBackup.  $$<SMS_SITE_BACKUP><11-28-2013 17:33:59.259+00><thread=8248 (0x2038)>
    SMS_SITE_BACKUP failed. Please see previous errors.  $$<SMS_SITE_BACKUP><11-28-2013 17:33:59.260+00><thread=8248 (0x2038)>
    STATMSG: ID=5060 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_SITE_BACKUP" SYS=DCMPSTPV01.devswad.net SITE=SCW PID=9020 TID=8248 GMTDATE=Thu Nov 28 17:33:59.261 2013 ISTR0="Error: Failed to send start message to the SqlBackup." ISTR1=""
    ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0  $$<SMS_SITE_BACKUP><11-28-2013 17:33:59.261+00><thread=8248 (0x2038)>
    SMS_SITE_BACKUP service is stopping.  $$<SMS_SITE_BACKUP><11-28-2013 17:33:59.264+00><thread=8248 (0x2038)>
    Regards, Pratap

    Hi,
    Have you seen this blog?
    http://vasanthsccm.wordpress.com/2012/10/09/sccm-2012-site-backup-issue/
    Note: Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    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 Linux agent fails on 32-bit athlon processor

    Hello,
    We recently tried to install the SCCM client on the Linux server -
    Red Hat Enterprise Linux Server release 5.10 (Tikanga). It is a VM server on HP Server.
    As soon as we run the install, we see the following error -
    The OS/Version/Architecture of this archive file does not match this system, exiting...
    Are there any issues of installing the client on 32-bit athlon processor? Or any other options?
    Thanks for your help in advance.

    Hi,
    Please review the link below, here is a useful article for you.
    How to Install SCCM 2012 Linux Unix client
    http://theitrabbithole.blogspot.in/2013/06/how-to-install-sccm-2012-linux-unix.html
    Note: Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    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.

Maybe you are looking for

  • How do I remove images from aperture?

    Totally new to apple and aperture so I apologise if this seems like a somewhat noob question but how do I remove images from aperture (using the latest version, 3.4.1)? Coming from a PC and using lightroom I'm used to being able to remove images in t

  • Trouble connecting a monitor/pr​oject hp pavilion dv6

    Cant get display on both screens.  Initially screen shrank on connecting monitor but have fixed this by changing the resolution.  Have selected Duplicate on both screens in the "connect to a projector" but sill blank on the monitor.  Compure is recog

  • HP Pavilion 23 All-in-One PC will not turn on

    Was away this weekend, before leaving on Friday I updated my computer and then shut it down. When I returned today it will not turn on. I have disconnected it and reconnected everything and still no luck. It was plugged into a sugre protector but no

  • Integrate B1 with R/3

    Hi all, is there any way to integrate B1 to R/3? thanks in advance. suresh.g

  • Problem with iWeb asking for username and password to access my public site

    Today for some reason anyone trying to access my site is being asked for username and password. I have made no changes that would require a password. My site has always been public.