Software Updates Compliance Report for Specific Computer - DatePosted

Hello, I am using the default report to know the Software updates compliance state for a specific computer. The business requirement is to get date the software update has been posted in the same report. So the report should contain columns as follows:
Title
Update Class
Bulletin ID
Date Released/Date Posted 
Article ID
Vendor
Approved
Installed
Is Required
Unique Up[date ID
The default report shows up all the columns except the date posted. Please help me with a query with which we can get date released with all the other columns.
Appreciate your help!
Thanks

Hi,
Please refer to the link below:
Troubleshooting SCCM Software Update Deployment Package distribution due to missing directories
http://blogs.technet.com/b/ken_brumfield/archive/2013/01/10/troubleshooting-sccm-software-update-deployment-package-distribution-due-to-missing-directories.aspx
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.

Similar Messages

  • Software Updates Compliance Report issue

    Hi all,
    I came across a weird behavior in built-in reports and I am looking for a fix or explanation.
    I am trying to use "Software Updates - A Compliance" category -> "Compliance 4 - Updates by vendor month year" report, but when I choose the desired collection (All Servers) and keep the rest as "All values" (as I want to
    list everything), report shows only 12 pages of results. By this I can't see all as the report is truncated. If I specify year, I get results which are not listed in "All values". I can get the list of updates by selecting each year separately and
    export them, but...
    Can someone explain why the report shows incomplete results and only 12 pages?
    Thanks in advance!
    Arnie

    I looked at the SQL Query what is been used in the SSRS Report .seems like the name all values misleading here.
    as per the declaration of these input variables,the all values means ,Null or empty.
    If at all,you need to get all KB information from very long date as you mean ,get all the values,then you should really modify the query.
    SQL is mainly doing the filter based on the following (apart from joins):
    (@FromDate is null or ci.DateRevised>=@FromDate and ci.DateRevised<@ToDate)
                  and (@VendorID=0 or @VendorID=ven.CategoryInstanceID) 
                  and (@ClassID=0 or @ClassID=cls.CategoryInstanceID)
                  and (@ProductID=0 or @ProductID=prd.CategoryInstanceID)
                order by ci.DateRevised desc
    for Ex: If you select vendor as 'All Values' ,means nothing, implies vendor is blank. You can try selecting the vendor as All Values and you get the KB information for only with vendor as Null.
    declare @VendorID int = case when @Vendor='' then 0 else (select CategoryInstanceID from v_CategoryInfo where CategoryTypeName='Company' and CategoryInstanceName IN (@Vendor)) end
    from the above vendor select statement, you must supply some value to it either Microsoft,adobe or local publisher else ,the declare statement treat the vendor value as blank .
    Next ,Year :
    declare @FromDate datetime = case when @Year!='' then convert(datetime, @Year+'-'+case when @MonthNumber!='' then @MonthNumber else '01' end+'-01', 20) end
    for year and month,you should select the value otherwise,you get the information with null values or so.
    Same goes for Month ,product ,Update Class.
    declare @ToDate datetime = case when @Year!='' then dateadd(month, case when @MonthNumber!='' then 1 else 12 end, @FromDate) end
    declare @ProductID int = case when @Product='' then 0 else (select CategoryInstanceID from fn_rbac_CategoryInfo(@lcid, @UserSIDs) where CategoryTypeName='Product' and CategoryInstanceName=@Product) end
    declare @ClassID int = case when @UpdateClass='' then 0 else (select CategoryInstanceID from fn_rbac_CategoryInfo(@lcid, @UserSIDs) where CategoryTypeName='UpdateClassification' and CategoryInstanceName=@UpdateClass) end
    Eswar Koneti | Configmgr blog:
    www.eskonr.com | Linkedin: Eswar Koneti
    | Twitter: Eskonr

  • Software Update Compliance Report in SCCM 2012

    Hi Everyone,
    My question is in sccm 2007 we generate the  compliance report based on update list without downloading the patches just adding the same to update list, However the update list is being replaced by update group in sccm 2012, How can we achieve the same
    in sccm 2012 or do we need to build the custom report if yes please let me know.
    Thanks In Advanced
    ashu Maheshwari

    Because of the retrograde reporting for WSUS data in SCCM, I have the "send info to WSUS" checked on the SUP so I can view data in the old WSUS console. By comparing what computers need how many patches and using the reports in SCCM, you can see massive
    discrepancies in both how many computers need patches and how many patches each computer needs. For example, WSUS will say ComputerA needs 10 patches and SCCM will say it needs 6, or whatever. As far as these two points go, WSUS is far more accurate. 
    I first noticed this months ago.
    I think this is not a matter of how the SCCM queries are written, but because SCCM is far more flaky than WSUS. To me, WSUS is like a good reliable run of the mile car and SCCM is like a race car--powerful but finicky and persnickety. It's harder to get
    clients to fully check in with SCCM. SCCM can do lots but my biggest gripes with it are:
    1) Clients especially flaky and persnickety, one tiny thing gets out of whack and it won't work
    2) WSUS is far more accurate in reporting what patches are needed
    3) For WSUS reporting, they took a lot of WSUS-related/patch reporting out of SCCM, towit you can't get the info you used to be able to get without writing a custom report. This is why you can easily find code samples on the net. And along that point I still
    can't get report builder to work and I don't have another report tool available to me. I know the SQL code samples I have work because I can run the queries in Mgmt Studio.
    Ben JohnsonWY

  • Software Updates - Compliance Report Discrepency - Updates Listed in Report that aren't part of the deployment

    I will try to explain this as clearly as I can.  I've been unsuccessful in trying to search for this exact problem.  I've not yet called support on this as it's not critical.
    I recently began to see a problem in that our compliance reports showed two servers as compliance status unknown for an extended period of time.  I made sure they had the most current version of
    the WUA, I re-installed the SCCM agent, I manually applied patches using windows update directly on the machine.  I've tried running the "RefreshSererComplinaceState" vbscript.  However, the same issue persisted.  I also noticed that
    the number of servers listing as compliant and non-compliant remained relatively the same between deployments of
    windows updates.
    I began to research the compliance report "Compliance 1 - Overall Compliance".  I began to see that there were updates listed in the report which do not correspond to updates which are
    members of the deployment.
    Example, The following patch "Update for Windows Server 2008 R2 x64 Edition (KB2800095)" I currently don't have as a member of any of my deployment packages.  It's not a member of any
    of my update groups.  Yet, it's consistently being reported in the list of updates in that update group.  That's one of several like that.  It's not something I've encountered before.
    Is there a way to reset my updates list on the server side the next time I get ready to do updates?

    Hi,
    Here is a good blog discussed the issue:
    http://damatisystemcenter.com/2013/07/21/sccm-client-unknown-status-what-could-be/
    In the meantime, please check UpdatesHandler.log on the client which status show unknown.

  • Unsure of which software update is right for my computer.

    I am using an early version of the MacBook (black). I want to update my software so that I can run the latest version of iTunes, but I don't think that my MacBook can run Mountain Lion. Which software update would be best for me?

    The Early 2006 model 1,1 Core Duo can only run a maximum of 10.6 Snow Leopard.
    The models Late 2006 Core 2 Duos 2,1 through Early 2008 4,1 can only run a maximum of 10.7 Lion.
    The Late 2008 model 5,1 Aluminum Unibody through the Mid 2010 White Unibody model 7,1 can run 10.8 Mountain Lion.
    To see which model you have go to the Apple in the upper left corner and select About This Mac, then click on More Info. When System Profiler comes up check the Model Identifier.

  • Software update has screwed up my computer

    hello,
    i have a mac ibook g3, i installed os x tiger onto it, maybe 4 months ago. A week ago I ran software update from the apple icon, downloaded the software which included a mac os x update, my computer has since gone crazy, i tunes wont open, neither will safari or skype...im very confused, my mac info says i have os x 10.4, i moved to Japan about 1 month ago and didnt bring the tiger disk with me or i would try and re install it, is there any advice you could give me...many thanks
    Becca*

    hey so the following is the crash reporter for software update
    Host Name: Hanna-Brews-Computer
    Date/Time: 2006-11-07 08:06:46.341 +0900
    OS Version: 10.4 (Build 8A428)
    Report Version: 4
    Command: Software Update
    Path: /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update
    Parent: WindowServer [63]
    Version: 2.0.5 (2.0.5)
    PID: 176
    Thread: Unknown
    Link (dyld) error:
    Symbol not found: _ZNK3KJS9ObjectImp11hasPropertyEPNS9ExecStateEj
    Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Expected in: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    Host Name: Hanna-Brews-Computer
    Date/Time: 2006-11-07 08:19:17.053 +0900
    OS Version: 10.4 (Build 8A428)
    Report Version: 4
    Command: Software Update
    Path: /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update
    Parent: WindowServer [64]
    Version: 2.0.5 (2.0.5)
    PID: 151
    Thread: Unknown
    Link (dyld) error:
    Symbol not found: _ZNK3KJS9ObjectImp11hasPropertyEPNS9ExecStateEj
    Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Expected in: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    Host Name: Hanna-Brews-Computer
    Date/Time: 2006-11-07 09:03:57.209 +0900
    OS Version: 10.4 (Build 8A428)
    Report Version: 4
    Command: Software Update
    Path: /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update
    Parent: WindowServer [61]
    Version: 2.0.5 (2.0.5)
    PID: 227
    Thread: Unknown
    Link (dyld) error:
    Symbol not found: _ZNK3KJS9ObjectImp11hasPropertyEPNS9ExecStateEj
    Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Expected in: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    Host Name: Hanna-Brews-Computer
    Date/Time: 2006-11-07 10:14:20.618 +0900
    OS Version: 10.4 (Build 8A428)
    Report Version: 4
    Command: Software Update
    Path: /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update
    Parent: WindowServer [61]
    Version: 2.0.5 (2.0.5)
    PID: 157
    Thread: Unknown
    Link (dyld) error:
    Symbol not found: _ZNK3KJS9ObjectImp11hasPropertyEPNS9ExecStateEj
    Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Expected in: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    Host Name: Hanna-Brews-Computer
    Date/Time: 2006-11-08 04:32:20.747 +0900
    OS Version: 10.4 (Build 8A428)
    Report Version: 4
    Command: Software Update
    Path: /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update
    Parent: WindowServer [88]
    Version: 2.0.5 (2.0.5)
    PID: 253
    Thread: Unknown
    Link (dyld) error:
    Symbol not found: _ZNK3KJS9ObjectImp11hasPropertyEPNS9ExecStateEj
    Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Expected in: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    Host Name: Hanna-Brews-Computer
    Date/Time: 2006-11-08 05:03:12.248 +0900
    OS Version: 10.4 (Build 8A428)
    Report Version: 4
    Command: Software Update
    Path: /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update
    Parent: WindowServer [88]
    Version: 2.0.5 (2.0.5)
    PID: 368
    Thread: Unknown
    Link (dyld) error:
    Symbol not found: _ZNK3KJS9ObjectImp11hasPropertyEPNS9ExecStateEj
    Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Expected in: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    this is from itunes
    Host Name: Hanna-Brews-Computer
    Date/Time: 2006-11-07 08:06:46.341 +0900
    OS Version: 10.4 (Build 8A428)
    Report Version: 4
    Command: Software Update
    Path: /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update
    Parent: WindowServer [63]
    Version: 2.0.5 (2.0.5)
    PID: 176
    Thread: Unknown
    Link (dyld) error:
    Symbol not found: _ZNK3KJS9ObjectImp11hasPropertyEPNS9ExecStateEj
    Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Expected in: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    Host Name: Hanna-Brews-Computer
    Date/Time: 2006-11-07 08:19:17.053 +0900
    OS Version: 10.4 (Build 8A428)
    Report Version: 4
    Command: Software Update
    Path: /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update
    Parent: WindowServer [64]
    Version: 2.0.5 (2.0.5)
    PID: 151
    Thread: Unknown
    Link (dyld) error:
    Symbol not found: _ZNK3KJS9ObjectImp11hasPropertyEPNS9ExecStateEj
    Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Expected in: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    Host Name: Hanna-Brews-Computer
    Date/Time: 2006-11-07 09:03:57.209 +0900
    OS Version: 10.4 (Build 8A428)
    Report Version: 4
    Command: Software Update
    Path: /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update
    Parent: WindowServer [61]
    Version: 2.0.5 (2.0.5)
    PID: 227
    Thread: Unknown
    Link (dyld) error:
    Symbol not found: _ZNK3KJS9ObjectImp11hasPropertyEPNS9ExecStateEj
    Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Expected in: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    Host Name: Hanna-Brews-Computer
    Date/Time: 2006-11-07 10:14:20.618 +0900
    OS Version: 10.4 (Build 8A428)
    Report Version: 4
    Command: Software Update
    Path: /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update
    Parent: WindowServer [61]
    Version: 2.0.5 (2.0.5)
    PID: 157
    Thread: Unknown
    Link (dyld) error:
    Symbol not found: _ZNK3KJS9ObjectImp11hasPropertyEPNS9ExecStateEj
    Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Expected in: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    Host Name: Hanna-Brews-Computer
    Date/Time: 2006-11-08 04:32:20.747 +0900
    OS Version: 10.4 (Build 8A428)
    Report Version: 4
    Command: Software Update
    Path: /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update
    Parent: WindowServer [88]
    Version: 2.0.5 (2.0.5)
    PID: 253
    Thread: Unknown
    Link (dyld) error:
    Symbol not found: _ZNK3KJS9ObjectImp11hasPropertyEPNS9ExecStateEj
    Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Expected in: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    Host Name: Hanna-Brews-Computer
    Date/Time: 2006-11-08 05:03:12.248 +0900
    OS Version: 10.4 (Build 8A428)
    Report Version: 4
    Command: Software Update
    Path: /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update
    Parent: WindowServer [88]
    Version: 2.0.5 (2.0.5)
    PID: 368
    Thread: Unknown
    Link (dyld) error:
    Symbol not found: _ZNK3KJS9ObjectImp11hasPropertyEPNS9ExecStateEj
    Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Expected in: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    this is finder, crash log
    Host Name: Hanna-Brews-Computer
    Date/Time: 1970-01-01 23:40:00.023 +0100
    OS Version: 10.4 (Build 8A428)
    Report Version: 3
    Command: Finder
    Path: /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Parent: WindowServer [67]
    Version: 10.4 (10.4)
    Build Version: 1
    Project Name: Finder_FE
    Source Version: 5270000
    PID: 89
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Code[0]: 0x0000000a
    Code[1]: 0x01050004
    Thread 0 Crashed:
    0 ...ple.CoreServices.CarbonCore 0x90b21830 CheckMapHeaderCommon + 0
    1 ...ple.CoreServices.CarbonCore 0x90b17cc8 PrepareForkInstanceResourceInfo + 268
    2 ...ple.CoreServices.CarbonCore 0x90b16c48 RMOpenResourceFileRef + 292
    3 ...ple.CoreServices.OSServices 0x90e3b514 CFileBasedIconLoader::OpenResourceFile(FSRef const*, OpaqueMappedResourceFileRef**) + 136
    4 ...ple.CoreServices.OSServices 0x90e2a3f8 CFileBasedIconLoader::FirstLoad(CIconStorageEntry*, unsigned long) + 328
    5 ...ple.CoreServices.OSServices 0x90e28754 ISGetStorageRefFromLoader(CIconFamilyLoader*, unsigned long, unsigned long, unsigned long, unsigned long*) + 620
    6 ...ple.CoreServices.OSServices 0x90e2a0a0 _ISGetStorageByIconFile + 136
    7 ...ple.CoreServices.OSServices 0x90e367a0 _ISAddFSRefIconToImage + 116
    8 com.apple.HIServices 0x9179c910 ISBuildBaseImage(FSRef const*, HFSUniStr255 const*, unsigned long*, FSCatalogInfo*, CustomBadgeResource*, unsigned long, unsigned char*, OpaqueISImageRef**) + 760
    9 com.apple.HIServices 0x9179c4a0 GetImageForFSItem + 528
    10 com.apple.HIServices 0x9179c164 GetIconRefFromFileInfo + 568
    11 com.apple.DesktopServices 0x927a21b0 LockGetIconRefFromFileInfo(FSRef const&, unsigned long, unsigned short const*, unsigned long, FSCatalogInfo const*, unsigned long, OpaqueIconRef**, short*) + 108
    12 com.apple.DesktopServices 0x927a2130 TMetaData::ReadIconRef(OpaqueIconRef*&, bool) const + 216
    13 com.apple.DesktopServices 0x927a2044 THFSPlusRef::ReadIconRef(OpaqueIconRef*&, bool) const + 56
    14 com.apple.DesktopServices 0x927a1fc4 THFSPlusStore::ReadIconRef(OpaqueIconRef*&) const + 76
    15 com.apple.DesktopServices 0x927a1ed8 THFSPlusStore::GetIconRef(TPropertyReference&) const + 92
    16 com.apple.DesktopServices 0x92793714 THFSPlusStore::GetProperty(unsigned long, TPropertyReference&) const + 116
    17 com.apple.DesktopServices 0x92793398 TNode::GetProperty(unsigned long, TPropertyReference&, unsigned long long&) const + 1064
    18 com.apple.DesktopServices 0x92792ef0 GetNodeProperty(OpaqueNodeRef const*, unsigned long, unsigned long long*, TPropertyReference&) + 160
    19 com.apple.DesktopServices 0x927a1e64 GetNodePropertyAsIconRef + 40
    20 com.apple.finder 0x0002aa9c 0x1000 + 170652
    21 com.apple.finder 0x00026d30 0x1000 + 154928
    22 com.apple.finder 0x00025924 0x1000 + 149796
    23 com.apple.finder 0x0002a760 0x1000 + 169824
    24 com.apple.finder 0x00020eb8 0x1000 + 130744
    25 com.apple.finder 0x00020b14 0x1000 + 129812
    26 com.apple.finder 0x0000f464 0x1000 + 58468
    27 com.apple.finder 0x00012668 0x1000 + 71272
    28 com.apple.finder 0x0000efb8 0x1000 + 57272
    29 com.apple.finder 0x0000eeb4 0x1000 + 57012
    30 com.apple.HIToolbox 0x93120dd4 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    31 com.apple.HIToolbox 0x9312052c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    32 com.apple.HIToolbox 0x931203a8 SendEventToEventTargetWithOptions + 40
    33 com.apple.HIToolbox 0x9314bb18 HIView::SendDraw(short, OpaqueGrafPtr*, __HIShape const*, CGContext*) + 396
    34 com.apple.HIToolbox 0x932abc1c HIView::RecursiveDrawComposited(__HIShape const*, unsigned long, HIView*, CGContext*, unsigned char) + 548
    35 com.apple.HIToolbox 0x932abd3c HIView::RecursiveDrawComposited(__HIShape const*, unsigned long, HIView*, CGContext*, unsigned char) + 836
    36 com.apple.HIToolbox 0x932abd3c HIView::RecursiveDrawComposited(__HIShape const*, unsigned long, HIView*, CGContext*, unsigned char) + 836
    37 com.apple.HIToolbox 0x932abd3c HIView::RecursiveDrawComposited(__HIShape const*, unsigned long, HIView*, CGContext*, unsigned char) + 836
    38 com.apple.HIToolbox 0x932ab99c HIView::DrawComposited(short, OpaqueGrafPtr*, __HIShape const*, unsigned long, HIView*, CGContext*) + 580
    39 com.apple.HIToolbox 0x933c3ea8 FlushWindowObject(WindowData*, void**, unsigned char) + 548
    40 com.apple.HIToolbox 0x9313d7f0 FlushAllWindows() + 204
    41 com.apple.CoreFoundation 0x9074a17c __CFRunLoopDoObservers + 352
    42 com.apple.CoreFoundation 0x90749ea4 CFRunLoopRunSpecific + 244
    43 com.apple.HIToolbox 0x93121fc0 RunCurrentEventLoopInMode + 264
    44 com.apple.HIToolbox 0x931215cc ReceiveNextEventCommon + 244
    45 com.apple.HIToolbox 0x931668a0 AcquireNextEventInMode + 72
    46 com.apple.HIToolbox 0x93166690 RunApplicationEventLoop + 132
    47 com.apple.finder 0x00009090 0x1000 + 32912
    48 com.apple.finder 0x00005824 0x1000 + 18468
    49 com.apple.finder 0x0000542c 0x1000 + 17452
    50 com.apple.finder 0x000adfc8 0x1000 + 708552
    Thread 1:
    0 libSystem.B.dylib 0x9002ca78 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001c0c pthreadmutexlock + 508
    2 com.apple.DesktopServices 0x927a8e98 TNode::HandleSyncRequest(__CFRunLoopTimer*, void*) + 56
    3 com.apple.DesktopServices 0x9278bb30 TFSNotificationTask::FSNotificationTaskProc(void*) + 144
    4 ...ple.CoreServices.CarbonCore 0x90b387c8 PrivateMPEntryPoint + 76
    5 libSystem.B.dylib 0x9002c3b4 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9002ca78 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001c0c pthreadmutexlock + 508
    2 com.apple.HIServices 0x917aad3c UpdateIconRef + 48
    3 com.apple.DesktopServices 0x9279c23c THFSPlusStore::ResetIconRef() const + 60
    4 com.apple.DesktopServices 0x9279f184 THFSPlusStore::ReconcileModificationDate(THFSPlusStore const&) + 148
    5 com.apple.DesktopServices 0x9279e23c TNode::ReconcileSelf(THFSPlusStore const&) + 280
    6 com.apple.DesktopServices 0x927a0828 TChildrenList::InsertOrUpdate(_gnu_cxx::__normaliterator<TNode**, std::vector<TNode*, std::allocator<TNode*> > >&, THFSPlusStore*) + 656
    7 com.apple.DesktopServices 0x927a0584 TChildrenList::ReconcileChildInOrder(_gnu_cxx::__normaliterator<TNode**, std::vector<TNode*, std::allocator<TNode*> > >&, THFSPlusStore&) + 136
    8 com.apple.DesktopServices 0x927a0474 THFSPlusStore::SynchronizeChildren(TChildrenList&) + 128
    9 com.apple.DesktopServices 0x927a03a8 TNode::SynchronizeChildren() + 60
    10 com.apple.DesktopServices 0x9279fd1c TNode::ReconcileChildren(TNode::StSynchronize const&, bool) + 180
    11 com.apple.DesktopServices 0x9279d958 TNode::HandleSync(bool) + 348
    12 com.apple.DesktopServices 0x9278c42c TNodeSyncTask::SyncTaskProc(void*) + 360
    13 ...ple.CoreServices.CarbonCore 0x90b387c8 PrivateMPEntryPoint + 76
    14 libSystem.B.dylib 0x9002c3b4 pthreadbody + 96
    Thread 0 crashed with PPC Thread State:
    srr0: 0x90b21830 srr1: 0x0000d030 vrsave: 0x00000000
    cr: 0x28024222 xer: 0x00000006 lr: 0x90b17cc8 ctr: 0x9011f584
    r0: 0x0000a49e r1: 0xbfffcfc0 r2: 0x0000a49e r3: 0x01050000
    r4: 0x0000a49e r5: 0xa0afc578 r6: 0x00000000 r7: 0x00000001
    r8: 0x00000000 r9: 0xffffffff r10: 0xffffffff r11: 0xa0afde60
    r12: 0x9011f584 r13: 0x00000002 r14: 0x00000000 r15: 0xbfffe354
    r16: 0x00000000 r17: 0x00000000 r18: 0xbfffe0b0 r19: 0x00000001
    r20: 0x00000000 r21: 0xbfffe470 r22: 0xbfffe850 r23: 0xa0e284f0
    r24: 0xbfffd7d0 r25: 0x0000000d r26: 0x00000001 r27: 0x0118e4b0
    r28: 0x00000065 r29: 0x01050000 r30: 0xffffffd9 r31: 0x90e2a2c0
    Binary Images Description:
    0x1000 - 0x36efff com.apple.finder 10.4 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    0x4e8000 - 0x4eafff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x8fe00000 - 0x8fe50fff dyld 43 /usr/lib/dyld
    0x90000000 - 0x901a6fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901fe000 - 0x90202fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x90204000 - 0x90257fff com.apple.CoreText 1.0.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90284000 - 0x90335fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90364000 - 0x9069cfff com.apple.CoreGraphics 1.256.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90727000 - 0x90800fff com.apple.CoreFoundation 6.4 (368) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90849000 - 0x90849fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9084b000 - 0x9094dfff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x909a7000 - 0x90a2bfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90a55000 - 0x90ac9fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90ae3000 - 0x90af5fff libauto.dylib /usr/lib/libauto.dylib
    0x90afc000 - 0x90dc1fff com.apple.CoreServices.CarbonCore 10.4 (611.1) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90e24000 - 0x90ea4fff com.apple.CoreServices.OSServices 4.0 (4.0.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90eee000 - 0x90f2efff com.apple.CFNetwork 4.0 (80) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90f43000 - 0x90f5bfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x90f6b000 - 0x90fe9fff com.apple.SearchKit 1.0.3 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9102e000 - 0x91055fff com.apple.Metadata 0.1 (121) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91066000 - 0x91073fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91076000 - 0x91238fff com.apple.security 4.0 (221) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9133a000 - 0x91343fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9134a000 - 0x91371fff com.apple.SystemConfiguration 1.8.0 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91384000 - 0x9138cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x91390000 - 0x9140efff com.apple.audio.CoreAudio 3.0.0 (3.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9144c000 - 0x9144cfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9144e000 - 0x91486fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x914a1000 - 0x9156cfff com.apple.ColorSync 4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x915c1000 - 0x91654fff com.apple.print.framework.PrintCore 4.0 (172) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9169a000 - 0x91757fff com.apple.QD 3.8.5 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91795000 - 0x917f3fff com.apple.HIServices 1.5.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91821000 - 0x91844fff com.apple.LangAnalysis 1.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91858000 - 0x9187dfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91890000 - 0x918d0fff com.apple.LaunchServices 10.4 (118) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918eb000 - 0x918fffff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9190d000 - 0x91943fff com.apple.ImageIO.framework 1.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91957000 - 0x91a19fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a65000 - 0x91a7afff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a7f000 - 0x91a9bfff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91aa0000 - 0x91b0ffff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91b26000 - 0x91b2afff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91b2c000 - 0x91b44fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b47000 - 0x91b8afff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91b91000 - 0x91baafff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91baf000 - 0x91bb2fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91bb4000 - 0x91bb4fff com.apple.Accelerate 1.1 (Accelerate 1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91bb6000 - 0x91ca0fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91ca8000 - 0x91cc7fff com.apple.Accelerate.vecLib 3.1 (vecLib 3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d33000 - 0x91d53fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x91d59000 - 0x91dbefff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91dc8000 - 0x91e5afff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e74000 - 0x92404fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9244c000 - 0x9275cfff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92789000 - 0x92814fff com.apple.DesktopServices 1.3 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92856000 - 0x92a7ffff com.apple.Foundation 6.4 (567) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b9d000 - 0x92c7bfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92c9b000 - 0x92d89fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e3c000 - 0x92e3cfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92e3e000 - 0x92e52fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92e6a000 - 0x92e7afff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92e86000 - 0x92e9bfff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92ead000 - 0x92f34fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92f48000 - 0x92f53fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92f5d000 - 0x92f8afff com.apple.openscripting 1.2.2 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92fa4000 - 0x92fb4fff com.apple.print.framework.Print 4.0 (187) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92fc0000 - 0x93026fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93057000 - 0x930a9fff com.apple.NavigationServices 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x930d5000 - 0x930f2fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93104000 - 0x93111fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9311a000 - 0x93429fff com.apple.HIToolbox 1.4.0 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x94053000 - 0x9411dfff com.apple.audio.toolbox.AudioToolbox 1.4 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94171000 - 0x94171fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x943e9000 - 0x9442cfff com.apple.bom 8.0 (85) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9454a000 - 0x94559fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94561000 - 0x9456dfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x945b2000 - 0x945c6fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x945cc000 - 0x9482efff com.apple.QuickTime 7.0.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94901000 - 0x94920fff com.apple.vecLib 3.1 (vecLib 3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94c41000 - 0x94c47fff com.apple.filesync 3.0 (97) /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    sorry this is a load of gobaldy goop to me, ive no idea whats gone on, any help would be much much appreacited
    Becca**

  • Downloading software update 10.6.8 causes computer to get stuck at blue screen

    All of a sudden my Macbook Pro would not load past the white apple loading screen; so I ran disk utility, verified and repaired my HD, and still nothing. I then re downloaded the OS X 10.6.3 on my laptop, and got it to boot up and sign me in; when I signed in, the computer was behaving VERY slowly, and none of my applications would open.
    So I browsed the suggestions on the support pages, and tried ALL of them to no avail.
    I did an erase and re-install of my hard drive; I completely wiped it, then just re installed the original OS from the disk it came with, 10.6.3. I then downloaded the software updates, and upon restarting my computer, it was stuck on the blue screen. Apparently this is a startup disk problem I've heard?
    After two more times of wiping the HD and reinstalling the operating system again (several times of which the installation failed), I'm now running on 10.6.3, and terrified to update my software for fear of having it get my computer stuck AGAIN.
    Is there something wrong with my startup disk? My hard drive? the software update?

    Probably the logic board, maybe a drive problem, but you did a verify (did it  come up with errors in red font?)and disk repair using the disk utility on the install disk and ran it till it came up with this drive appears ok in green font?
    Did you run a permissions repair as well?
    You can bring it to an Apple store genius bar (make an appointment) and they will diagnose it for free.

  • Software update 1.1 for N8, C7 and C6-01 available...

    http://conversations.nokia.com/2011/02/04/software-update-1-1-for-new-symbian-devices/?sf1035119=1

    The article has been updated, it's not out today for the N8 or C6-01:
    "UPDATE: The standard, non-customised version of the software is available from today for the Nokia C7. The software versions for the Nokia N8 and C6-01 will be available early next week. Country (SIM-free) and operator-specific variants will follow soon."

  • Software Update wont check for new software.

    Software Update wont check for new software.

    No - I'm on 10.6.8 and it functions normally, though there are now very few actual updates. If there are no updates the progress bar should still complete in around 3 minutes and announce that there are no updates, so you've got something hanging somewhere. If it's still stuck hit command-option (alt)- escape, select Software Update and hit Force Quit. You could try it again (I should reboot first) in case it's a one-off glitch, but if it still sticks force quit it again.
    The best suggestion I can offer is to apply the combo updater anyway in the hope that it may over-write whatever is causing the problem.
    http://support.apple.com/kb/DL1399

  • How to get Reports for specific User that how many password has been reset using FIM SSPR in FIM 2010 R2 SSPR

    Hi,
    How to get Reports for specific User that how many password has been reset using FIM SSPR in FIM 2010 R2 SSPR
    Regards
    Anil Kumar

    Hello there Anil,
    A simple way to quickly get a overview is to look at the request history within the portal environment (note that this will expire in a few day based on your environment, after that you would need to FIM Reporting Module - but you could increase this to
    maybe 60 days to so, watch the DB size).
    To do this you could create some custom search scopes of do some custom queries. The creator of the SSPR activities always has the same GUID so you can use that so search.
    In your search scope you can use the following XPath to play with.
    - All Password Reset Requests - /Request[Creator='b0b36673-d43b-4cfa-a7a2-aff14fd90522' and Operation='Put']
    - All Completed Password Reset Requests - /Request[Creator='b0b36673-d43b-4cfa-a7a2-aff14fd90522' and RequestStatus=‘Completed']
    You can play with the "RequestStatus".
    Hope this helps.
    Almero Steyn (http://www.puttyq.com) [If a post helps to resolve your issue, please click the "Mark as Answer" of that post or "Helpful" button of that post. By marking a post as Answered or Helpful, you help others find the answer
    faster.]

  • HT1766 My IPAD software update is avail for the iOS 7.0.3   I keep trying to install it.  I have my IPAD hooked up to my MAC and the Wi FI,  I have internet open  It keeps telling me now connected to internet.  What am I doing wrong.

    My IPAD software update is avail for the iOS 7.0.3   I keep trying to install it.  I have my IPAD hooked up to my MAC and the Wi FI,  I have internet open  It keeps telling me not connected to internet.  What am I doing wrong.

    You can try resetting your iPad by simultaneously pressing and holding the Home and Sleep/Wake buttons until you see the Apple Logo. This can take up to 15 seconds so be patient and don't release the buttons until the logo appears.
    Try again to see if the problem persists.

  • I try to update apps since last software update, but prompts for old itunes PW

    I try to update apps since last software update, but prompts for old itunes PW,
    Ive signed out of Itunes, Icloud, Ive rebooted the phone several times and it still prompts for a passwork from 2 yrs ago. I bought this phone some time ago used. I have never had a problem ontil I updated the software a month ago....
    Please help
    Mike

    That means you have an app or apps, on your phone, obtained with your old Apple ID. All apps are forever tied to the ID used to originally obtain them. They cannot be updated using any ID other than the ID used to obtain them.

  • Where is "Boot Camp Software Update 3.1 for Windows 64 bit"?

    Where is "Boot Camp Software Update 3.1 for Windows 64 bit"??

    Did you try just 3.2 update?
    http://support.apple.com/kb/DL979
    I find this "you need 3.0 first" then have to install year old 3.1, and only then can you install 3.2? what kind of Windows motherboard support is that?
    And, you already have 3.0 installed off a 10.6 OS X DVD, and have you tried to use Apple Software Update (Windows obviously)? though I think the standalone updates are better and less trouble or problems. Download and keep them handy in case ever needed in the future too.
    BC 3.0 FAQ, What's New
    http://support.apple.com/kb/HT3777
    http://www.apple.com/support/bootcamp/
    Boot Camp: Windows 7 installation frequently asked questions
    http://support.apple.com/kb/HT3986
    Boot Camp Software Update 3.1 for 64-bit requires 3.0
    http://support.apple.com/kb/DL979
    Looks like the link to 3.1 now just goes to 3.2.

  • I am new to this forum. Just installed adobe iplayer for the numerous time. Then decided to have a software update immediately on my mac computer. Then a a small screen appeared afterwards stating the maleware virus was removed. What do I do now?

    Just installed adobe iplayer for the umpteeth time.
    Then decided to have a software update immediately on my mac.
    Then a small screen appeared afterwards stating maleware virus removed.
    What do I do now? Was not aware that I had a virus in the first place.

    That latest update is a removal tool for the Flashback trojan.
    One of the ways the earlier versions of that trojan were distributed was through fake Adobe Flash downloaders.
    Why are you repeatedly installing Adobe Flash Player? (not iPlayer - that's a BBC thing.)
    The only place from which to get the Flash Player plug-in is directly from Adobe themselves - Never Trust a Pop Up that says you have a missing plugin!
    Also be aware that the Flash Player is not a standalone player; it's a plug-in which installs in the Library and is available for all the browsers to use.
    As for what you do now?
    Nothing for the moment - you should be clear.
    But to be on the safe side, go to the Prefences for each of your browsers and disable Java (not JavaScript - that's a whole different animal). As Java is the vector used by the most recent versions, that should ensure you don't get reinfected.

  • How can you see Software Update compliance breakdown by Client?

    I want to see a view in the Software Library that breaks down by client what is shown in the "All Software Updates" node.
    Basically, with SCCM 2012 you can see all the software updates and there compliance summary which is nice, however I can't find a way to see a detailed version of this that breaks this all down by client.  
    For example if I have a Software Update that is Required on 5, Not Required on 3, Installed on 4, and Unknown on 2 clients I want to know which specific clients make up those numbers. I want to know which clients are required, which are not required, which
    are already installed and which are unknown.
    There doesn't seem to be a view like this in SCCM 2012 and its very odd that it doesn't provide this look into the data.
    Am I missing something, can someone point me to the way to see this data quickly.

    I am aware of that view however that is just mapping the state number to a name for several different "TopicTypes". And the one you are point to is actually not for Software Updates Scan Status. The TopicType for a Clients Update Scans is 500,
    which has 0-3 only. 0 is supposed to be Unknown, 1 not-required, 2 required, and 3 installed.
    They set the status for an endpoint/update for 2 and 3 but I have several Unknown, and Not-Required and they don't write those rows to the database if they are in that state. 
    It seems when they are gathering data from the client the summarize everything, and one keep the specific rows for clients if they are required or installed, and they don't create a row for the other states. From some digging it looks like they stored this
    data in 2007, but dropped in in 2012.  
    Maybe it is to conserve space or something I don't know but its stupid. It would be nice if there was a hidden setting that would enable it to store these rows as the database is set to collect them, they just don't.
    FYI...
    For WMI Queries you can use SMS_StateInformation which maps to the v_StateNames.

Maybe you are looking for

  • QuickTime not found error when trying to run iTunes 64 bit on W7, QuickTime not found error when trying to run iTunes 64 bit on W7

    I have quicktime installed on windows 7, 64 bit, and then installed the 64 bit version of iTunes. Install is successful, but when I try ot run iTunes, I get an error - "QuickTime was not found". Any suggestions?

  • Agent determination error

    Hi all I am trying to configure a workflow for PO release , the Business object am using is BUS2012 in ECC6.0 Whenever a PO is rejected i need to send the work item to the user(Workflow initiator)  who created the PO . I created a standard task and i

  • IPad downloads and delete

    I am just about ready to biff this IPad ! I bought a tv series and it keeps telling me I didn't have enough storage .... Finally figured out how to delete a previous series I bought and it looks as tho it goes to iCloud ? This is great ! However ...

  • 2 devices on 1 itunes?

    i have the ipod touch and now have the iphone 4, is there any way i can use both on my itunes? thanks.

  • USE OF VARRAY and RECORD object vis-a-vis java.sql package

    Hi Geeks, I want to pass an array of java objects to a stored procedure and I will use them for table insertion or updation. Say I have a table TASK at DataBase end while the same TASK object is there at JAVA end. I want to pass an array of Task obje