Jump to content


Moto

Established Members
  • Posts

    5
  • Joined

  • Last visited

  • Days Won

    1

Moto last won the day on July 5 2012

Moto had the most liked content!

Recent Profile Visitors

663 profile views

Moto's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Good Day. Need some advice, i have SCCM 2012 R2 in production and there is one question. We have standart report in SCCM - "All inventoried files on a specific computer", in Client settings turned on inventarisation of "exe" files, it is working - everythig fine. Now i want to know who install the specific soft. The first idea - in NTFS there is such property as "Owner" and now question - how i could transfer this property to SCCM DB is there some way? Any ideas please...
  2. I dont know why SCCM decieded that this UIDs are the same but i resolved my issue. 1. NBS_LookupDevice NBS_LookupDevice The line On xref.machineid = aux.itemkey and aux.smbios_guid0 = @smsbios_guid To On xref.machineid = aux.itemkey and aux.smbios_guid0 = @smsbios_guid + '.' 2. Now in SCCM 2012 there is special procedure NBS_LookupPXEDevice, same changes: NBS_LookupPXEDevice The line On xref.machineid = aux.itemkey and aux.smbios_guid0 = @smsbios_guid To On xref.machineid = aux.itemkey and aux.smbios_guid0 = @smsbios_guid + '.' 3. In MP_GetClientIDFromSmbiosID procedure in SCCM 2012 there is only first part of conditions we must change it: MP_GetClientIDFromSmbiosID The line Where (m.smbios_guid0 = @vchsmbiosid) and (isnull(m.obsolete0,0) != 1) To Where (m.smbios_guid0 = @vchsmbiosid + '.') and (isnull(m.obsolete0,0) != 1) ] Hope it would be usefull for somebody!
  3. i`ve discovered one strange thing smspxe.log shows me: ItemKey="16778194" when i am looking in "All Systems" collection i could find PC with the same ResourceID, very strange. On my problem PC when i am trying to boot it shows me: MAC: 00-25-22-47-80-87 GUID: 00020003-0004-0005-0006-000700080009 and the PC in SCCM with the same ResourceID: MAC: 00-19-66-79-87-62 BIOS GUID: 03000200-0004-0005-0006-000700080009 GIUDs are very similar, but they are different. I`ve tried to implement "How to enable OSD with duplicate UUID in Configuration Manager" article but it is written for SCCM 2007 and in SCCM 2012 procedure "MP_GetClientIDFromSmbiosID" is different and this article didnot helps me... so i still dont know what to do...
  4. Good day, another problem i`ve couldnot handle. SCCM OS Deployment is working, on all new PCs in my company i could install OS from SCCM, but with one PC there is some trouble. One client PC couldnot get OS Deployment, couldnot PXE boot: PXE Boot aborted. Booting to next device... SMSPxe.log shows nothing critical (in my opinion) here it is: Set media certificate in transport SMSPXE 05.07.2012 9:50:21 3604 (0x0E14) Set authenticator in transport SMSPXE 05.07.2012 9:50:21 3604 (0x0E14) Set authenticator in transport SMSPXE 05.07.2012 9:50:21 3604 (0x0E14) Client lookup reply: <ClientIDReply><Identification Unknown="0" ItemKey="16778194" ServerName="" ServerRemoteName=""><Machine><ClientID/><NetbiosName/></Machine></Identification></ClientIDReply> SMSPXE 05.07.2012 9:50:21 3604 (0x0E14) PXE::CBootImageManager::FindMatchingArchitectureBootImage SMSPXE 05.07.2012 9:50:21 3604 (0x0E14) Set media certificate in transport SMSPXE 05.07.2012 9:50:21 3604 (0x0E14) Set authenticator in transport SMSPXE 05.07.2012 9:50:21 3604 (0x0E14) Set authenticator in transport SMSPXE 05.07.2012 9:50:21 3604 (0x0E14) Client boot action reply: <ClientIDReply><Identification Unknown="0" ItemKey="16778194" ServerName="" ServerRemoteName=""><Machine><ClientID/><NetbiosName/></Machine></Identification><PXEBootAction LastPXEAdvertisementID="" LastPXEAdvertisementTime="" OfferID="" OfferIDTime="" PkgID="" PackageVersion="" PackagePath="" BootImageID="" Mandatory=""/></ClientIDReply> SMSPXE 05.07.2012 9:50:22 3604 (0x0E14) Client Identity: {F8E4FD58-48B3-4C2C-A9D3-160585678EB7} SMSPXE 05.07.2012 9:50:22 3604 (0x0E14) Set media certificate in transport SMSPXE 05.07.2012 9:50:22 3604 (0x0E14) Set authenticator in transport SMSPXE 05.07.2012 9:50:22 3604 (0x0E14) Set authenticator in transport SMSPXE 05.07.2012 9:50:22 3604 (0x0E14) PXE::CBootImageManager::FindMatchingArchitectureBootImage SMSPXE 05.07.2012 9:50:22 3604 (0x0E14) PXE::CNotifyTimer::TimerSignalFunc SMSPXE 05.07.2012 9:52:58 3044 (0x0BE4) PXE::CNotifyTimer::ProcessTimer SMSPXE 05.07.2012 9:52:58 3044 (0x0BE4) PXE::CBootImageManager::PerformMaintenenceTasks SMSPXE 05.07.2012 9:52:58 3044 (0x0BE4) PXE::CBootImageManager::PurgeOldImages SMSPXE 05.07.2012 9:52:58 3044 (0x0BE4) PXE::CNotifyTimer::Init SMSPXE 05.07.2012 9:52:58 3044 (0x0BE4) PXE::CNotifyTimer::CancelTimer SMSPXE 05.07.2012 9:52:58 3044 (0x0BE4) PXE::CNotifyTimer::RegisterTimeout SMSPXE 05.07.2012 9:52:58 3044 (0x0BE4) What i`ve already tried: 1. Restart WDS on SCCM 2. Reboot server SCCM 3. Clear last PXE advertisement 4. Checked in SCCM DB there is no PCs with the same MAC 5. Checked in SCCM DB there is no PCs with the same BIOS GUID So for now i dont know what to do, what else shold i try or where to look? Thank you.
  5. Good Day. Please help me i am going crazy... I Have SCCM 2007 R3 and FEP 2010 Installed. On the teast client i couldnot receive any updates for FEP client. 1. I`ve maded two Deployment packages: - FEP Def Updates Deployment Package - Summer Time KB (2633952) Deployment Package 2. Started this two packegs to deploy - Deploy Updates. 3. On client computer KB 2633952 was installed and FEP still couldnot receive definition updates. FEP client was distributed from SCCM and FEP client receives the FEP policy. Troubleshooting: on SCCM: 1. After i created Depl Package it were successfully distributed to distribution point i see two folders on Distr Point: S0100006 - this is for FEP and S0100007 - this for KB 2633952 Status of Depl Package: SMS Distribution Manager successfully distributed package "S0100006" to distribution point "["Display=\\APS-SCCM\"]MSWNET:["SMS_SITE=S01"]\\APS-SCCM\". SMS Distribution Manager successfully distributed package "S0100007" to distribution point "["Display=\\APS-SCCM\"]MSWNET:["SMS_SITE=S01"]\\APS-SCCM\". on Client: 1. Locationservices.log Distribution Point='http://APS-SCCM.GK.RU/SMS_DP_SMSPKGD$/S0100006/4e00c7e6-1ce0-4c0a-a795-eabda341079f', Locality='LOCAL', DPType='SERVER', Version='6487', Capabilities='<Capabilities SchemaVersion="1.0"/>', Signature='http://APS-SCCM.GK.RU/SMS_DP_SMSSIG$/S0100006.3.tar' LocationServices 18.04.2012 10:30:19 3268 (0x0CC4) Distribution Point='http://APS-SCCM.GK.RU/SMS_DP_SMSPKGD$/S0100007/fabc804b-67f7-4b18-beb5-f483ad507ced', Locality='LOCAL', DPType='SERVER', Version='6487', Capabilities='<Capabilities SchemaVersion="1.0"/>', Signature='http://APS-SCCM.GK.RU/SMS_DP_SMSSIG$/S0100007.2.tar' seems to be ok 2. WUAHandler.log Async searching completed. WUAHandler 18.04.2012 10:28:33 3016 (0x0BC8) Successfully completed scan. WUAHandler 18.04.2012 10:28:33 384 (0x0180) 3. After that i don`t know where to look I`m watching in UpdatesDeployment.log: and couldnot identify my updates, i mean that i see strings like that: Update (Site_8DC7ADCA-CA82-4867-8C77-BFA3C89096B4/SUM_049720d5-0be3-47df-b5e4-f7905a9a1114) Progress: Status = ciStateDownloading, PercentComplete = 67, Result = 0x0 UpdatesDeploymentAgent 18.04.2012 11:21:36 3712 (0x0E80) but did not know what is it FEP or KB2633952? 4. In Execmgr.log Script for Package:{7F018B39-34EC-4715-A190-14A972D3D0CB}, Program: Software Updates Program succeeded with exit code 0 execmgr 18.04.2012 2:03:59 2820 (0x0B04) this Package number i didnot see in logs above so i didnot know what was executed successfully. But on Client computer KB2633952 was installed so i think that it is it. But there is no strings about package for FEP definitions... When on clien compuetr i am pressing "update" it fails.... So please help me to receive defenitions, thank you...
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.