View all applications

So I am very new to apple and just got an iPad and I have noticed that when I'm looking for apps I can view by category but it only shows so many of them, is there a way to view all the applications no matter what category or rating.

Welcome to Apple Discussions!
The Search Bar is your friend in the Ipad App Store (which I find less than ideally constructed). If you search for a category (say, Utilities) instead of using the Store's category itself, you'll get a lot more apps. You can also search for niche categories such as "word games" or "font utilities." Searching always finds more apps and more focus than allowing the store to make the selections.

Similar Messages

  • Magic Mouse need view all open applications....

    is it possible to have the same option to view the open applications in the new magic mouse, im a programer and always in need to haver several applications and run between them ... just bought the magic mouse its great loving it , but please insert a command to view all the open applications PLEASE
    Message was edited by: FranciscoCarlao

    A few hours later…
    I just found Mouse Wizard:
    http://www.samuco.net/web/node/23
    I will say that when I downloaded the demo the center button didn't work, but a very quick & courteous reply from their tech support suggested:
    In terminal, can you try entering this command: "rm ~/Library/Preferences/.MagicalWizard.plist". Then, relaunch MouseWizard.
    I did this & now I have center button nirvana! (Mouse Wizard also supports a version of the squeeze button (they call it fourth button) and squeeze/bloat gestures.)
    So far so good--it's made me much happier with my magic mouse.

  • To get the invoice number of amount applied in view prepayment applications

    hi all
    In AP abc Manager-Invoices--when we give invoice number in the invoice number field we get to see supplier name etc in the same Invoices Form there is a
    tab called General from which we can get Amount Paid ,
    Similarly there is a tab called View Prepayment Applications ,when clicked on this tab we can see Amount Applied and invoice number corresponding to that amount applied
    KIndly help me from which table or view this invoice number can be obtained
    i got amount applied from the view AP_UNAPPLY_PREPAYS_V,but i cant find the invoice number.
    kindly guide
    thanking in advance
    Edited by: makdutakdu on Dec 19, 2011 11:29 AM

    Thanks Robin,
    i was able to get a work around for this. For the time being i am using the following code snippet, i will try using the one u sent an will see if this works too.
    // create nodeinfo object for the node that table will bind to
    final IWDNodeInfo nodeinfo = wdThis.wdGetContext().node<NODENAME>().getNodeInfo() ;
    //get the structure of the node
    final IStructure struct = nodeinfo.getStructureType() ;
    Iterator iter = nodeinfo.iterateAttributes() ;
    if (null != struct)
    totalFields = struct.getNumberOfFields();
    else
    for ( Iterator i = nodeinfo.iterateAttributes(); i.hasNext(); i.next() )
              totalFields++;
    for(count = 1; count <= totalFields; count++)
         fieldName = nodeinfo.getStructureType().getField(count).getName();

  • TS1381 My left arrow does not work on my macbook pro(model A1226).  I have reset nvram, performed a safe boot, pulled the cache to desktop, replaced .globalpreference.plist, test all other keys with keyboard view (all others work)  - HELP!!

    My left arrow does not work on my macbook pro(model A1226).
    I have reset nvram, performed a safe boot, pulled the cache to desktop, replaced .globalpreference.plist, & tested all other keys with "keyboard viewer" (all other keys work except for the arrow). 
    In addition, I have gone thru all the recommended checks with universal access and have booted from snow leopard dvd and the left arrow still does not work. 
    I have tried using the left arrow key in all of applications I use such as: excel, ms word, address book, calendar, iphoto, terminal, & highlighting an icon and using the arrows to move to another selected icon.
    Here is the kicker!  In addition, I purchased a logitech solar bluetooth keyboard and the arrows work fine with my ipad but do not work when paired with the macbook pro. All other keys work fine on the macbook pro using the bluetooth keyboard.
    I believe this says that the problem is not in my macbook pro keyboard. So where can it be?
    Can anyone think of any other rabbit holes I can search?
    thanks and regards
    vats3

    I would also like to add that I've reverted the two cd drive and hard drive mods I did and the laptop is back to factory hardware and there is 0 corrosion or mold visible.

  • Table View in View-based Application

    Hi.
    I want to use an UITableView in a View-based Application.
    All examples I found are for Navigation-based Applications.
    I Found only one example for View-based Applications, but it create all components himself without the Interface-Builder.
    I search an example with Interface-Builder.
    My main problem is, when i create a view with Interface-Builder, the controller class does not inherit from UITableViewController.

    GrinderFX wrote:
    I want to use an UITableView in a View-based Application.
    Hi, and welcome to the Dev Forum!
    Firstly, I would point out that you don't need to use UITableViewController to control a table view. The table view controller is just more convenient. So for example, you could simply drag a table view from the library in IB and drop it onto your view. Then you could hook up the table view's dataSource and delegate outlets to the File's Owner. Then you would add the data source and delegate protocols to the @interface of your UIViewController subclass and add the required data source and delegate methods to the @implementation.
    I mention the above because building your table view that way is very instructive. If you want to learn more about table views in general I would recommend Chapter 8 of +Beginning iPhone Development: Exploring the iPhone SDK by Mark and LaMarche+, which includes 3 table view projects that don't involve a navigation controller.
    My main problem is, when i create a view with Interface-Builder, the controller class does not inherit from UITableViewController.
    Returning to your specific question, IB allows you to change the class of an object. Here are the steps to use the View-Based Application template as you described (In the following I'm using Grinder as the name of the project; e.g. the app delegate class is named GrinderAppDelegate, and the view controller subclass is named GrinderViewController):
    1) _Change parent of view controller subclass in your code_
    In GrinderViewController.h, you only need to change the superclass from UIViewController to UITableViewController:
    @interface GrinderViewController : UITableViewController {
    However it will be easier later on if you make new files from the UITableViewController file template:
    a) Ctrl-click on GVC.h and GVC.m in the Groups & Files tree; select Delete->Also Move to Trash;
    b) Ctrl-click on Classes; select Add->New File->iPhone OS->Cocoa Touch Classes;
    c) Select UITableViewController subclass from the right center panel and click Next;
    d) File Name: GrinderViewController.m; check Also create GrinderViewController.h;
    e) Make sure the name for these new files is exactly the same as the ones you deleted; if you make a mistake here, delete the new files and start over, because that name must be the same in several other files;
    f) Click Finish; the replacement files should now appear under Classes.
    2) _Change the view controller class in IB_
    a) Double click on MainWindow.xib under Resources in the Groups & Files tree;
    b) Make sure the MainWindow.xib window is open by selecting Window->Document from the IB menu;
    c) Locate the View Mode switch, upper-left, in the xib window, and select the Center position;
    d) The xib window should now be displaying two columns with small icons on the left;
    e) Select the Grinder View Controller icon;
    f) Select Edit-Delete to delete that icon;
    g) Select Tools->Library from the menu, and expand Controllers in the Library Panel;
    h) Drag a Table View Controller to the xib window and drop it right under the app delegate icon;
    i) Select Tools->Identity Inspector from the menu to open the Grinder View Controller Identity Panel (the new Table View Controller should still be selected in the xib window);
    j) Under Class Identity, select Grinder View Controller from the list; tab out of the Class field to be sure the selection is recorded;
    k) Ctrl-Click on Grinder App Delegate and connect the view controller outlet (ctrl-drag) to Grinder View Controller;
    l) Expand GVC in the xib window and delete the Table View icon (since we want it in the other xib file);
    m) Reselect the GVC icon and open the Grinder View Controller Attributes panel;
    n) Under View Controller, select GrinderViewController from the NIB Name list;
    o) In the Table View Controller IB Editor window, select GrinderViewController.nib to open the other xib file;
    p) Make sure the GrinderViewController.xib window is open in small icon mode as in steps b-d above;
    q) The class of the File's Owner should be GrinderViewController;
    r) Delete the View icon;
    s) Drag a Table View from the Library to where the View icon was;
    t) Ctrl-click on File's Owner and connect (ctrl-drag) it's view outlet to the Table View;
    u) Ctrl-click on Table View: connect both the dataSource and delegate outlets to File's Owner;
    v) File->Save both xib files.
    3) _Make some rows in the table view and test_
    a) Open GrinderViewController.m in Xcode;
    b) Add the commented lines (be sure to use the correct line for your target OS);
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 20; // <-- change to more than zero
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
    // Configure the cell
    // add this line for OS 2.x
    cell.text = [NSString stringWithFormat:@"Row %d", indexPath.row];
    // add this line for OS 3.0
    // cell.textLabel.text = [NSString stringWithFormat:@"Row %d", indexPath.row];
    return cell;
    c) Build and Go.
    I should add that the procedure might be a little easier if you start with the Window-Based Application Template. But the above is good practice in editing xib files.
    Hope that's helpful!
    - Ray

  • View application pages - view forms views and application pages. enumerate lists

    view application pages - view forms views and application pages. enumerate lists, if we disable this permission in sharepoint then user gets blocked from getting into application pages which is good. But now I have few list view web parts on a page and user
    is not able to see those reports based on view. It shows working on it. As soon as I enable view application pages permission it works.
    I need a permission level -view forms views only.
    MCTS Sharepoint 2010, MCAD dotnet, MCPDEA, SharePoint Lead

    Hi Amit,
    SharePoint has a feature called “ViewFormPagesLockDown” at site collection scope. After enabling the feature, all groups / users not having the “View Application Pages” permission will not be able to navigate to pages like “_layouts/viewlsts.aspx”
    or “pages/forms/allitems.aspx”.
    So, for your issue, please disable the ViewFormPagesLockDown feature via PowerShell command:
    $lockdownFeature = get-spfeature viewformpageslockdown
    disable-spfeature $lockdownFeature -url [the URL of your site]
    More information:
    http://sharepointtechie.blogspot.jp/2011/06/blocking-access-to-application-pages.html
    http://sureshpydi.blogspot.jp/2013/12/viewformpageslockdown-feature-in.html
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • My Macbook pro started running incredibly slow and I am getting the spinning beach ball of death across all applications.

    I have no idea why this is happening. I normally use Word, Excel, Google Chrome and sometimes Photoshop when using my computer and then one day it started getting super slow. This is my etrecheck.
    Computer running slow all of the sudden. Getting spinning beach ball of death through all applications all the time. Computer losing charge while not plugged in.
    EtreCheck version: 2.1.8 (121)
    Report generated February 18, 2015 at 9:14:02 AM GMT+7
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro Intel Core i5, Intel Core i7, 13" (Mid 2012)
        MacBook Pro - model: MacBookPro9,2
        1 2.5 GHz Intel Core i5 CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 189
    Video Information: ℹ️
        Intel HD Graphics 4000
            Color LCD 1280 x 800
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 0:7:56
    Disk Information: ℹ️
        APPLE HDD TOSHIBA MK5065GSXF disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 498.88 GB (374.75 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 499.25 GB Online
        MATSHITADVD-R   UJ-8A8 
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Computer, Inc. IR Receiver
        Apple Inc. Apple Internal Keyboard / Trackpad
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/DiskWarrior.app
        [not loaded]    com.alsoft.Preview (4.4) [Click for support]
            /Library/Application Support/Hotspot Shield
        [not loaded]    com.anchorfree.tun (1.1.1 - SDK 10.8) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.MBB.driver.MBBDataCardDriver (4.25.09) [Click for support]
            /System/Library/Extensions/MBBDataCardDriver.kext/Contents/PlugIns
        [not loaded]    com.MBB.driver.MBBDataCardACMData (4.24.00) [Click for support]
        [not loaded]    com.MBB.driver.MBBDataCardActivateDriver (1.0.5) [Click for support]
        [not loaded]    com.MBB.driver.MBBDataCardECMControl (1.27.00) [Click for support]
        [not loaded]    com.MBB.driver.MBBDataCardECMData (1.31.00) [Click for support]
        [not loaded]    com.MBB.driver.MBBDataCardHidePortDriver (4.06.00) [Click for support]
        [not loaded]    com.mbb.driver.cdc_acm (2.6.2f17) [Click for support]
        [not loaded]    com.mbb.driver.cdc_ecm (2.6.2f16) [Click for support]
        [not loaded]    com.mbb.driver.cdc_ncm (2.6.2f16) [Click for support]
        [not loaded]    com.mbb.driver.cdc_usb_bus (1.0.2) [Click for support]
        [not loaded]    com.mbb.driver.dc_net (1.0.2) [Click for support]
    Startup Items: ℹ️
        HWNetMgr: Path: /Library/StartupItems/HWNetMgr
        HWPortDetect: Path: /Library/StartupItems/HWPortDetect
        Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [running]    com.adobe.AdobeCreativeCloud.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.anchorfree.ajaxserver.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist [Click for support]
        [loaded]    com.macpaw.CleanMyMac2Helper.scheduledScan.plist [Click for support]
        [loaded]    com.macpaw.CleanMyMac2Helper.trashWatcher.plist [Click for support]
    User Login Items: ℹ️
        Dropbox    Application  (/Applications/Dropbox.app)
    Internet Plug-ins: ℹ️
        SharePointBrowserPlugin: Version: 14.0.0 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 Cannot contact Adobe
        QuickTime Plugin: Version: 7.7.3
        AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
    Safari Extensions: ℹ️
        Searchme [Adware! - Remove]
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
            12%    Activity Monitor
             6%    WindowServer
             2%    hidd
             0%    AppleSpell
             0%    sysmond
    Top Processes by Memory: ℹ️
        412 MB    softwareupdated
        77 MB    Safari
        73 MB    Finder
        60 MB    Dropbox
        60 MB    WindowServer
    Virtual Memory Information: ℹ️
        646 MB    Free RAM
        1.84 GB    Active RAM
        1.13 GB    Inactive RAM
        680 MB    Wired RAM
        1.73 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Feb 18, 2015, 08:55:55 AM    Self test - passed
        Feb 15, 2015, 09:59:48 PM    /Library/Logs/DiagnosticReports/Image Capture_2015-02-15-215948_[redacted].hang
        Feb 15, 2015, 08:16:55 PM    /Library/Logs/DiagnosticReports/DiskWarrior_2015-02-15-201655_[redacted].cpu_re source.diag [Click for details]
        Feb 15, 2015, 08:11:51 PM    /Library/Logs/DiagnosticReports/Activity Monitor_2015-02-15-201151_[redacted].crash
        Feb 15, 2015, 07:48:22 PM    /Library/Logs/DiagnosticReports/Microsoft Word_2015-02-15-194822_[redacted].hang
        Feb 15, 2015, 07:03:47 PM    /Library/Logs/DiagnosticReports/DiskWarrior_2015-02-15-190347_[redacted].cpu_re source.diag [Click for details]

    Linc,
    Thanks for taking the time to reply. The beachball is literally every other minute. I tried to take the time to it's most basic second and it was 4:01:04 - I am currently backpacking in Laos with my bf and we are travel writers/photographers and he is helping me get this info.
    We didn't know what anonymyze meant but we tried to make sure you couldn't see my name. So far the spinning beach ball has occurred 4 times in just writing these 4 lines.
    We tried to make sure we didn't overwhelm you with the 4000 lines or more but just did a couple days worth of text. Thanks again for your time.
    2/14/15 9:46:39.584 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8f0e870> connection from pid 592 with interface <AccountServiceInterface: 0x7fd7f8f08b80> (PID 592)
    2/14/15 9:46:39.676 PM locationd[54]: Couldn't find a requirement string for masquerading client /System/Library/PrivateFrameworks/Parsec.framework
    2/14/15 9:46:39.676 PM locationd[54]: could not get apple languages array, assuming english
    2/14/15 9:46:48.998 PM com.apple.WebKit.Plugin.64[603]: Failed to connect (colorGridView) outlet from (NSApplication) to (NSColorPickerGridView): missing setter or instance variable
    2/14/15 9:46:48.999 PM com.apple.WebKit.Plugin.64[603]: Failed to connect (view) outlet from (NSApplication) to (NSColorPickerGridView): missing setter or instance variable
    2/14/15 9:55:51.804 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8d495f0> connection from pid 609 with interface <AccountServiceInterface: 0x7fd7f8d56840> (PID 609)
    2/14/15 9:55:51.970 PM App Store[609]: Unknown class 'FRPageController', using 'NSObject' instead. Encountered in Interface Builder file at path /System/Library/PrivateFrameworks/StoreUI.framework/Resources/Base.lproj/FRStor eViewController.nib.
    2/14/15 9:55:51.972 PM App Store[609]: Failed to connect (delegate) outlet from (NSObject) to (FRNavigationController): missing setter or instance variable
    2/14/15 9:55:51.973 PM App Store[609]: Failed to connect (view) outlet from (NSObject) to (FRWindowBackgroundView): missing setter or instance variable
    2/14/15 9:55:51.973 PM App Store[609]: Failed to connect (pageController) outlet from (FRNavigationController) to (NSObject): missing setter or instance variable
    2/14/15 9:55:52.134 PM storeassetd[298]: AssetServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ffe92c0f6b0> connection from pid 609 with interface <AssetServiceInterface: 0x7ffe92c299e0> (PID 609)
    2/14/15 9:55:52.254 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8f28bc0> connection from pid 609 with interface <AccountServiceInterface: 0x7fd7f8f03410> (PID 609)
    2/14/15 9:55:52.447 PM App Store[609]: NSWindow warning: adding an unknown subview: <_NSThemeCloseWidget: 0x6000001945d0>
    2/14/15 9:55:52.628 PM App Store[609]: Call stack:
      0   AppKit                              0x00007fff88fe58fc -[NSThemeFrame addSubview:] + 107
      1   AppKit                              0x00007fff889d168f -[NSView addSubview:positioned:relativeTo:] + 208
      2   StoreUI                             0x0000000108a81e2a -[FRWindow handleToolbarViewChangedNotification:] + 1085
      3   CoreFoundation                      0x00007fff87c7dcdc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
      4   CoreFoundation                      0x00007fff87b6f244 _CFXNotificationPost + 3140
      5   AppKit                              0x00007fff8894d389 -[NSView _postFrameChangeNotification] + 422
      6   AppKit                              0x00007fff8894c39b -[NSView setFrameOrigin:] + 862
      7   StoreUI                             0x0000000108a81cb0 -[FRWindow handleToolbarViewChangedNotification:] + 707
      8   StoreUI                             0x0000000108a81844 -[FRWindow setToolbar:] + 183
      9   App Store                           0x0000000108a5a14f App Store + 8527
      10  AppKit                              0x00007fff88b62e07 -[NSWindowController _windowDidLoad] + 586
      11  AppKit                              0x00007fff88b49e12 -[NSWindowController window] + 110
      12  App Store                           0x0000000108a599c8 App Store + 6600
      13  CoreFoundation                      0x00007fff87c7dcdc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
      14  CoreFoundation                      0x00007fff87b6f244 _CFXNotificationPost + 3140
      15  Foundation                          0x00007fff8508dc31 -[NSNotificationCenter postNotificationName:object:userInfo:] + 66
      16  AppKit                              0x00007fff889148f7 -[NSApplication finishLaunching] + 440
      17  AppKit                              0x00007fff889143c1 -[NSApplication run] + 128
      18  AppKit                              0x00007fff888ffa14 NSApplicationMain + 1832
      19  libdyld.dylib                       0x00007fff87f145c9 start + 1
      20  ???                                 0x0000000000000001 0x0 + 1
    2/14/15 9:55:53.078 PM storeassetd[298]: AssetServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ffe92f152a0> connection from pid 609 with interface <AssetServiceInterface: 0x7ffe92f01e70> (PID 609)
    2/14/15 9:55:53.092 PM storeassetd[298]: addOperation <AdoptionEligibilityCheckOperation: 0x7ffe92d2b740>{name = '(null)'}
    2/14/15 9:55:53.141 PM storeassetd[298]: addOperation <LoadUpdateQueueOperation: 0x7ffe92c1ed60>{name = '(null)'}
    2/14/15 9:55:53.143 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8c95580> connection from pid 298 with interface <AccountServiceInterface: 0x7fd7f8c44550> (PID 298)
    2/14/15 9:55:53.204 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8d4b3b0> connection from pid 298 with interface <AccountServiceInterface: 0x7fd7f8d5c030> (PID 298)
    2/14/15 9:55:53.219 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8d32ec0> connection from pid 298 with interface <AccountServiceInterface: 0x7fd7f8d48c00> (PID 298)
    2/14/15 9:55:53.571 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8c50b10> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8c30360> (PID 611)
    2/14/15 9:55:53.573 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8c96140> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8c951c0> (PID 611)
    2/14/15 9:55:53.642 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8c81f10> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8e28a00> (PID 611)
    2/14/15 9:55:53.699 PM com.apple.CommerceKit.TransactionService[615]: TransactionServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9739c19cd0> connection from pid 298 with interface <TransactionServiceInterface: 0x7f9739c122f0> (PID 298)
    2/14/15 9:55:53.699 PM com.apple.CommerceKit.TransactionService[615]: TransactionServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9739e09a30> connection from pid 298 with interface <TransactionServiceInterface: 0x7f9739e086c0> (PID 298)
    2/14/15 9:55:53.702 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8c93cf0> connection from pid 615 with interface <AccountServiceInterface: 0x7fd7f8c9b390> (PID 615)
    2/14/15 9:55:53.706 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8d53040> connection from pid 615 with interface <AccountServiceInterface: 0x7fd7f8d55360> (PID 615)
    2/14/15 9:55:53.713 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8c76170> connection from pid 298 with interface <AccountServiceInterface: 0x7fd7f8c81bb0> (PID 298)
    2/14/15 9:55:53.716 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8d4dfc0> connection from pid 298 with interface <AccountServiceInterface: 0x7fd7f8d526f0> (PID 298)
    2/14/15 9:55:53.899 PM storeuid[614]: UIServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fbf0151a590> connection from pid 609 with interface <UIServiceInterface: 0x7fbf01602f60> (PID 609)
    2/14/15 9:55:54.074 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8ca5030> connection from pid 609 with interface <AccountServiceInterface: 0x7fd7f8c85b30> (PID 609)
    2/14/15 9:55:54.084 PM storeaccountd[285]: -[PushServiceStoreDispatch getEnabledMediaTypesWithReply:]
    2/14/15 9:55:54.084 PM storeaccountd[285]: addOperation <ISStoreURLOperation: 0x7fd7f8c878e0 - request=<ISURLRequest:0x7fd7f8c79900 (null)> urlBagKey=enabled-media-types>
    2/14/15 9:55:54.118 PM com.apple.CommerceKit.TransactionService[617]: TransactionServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f993940f590> connection from pid 285 with interface <TransactionServiceInterface: 0x7f9939412650> (PID 285)
    2/14/15 9:55:54.121 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8d0a3b0> connection from pid 617 with interface <AccountServiceInterface: 0x7fd7f8d58ef0> (PID 617)
    2/14/15 9:55:55.966 PM storeaccountd[285]: ADI: {
        "Cache-Control" = "no-store, no-cache, no-transform, private, max-age=0, must-revalidate";
        Connection = "keep-alive";
        "Content-Encoding" = gzip;
        "Content-Length" = 278;
        "Content-Type" = "text/xml; charset=UTF-8; encoding=UTF-8";
        Date = "Sat, 14 Feb 2015 14:55:55 GMT";
        "Strict-Transport-Security" = "max-age=31536000";
        Vary = "Accept-Encoding";
        "apple-timing-app" = "5 ms";
        "x-apple-application-instance" = 104415;
        "x-apple-application-site" = NWK;
        "x-apple-jingle-correlation-key" = I3EFG3IJTW7D4JFQWLCEG5JZEQ;
        "x-apple-lokamai-no-cache" = true;
        "x-webobjects-loadaverage" = 0;
    2/14/15 9:55:56.825 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8f0fee0> connection from pid 609 with interface <AccountServiceInterface: 0x7fd7f8f10520> (PID 609)
    2/14/15 9:55:56.826 PM storeaccountd[285]: ADI: {
        "Cache-Control" = "no-transform, max-age=35";
        Connection = "keep-alive";
        "Content-Encoding" = gzip;
        "Content-Length" = 350;
        "Content-Type" = "text/xml; charset=UTF-8";
        Date = "Sat, 14 Feb 2015 14:55:56 GMT";
        "Last-Modified" = "Sat, 14 Feb 2015 14:49:39 GMT";
        Server = "ATS/4.1.0";
        "Strict-Transport-Security" = "max-age=31536000";
        Vary = "Accept-Encoding";
        "X-Apple-ATS-Cache-Key" = "/17.154.42.215/80/us/store/iDevice/143441-1/13/https";
        "X-Apple-Partner" = "origin.0";
        "apple-timing-app" = "3 ms";
        "x-apple-aka-ttl" = "Generated Sat Feb 14 06:49:39 PST 2015, Expires Sat Feb 14 06:50:39 PST 2015, TTL 60s";
        "x-apple-application-instance" = 1004805;
        "x-apple-application-site" = NWK;
        "x-apple-asset-version" = 0;
        "x-apple-date-generated" = "Sat, 14 Feb 2015 14:49:39 GMT";
        "x-apple-jingle-correlation-key" = 6BRWF6KO7GR35L7YYUSA5OANTA;
        "x-apple-orig-url" = "https://itunes.apple.com/us/store";
        "x-apple-request-store-front" = "143441-1,13";
        "x-apple-translated-wo-url" = "/WebObjects/MZStore.woa/wa/storeFront?cc=us&urlDesc=";
        "x-frame-options" = SAMEORIGIN;
        "x-webobjects-loadaverage" = 0;
    2/14/15 9:55:57.426 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8e36130> connection from pid 298 with interface <AccountServiceInterface: 0x7fd7f8e017d0> (PID 298)
    2/14/15 9:55:57.476 PM storeaccountd[285]: ADI: {
        "Cache-Control" = "private, no-cache, no-store, no-transform, must-revalidate, max-age=0";
        Connection = "keep-alive";
        "Content-Encoding" = gzip;
        "Content-Length" = 229;
        "Content-Type" = "text/xml; charset=UTF-8";
        Date = "Sat, 14 Feb 2015 14:55:56 GMT";
        Expires = "Sat, 14 Feb 2015 14:55:56 GMT";
        "Set-Cookie" = "Pod=8; version=\"1\"; expires=Sat, 14-Mar-2015 13:55:56 GMT; path=/; domain=.apple.com, itspod=8; version=\"1\"; expires=Sat, 14-Mar-2015 13:55:56 GMT; path=/; domain=.apple.com, mzf_in=082356; version=\"1\"; path=/WebObjects; domain=.apple.com; secure; HttpOnly, mzf_dr=0; version=\"1\"; expires=Thu, 01-Jan-1970 00:00:00 GMT; path=/WebObjects; domain=.apple.com, ns-mzf-inst=34-233-80-109-101-8280-82356-8-st11; version=1; Max-Age=1800; path=/; domain=.apple.com; httponly";
        "Strict-Transport-Security" = "max-age=31536000";
        "apple-timing-app" = "11 ms";
        "edge-control" = "no-store, cache-maxage=0";
        itspod = 8;
        pod = 8;
        "x-apple-application-instance" = 82356;
        "x-apple-application-site" = ST11;
        "x-apple-jingle-correlation-key" = X23MLW7S3A7L3WGY4ZACXHHOII;
        "x-apple-lokamai-no-cache" = true;
        "x-apple-orig-url" = "https://p8-buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/enabledMediaTypes?gu id=A8206630705B";
        "x-apple-translated-wo-url" = "/WebObjects/MZFinance.woa/wa/enabledMediaTypes?guid=A8206630705B";
        "x-frame-options" = SAMEORIGIN;
        "x-webobjects-loadaverage" = 59;
    2/14/15 9:55:57.537 PM App Store[609]: addOperation <ISProcessPropertyListOperation: 0x6080003827d0>{name = '(null)'}
    2/14/15 9:55:57.539 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8cab200> connection from pid 609 with interface <AccountServiceInterface: 0x7fd7f8c248f0> (PID 609)
    2/14/15 9:55:57.566 PM storeaccountd[285]: ADI: {
        "Access-Control-Allow-Origin" = "*";
        "Cache-Control" = "private, no-cache, no-store, no-transform, must-revalidate, max-age=0";
        Connection = "keep-alive";
        "Content-Encoding" = gzip;
        "Content-Length" = 414;
        "Content-Type" = "text/xml; charset=UTF-8";
        Date = "Sat, 14 Feb 2015 14:55:56 GMT";
        Expires = "Sat, 14 Feb 2015 14:55:56 GMT";
        "Set-Cookie" = "Pod=8; version=\"1\"; expires=Sat, 14-Mar-2015 13:55:56 GMT; path=/; domain=.apple.com, itspod=8; version=\"1\"; expires=Sat, 14-Mar-2015 13:55:56 GMT; path=/; domain=.apple.com, mzf_in=082433; version=\"1\"; path=/WebObjects; domain=.apple.com; secure; HttpOnly, mzf_dr=0; version=\"1\"; expires=Thu, 01-Jan-1970 00:00:00 GMT; path=/WebObjects; domain=.apple.com, ns-mzf-inst=34-235-80-109-102-8282-82433-8-st11; version=1; Max-Age=1800; path=/; domain=.apple.com; httponly";
        "Strict-Transport-Security" = "max-age=31536000";
        "apple-timing-app" = "7 ms";
        "edge-control" = "no-store, cache-maxage=0";
        itspod = 8;
        pod = 8;
        "x-apple-application-instance" = 82433;
        "x-apple-application-site" = ST11;
        "x-apple-jingle-correlation-key" = DHWSJWHZWB7TIJXMUKEI2YZE54;
        "x-apple-lokamai-no-cache" = true;
        "x-apple-orig-url" = "https://p8-buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/adoptionEligibilityS rv?guid=A8206630705B";
        "x-apple-translated-wo-url" = "/WebObjects/MZFinance.woa/wa/adoptionEligibilitySrv?guid=A8206630705B";
        "x-frame-options" = SAMEORIGIN;
        "x-webobjects-loadaverage" = 56;
    2/14/15 9:55:58.478 PM storeaccountd[285]: ADI: {
        "Cache-Control" = "no-transform, max-age=10320";
        Connection = "keep-alive";
        "Content-Encoding" = gzip;
        "Content-Length" = 20771;
        "Content-Type" = "text/xml; charset=UTF-8";
        Date = "Sat, 14 Feb 2015 14:55:58 GMT";
        "Last-Modified" = "Sat, 14 Feb 2015 12:07:31 GMT";
        Server = "ATS/4.1.0";
        "Strict-Transport-Security" = "max-age=31536000";
        Vary = "Accept-Encoding, X-Apple-Store-Front, Cookie, User-Agent";
        "X-Apple-ATS-Cache-Key" = "/init.itunes.apple.com/80/WebObjects/MZInit.woa/wa/initiateSession/MacAppStore /2.0%20/143441-1/13/https/itspod=8?ix=5";
        "X-Apple-Partner" = "origin.0";
        "apple-timing-app" = "58 ms";
        "x-apple-aka-ttl" = "Generated Sat Feb 14 04:07:31 PST 2015, Expires Sat Feb 14 09:47:31 PST 2015, TTL 20400s";
        "x-apple-application-instance" = 1809;
        "x-apple-application-site" = NWK;
        "x-apple-jingle-correlation-key" = CNS27XWS4NAJ5NKGR5FANX5DTU;
        "x-apple-max-age" = 14400;
        "x-apple-orig-url" = "https://init.itunes.apple.com/WebObjects/MZInit.woa/wa/initiateSession?ix=5&user AgentCacheKey=MacAppStore%2f2.0%20";
        "x-apple-request-store-front" = "143441-1,13";
        "x-apple-translated-wo-url" = "/WebObjects/MZInit.woa/wa/initiateSession?ix=5&userAgentCacheKey=MacAppStore%2 f2.0%20";
        "x-webobjects-loadaverage" = 0;
    2/14/15 9:55:58.513 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8d1ae70> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8d34fd0> (PID 611)
    2/14/15 9:55:59.683 PM storeaccountd[285]: ADI: {
        "Cache-Control" = "no-transform, max-age=41";
        Connection = "keep-alive";
        "Content-Encoding" = gzip;
        "Content-Length" = 38524;
        "Content-Type" = "text/html; charset=UTF-8";
        Date = "Sat, 14 Feb 2015 14:55:59 GMT";
        "Last-Modified" = "Sat, 14 Feb 2015 14:52:48 GMT";
        Server = "ATS/4.1.0";
        "Strict-Transport-Security" = "max-age=31536000";
        Vary = "Accept-Encoding, X-Apple-Store-Front";
        "X-Apple-ATS-Cache-Key" = "/17.173.38.161/80/WebObjects/MZStore.woa/wa/viewGrouping/iDevice/143441-1/13/h ttps?cc=us&id=29520&mt=12";
        "X-Apple-Partner" = "origin.0";
        "apple-timing-app" = "662 ms";
        "x-apple-aka-ttl" = "Generated Sat Feb 14 06:52:48 PST 2015, Expires Sat Feb 14 06:53:48 PST 2015, TTL 60s";
        "x-apple-application-instance" = 2126439;
        "x-apple-application-site" = ST11;
        "x-apple-jingle-correlation-key" = URUSE5YX3QNM53VSQEZHESOGYQ;
        "x-apple-orig-url" = "https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewGrouping?cc=us&id=29520&m t=12";
        "x-apple-translated-wo-url" = "/WebObjects/MZStore.woa/wa/viewGrouping?cc=us&id=29520&mt=12";
        "x-frame-options" = SAMEORIGIN;
        "x-webobjects-loadaverage" = 0;
    2/14/15 9:56:00.565 PM storedownloadd[305]: DownloadServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fc4ab40e420> connection from pid 611 with interface <DownloadServiceInterface: 0x7fc4ab413c60> (PID 611)
    2/14/15 9:56:00.567 PM storeassetd[298]: AssetServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ffe92f196d0> connection from pid 611 with interface <AssetServiceInterface: 0x7ffe92f3efa0> (PID 611)
    2/14/15 9:56:00.574 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8d346b0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8d0ff50> (PID 611)
    2/14/15 9:56:00.579 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8d42370> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8d4e760> (PID 611)
    2/14/15 9:56:00.585 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8cc3980> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8cb2030> (PID 611)
    2/14/15 9:56:00.590 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8d335b0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8d6fc10> (PID 611)
    2/14/15 9:56:00.858 PM storeaccountd[285]: ADI: {
        "Access-Control-Allow-Origin" = "*";
        "Cache-Control" = "private, max-age=60";
        Connection = "keep-alive";
        "Content-Length" = 2;
        "Content-Type" = "application/json; charset=UTF-8";
        Date = "Sat, 14 Feb 2015 14:56:00 GMT";
        Expires = "Sat, 14 Feb 2015 14:57:00 GMT";
        "Strict-Transport-Security" = "max-age=31536000";
        Vary = "X-Apple-Store-Front,X-Dsid,Cookie";
        "access-control-allow-credentials" = true;
        "apple-timing-app" = "1 ms";
        "x-apple-application-instance" = 1562;
        "x-apple-application-site" = ST11;
        "x-apple-jingle-correlation-key" = Q22XHOJNG5ULCCN3GEUYYS2LVI;
        "x-webobjects-loadaverage" = 0;
    2/14/15 9:56:03.728 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8f336c0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8f2f070> (PID 611)
    2/14/15 9:56:04.372 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8ca8830> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8c9d820> (PID 611)
    2/14/15 9:56:04.378 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8d38170> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8d871b0> (PID 611)
    2/14/15 9:56:05.591 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8d8ba10> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8d5beb0> (PID 611)
    2/14/15 9:56:05.598 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8d7a280> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8d0f300> (PID 611)
    2/14/15 9:56:06.191 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8d9a540> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8d76680> (PID 611)
    2/14/15 9:56:06.197 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8d605d0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8d7c090> (PID 611)
    2/14/15 9:56:06.818 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8d6bc60> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8d49300> (PID 611)
    2/14/15 9:56:06.823 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8d9e320> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8da0990> (PID 611)
    2/14/15 9:56:06.841 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8f37630> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8f30510> (PID 611)
    2/14/15 9:56:06.845 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8f379d0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8f37d00> (PID 611)
    2/14/15 9:56:07.140 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8c69570> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8c55f70> (PID 611)
    2/14/15 9:56:07.455 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8c60cf0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8c3cd00> (PID 611)
    2/14/15 9:56:07.461 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8c55860> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8c69b80> (PID 611)
    2/14/15 9:56:07.467 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8c61f30> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8c6ee80> (PID 611)
    2/14/15 9:56:07.472 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8c67100> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8c657f0> (PID 611)
    2/14/15 9:56:07.477 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8c3cb10> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8c50a80> (PID 611)
    2/14/15 9:56:07.482 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8da5980> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8da5c00> (PID 611)
    2/14/15 9:56:07.487 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8e25260> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8e2da80> (PID 611)
    2/14/15 9:56:07.492 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8f3b540> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8f3b980> (PID 611)
    2/14/15 9:56:07.497 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8da8c20> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8da8ee0> (PID 611)
    2/14/15 9:56:07.502 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8dabe20> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8dac0e0> (PID 611)
    2/14/15 9:56:07.507 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8da4420> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8daf140> (PID 611)
    2/14/15 9:56:07.512 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8db1fa0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8db2260> (PID 611)
    2/14/15 9:56:07.517 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8c3d450> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8c3f6a0> (PID 611)
    2/14/15 9:56:07.522 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8db50b0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8db5370> (PID 611)
    2/14/15 9:56:07.527 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8c4a100> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8c5d500> (PID 611)
    2/14/15 9:56:07.533 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8f3ff10> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8f40390> (PID 611)
    2/14/15 9:56:07.538 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8db8370> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8db86b0> (PID 611)
    2/14/15 9:56:07.543 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8db8b40> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8dbb740> (PID 611)
    2/14/15 9:56:07.548 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8c6d1b0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8c69070> (PID 611)
    2/14/15 9:56:07.553 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8ce2fd0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8ce32c0> (PID 611)
    2/14/15 9:56:07.558 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8ce6100> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8ce63c0> (PID 611)
    2/14/15 9:56:07.563 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8f43600> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8f44300> (PID 611)
    2/14/15 9:56:07.568 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8ce9810> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8ce9ac0> (PID 611)
    2/14/15 9:56:07.573 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8f45ae0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8f45dd0> (PID 611)
    2/14/15 9:56:07.578 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8e297f0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8e14eb0> (PID 611)
    2/14/15 9:56:07.583 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8dc1700> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8dc1a70> (PID 611)
    2/14/15 9:56:07.588 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8f48e60> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8f49790> (PID 611)
    2/14/15 9:56:07.593 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8ced870> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8cedda0> (PID 611)
    2/14/15 9:56:07.598 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8cf0ce0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8cf0fa0> (PID 611)
    2/14/15 9:56:07.603 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8dc4e80> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8dc5240> (PID 611)
    2/14/15 9:56:07.607 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8cf42c0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8cf4680> (PID 611)
    2/14/15 9:56:07.612 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8dc82e0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8dc8b60> (PID 611)
    2/14/15 9:56:07.617 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8cf7ca0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8cf8090> (PID 611)
    2/14/15 9:56:07.622 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8dcba80> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8dcc320> (PID 611)
    2/14/15 9:56:07.627 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8dcf2d0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8dcf590> (PID 611)
    2/14/15 9:56:07.632 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8cfbdb0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8cfb190> (PID 611)
    2/14/15 9:56:07.637 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8dd2400> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8dd2ca0> (PID 611)
    2/14/15 9:56:07.642 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8e245f0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8e20670> (PID 611)
    2/14/15 9:56:07.647 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8dd6370> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8dd6710> (PID 611)
    2/14/15 9:56:07.652 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb003a90> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb003f80> (PID 611)
    2/14/15 9:56:07.657 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8dd9c10> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8dda000> (PID 611)
    2/14/15 9:56:07.664 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8ddcf50> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8ddd210> (PID 611)
    2/14/15 9:56:07.673 PM storeassetd[298]: AssetServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ffe92f20cc0> connection from pid 611 with interface <AssetServiceInterface: 0x7ffe92f20ff0> (PID 611)
    2/14/15 9:56:07.989 PM storeassetd[298]: AssetServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ffe92e10450> connection from pid 611 with interface <AssetServiceInterface: 0x7ffe92e3a4d0> (PID 611)
    2/14/15 9:56:11.904 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb007ab0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb0078d0> (PID 611)
    2/14/15 9:56:11.910 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8f4cf00> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8f4d260> (PID 611)
    2/14/15 9:56:11.916 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb00ae00> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb00b2b0> (PID 611)
    2/14/15 9:56:11.921 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb00a820> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb00cc70> (PID 611)
    2/14/15 9:56:11.926 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb011280> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb011580> (PID 611)
    2/14/15 9:56:11.931 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8ddd680> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8de0f90> (PID 611)
    2/14/15 9:56:11.937 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8de3e80> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8de4140> (PID 611)
    2/14/15 9:56:11.942 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8e1d830> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8e1b2f0> (PID 611)
    2/14/15 9:56:11.946 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8de7650> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8de7a80> (PID 611)
    2/14/15 9:56:11.951 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb00e7d0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb014be0> (PID 611)
    2/14/15 9:56:11.956 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb017b70> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb017e30> (PID 611)
    2/14/15 9:56:11.961 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8deb680> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8deb9c0> (PID 611)
    2/14/15 9:56:11.965 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8dee970> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8deec30> (PID 611)
    2/14/15 9:56:11.970 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8df1aa0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8df1d60> (PID 611)
    2/14/15 9:56:11.975 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8e3f440> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8e3f6e0> (PID 611)
    2/14/15 9:56:11.980 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8f51060> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8f51470> (PID 611)
    2/14/15 9:56:11.985 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb01b1b0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb01c530> (PID 611)
    2/14/15 9:56:11.990 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8df5210> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8df5600> (PID 611)
    2/14/15 9:56:11.994 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8df8580> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8df8840> (PID 611)
    2/14/15 9:56:11.999 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8dfb6b0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8dfb970> (PID 611)
    2/14/15 9:56:12.004 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb020720> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb020bb0> (PID 611)
    2/14/15 9:56:12.009 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8e136f0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8e13ff0> (PID 611)
    2/14/15 9:56:12.014 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8e429b0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8e42c30> (PID 611)
    2/14/15 9:56:12.019 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb023b20> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb023de0> (PID 611)
    2/14/15 9:56:12.023 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8e45950> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8e465a0> (PID 611)
    2/14/15 9:56:12.028 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb026c70> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb026f30> (PID 611)
    2/14/15 9:56:12.033 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb104ab0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb104fd0> (PID 611)
    2/14/15 9:56:12.038 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb029dc0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb02a5f0> (PID 611)
    2/14/15 9:56:12.043 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb1086d0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb107f50> (PID 611)
    2/14/15 9:56:12.048 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8e49700> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8e49a00> (PID 611)
    2/14/15 9:56:12.053 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8f55380> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8f55700> (PID 611)
    2/14/15 9:56:12.057 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb10bd10> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb10c150> (PID 611)
    2/14/15 9:56:12.062 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb10f0d0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb10f390> (PID 611)
    2/14/15 9:56:12.067 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb02e890> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb02eb30> (PID 611)
    2/14/15 9:56:12.072 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb112710> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb112ac0> (PID 611)
    2/14/15 9:56:12.077 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8f58e40> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8f587e0> (PID 611)
    2/14/15 9:56:12.082 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb115a50> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb115d80> (PID 611)
    2/14/15 9:56:12.087 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb032970> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb032c30> (PID 611)
    2/14/15 9:56:12.091 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8e4c900> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8e4d540> (PID 611)
    2/14/15 9:56:12.096 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb119840> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb119ca0> (PID 611)
    2/14/15 9:56:12.101 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb11cc30> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb11cef0> (PID 611)
    2/14/15 9:56:12.106 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb11fd60> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb120020> (PID 611)
    2/14/15 9:56:12.111 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb122e90> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb123150> (PID 611)
    2/14/15 9:56:12.116 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb036e20> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb037330> (PID 611)
    2/14/15 9:56:12.120 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb125fc0> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb126280> (PID 611)
    2/14/15 9:56:12.125 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb129160> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb129420> (PID 611)
    2/14/15 9:56:12.130 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8e50d90> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8e50ea0> (PID 611)
    2/14/15 9:56:12.135 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7f8f5d590> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7f8f5d7d0> (PID 611)
    2/14/15 9:56:12.140 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb03b670> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb03bb80> (PID 611)
    2/14/15 9:56:12.145 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb12ca30> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb12cd10> (PID 611)
    2/14/15 9:56:12.149 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb03ef90> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb03f380> (PID 611)
    2/14/15 9:56:12.154 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb042310> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb0425d0> (PID 611)
    2/14/15 9:56:12.159 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb045440> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb045700> (PID 611)
    2/14/15 9:56:12.164 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb12fc80> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb1313d0> (PID 611)
    2/14/15 9:56:12.168 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb048a80> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb048e30> (PID 611)
    2/14/15 9:56:25.375 PM storeaccountd[285]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd7fb131990> connection from pid 611 with interface <AccountServiceInterface: 0x7fd7fb134ac0> (PID 611)
    2/14/15 9:56:26.174 PM locationd[54]: Location icon should now be in state 'Active'
    2/14/15 9:56:37.238 PM locationd[54]: Location icon should now be in state 'Inactive'
    2/14/15 9:56:45.034 PM locationd[54]: Location icon should now be in state 'Active'
    2/14/15 9:57:31.720 PM Spotlight[230]: Hang timer fired; exiting
    2/14/15 9:57:31.721 PM SystemUIServer[201]: Spotlight: Service connection interrupted!
    2/14/15 9:57:31.722 PM spindump[423]: Got xpc error message in libspindump client connection: Connection invalid
    2/14/15 9:57:47.065 PM Spotlight[624]: applications query - started
    2/14/15 9:57:47.093 PM Spotlight[624]: applications query - finished in 0.028 seconds
    2/14/15 9:58:05.005 PM locationd[54]: Location icon should now be in state 'Inactive'
    2/14/15 10:03:51.071 PM loginwindow[64]: ERROR | +[LWNotifyServer shutdown] | LWNotifyServer shutdown called with server nil
    2/14/15 10:04:15.540 PM loginwindow[64]: ERROR | -[SessionLogoutManager quitFinder] | Attempt to set quit finder when alreay set, phase: 6
    2/14/15 10:04:17.351 PM garcon[339]: host connection <NSXPCConnection: 0x60800010b760> connection from pid 202 invalidated
    2/14/15 10:04:17.352 PM spindump[423]: Got xpc error message in libspindump client connection: Connection invalid
    2/14/15 10:04:17.368 PM loginwindow[64]: Login Window point of no return
    2/14/15 10:04:17.832 PM UserEventAgent[16]: Captive: [UserAgentDied:143] User Agent @port=74767 Died
    2/14/15 10:04:18.167 PM lsuseractivityd[314]: [SFActivityAdvertiser] ERROR: lost XPC connection
    2/14/15 10:04:18.168 PM lsuseractivityd[314]: [SFContinuityScanManager] ERROR: lost XPC connection
    2/14/15 10:04:19.419 PM sessionlogoutd[649]: sessionlogoutd Launched

  • Console crash when viewing all Incidents etc.

    On one of our systems when any user views "All Open Incidents", or any view that has a large number of work items, or attempts to search for a large number of work items the console crashes.  The error logs are as follows:
    OperationsManger log
    Log Name:      Operations Manager
    Source:        Service Manager Console
    Date:          1/23/2014 3:41:55 PM
    Event ID:      34502
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      computer.domain.com
    Description:
    System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.BadImageFormatException:  is not a valid Win32 application. (Exception from HRESULT: 0x800700C1)
       at System.Reflection.Module._GetHINSTANCE()
       at System.Runtime.InteropServices.Marshal.GetHINSTANCE(Module m)
       at System.Windows.Controls.GridViewColumnHeader.GetCursor(Int32 cursorID)
       at System.Windows.Controls.GridViewColumnHeader.get_SplitCursor()
       at System.Windows.Controls.GridViewColumnHeader.HookupGripperEvents()
       at System.Windows.FrameworkElement.ApplyTemplate()
       at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
       at System.Windows.UIElement.Measure(Size availableSize)
       at System.Windows.Controls.GridViewHeaderRowPresenter.MeasureOverride(Size constraint)
       at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
       at System.Windows.UIElement.Measure(Size availableSize)
       at System.Windows.ContextLayoutManager.UpdateLayout()
       at System.Windows.ContextLayoutManager.UpdateLayoutCallback(Object arg)
       at System.Windows.Media.MediaContext.FireInvokeOnRenderCallbacks()
       at System.Windows.Media.MediaContext.RenderMessageHandlerCore(Object resizedCompositionTarget)
       at System.Windows.Media.MediaContext.RenderMessageHandler(Object resizedCompositionTarget)
       at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Boolean isSingleParameter)
       at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)
       at System.Windows.Threading.DispatcherOperation.InvokeImpl()
       at System.Threading.ExecutionContext.runTryCode(Object userData)
       at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Windows.Threading.DispatcherOperation.Invoke()
       at System.Windows.Threading.Dispatcher.ProcessQueue()
       at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
       at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
       at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
       at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Boolean isSingleParameter)
       at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)
       at System.Windows.Threading.Dispatcher.InvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Boolean isSingleParameter)
       at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
       at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
       at System.Windows.Threading.Dispatcher.TranslateAndDispatchMessage(MSG& msg)
       at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
       at System.Windows.Window.ShowHelper(Object booleanBox)
       at System.Windows.Window.Show()
       at System.Windows.Window.ShowDialog()
       at Microsoft.EnterpriseManagement.ConsoleFramework.WindowManager.GenericWpfWindowConstructor.BeginShow(ShowViewContext showViewContext, Object parent, Object view, AsyncCallback callback, Object state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.ViewConstructor.BeginShow(ShowViewContext showViewContext, AsyncCallback callback, Object state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.WindowManager.WpfWindowRecord.ShowWindow()
       --- End of inner exception stack trace ---
       at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
       at System.Delegate.DynamicInvokeImpl(Object[] args)
       at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Boolean isSingleParameter)
       at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)
       at System.Windows.Threading.DispatcherOperation.InvokeImpl()
       at System.Threading.ExecutionContext.runTryCode(Object userData)
       at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Windows.Threading.DispatcherOperation.Invoke()
       at System.Windows.Threading.Dispatcher.ProcessQueue()
       at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
       at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
       at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
       at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Boolean isSingleParameter)
       at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)
       at System.Windows.Threading.Dispatcher.InvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Boolean isSingleParameter)
       at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
       at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
       at System.Windows.Threading.Dispatcher.TranslateAndDispatchMessage(MSG& msg)
       at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
       at System.Windows.Application.RunInternal(Window window)
       at Microsoft.EnterpriseManagement.ConsoleFramework.ConsoleApplication.LaunchWindow()
       at Microsoft.EnterpriseManagement.ConsoleFramework.ConsoleApplication.Run()
       at Microsoft.EnterpriseManagement.ServiceManager.UI.Console.Program.Main()
    Application Log:
    Log Name:      Application
    Source:        Windows Error Reporting
    Date:          1/24/2014 8:14:01 AM
    Event ID:      1001
    Task Category: None
    Level:         Information
    Keywords:      Classic
    User:          N/A
    Computer:      computer.domain.com
    Description:
    Fault bucket , type 0
    Event Name: CLR20r3
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: MIISDOYLP4JANZLHYCZWCU3FX1QY0RNK
    P2: 7.0.5000.0
    P3: 522c3fa7
    P4: mscorlib
    P5: 2.0.0.0
    P6: 5174de33
    P7: 20cd
    P8: 100
    P9: N3CTRYE2KN3C34SGL4ZQYRBFTE4M13NB
    P10:
    Attached files:
    C:\Users\JohnDoe\AppData\Local\Temp\WERE0FE.tmp.WERInternalMetadata.xml
    These files may be available here:
    C:\Users\JohnDoe\AppData\Local\Microsoft\Windows\WER\ReportArchive\AppCrash_MIISDOYLP4JANZLH_6dfc979bc8d5f75eaa911becb875e5c01be8de4c_19fbe745
    Analysis symbol:
    Rechecking for solution: 0
    Report Id: 25f7632d-850a-11e3-8403-18037318dc3c
    Report Status: 1
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Windows Error Reporting" />
        <EventID Qualifiers="0">1001</EventID>
        <Level>4</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-01-24T15:14:01.000000000Z" />
        <EventRecordID>14920</EventRecordID>
        <Channel>Application</Channel>
        <Computer>EAS-CSMITH.boisestate.edu</Computer>
        <Security />
      </System>
      <EventData>
        <Data>
        </Data>
        <Data>0</Data>
        <Data>CLR20r3</Data>
        <Data>Not available</Data>
        <Data>0</Data>
        <Data>MIISDOYLP4JANZLHYCZWCU3FX1QY0RNK</Data>
        <Data>7.0.5000.0</Data>
        <Data>522c3fa7</Data>
        <Data>mscorlib</Data>
        <Data>2.0.0.0</Data>
        <Data>5174de33</Data>
        <Data>20cd</Data>
        <Data>100</Data>
        <Data>N3CTRYE2KN3C34SGL4ZQYRBFTE4M13NB</Data>
        <Data>
        </Data>
        <Data>
    C:\Users\JohnDoe\AppData\Local\Temp\WERE0FE.tmp.WERInternalMetadata.xml</Data>
        <Data>C:\Users\JohnDoe\AppData\Local\Microsoft\Windows\WER\ReportArchive\AppCrash_MIISDOYLP4JANZLH_6dfc979bc8d5f75eaa911becb875e5c01be8de4c_19fbe745</Data>
        <Data>
        </Data>
        <Data>0</Data>
        <Data>25f7632d-850a-11e3-8403-18037318dc3c</Data>
        <Data>1</Data>
      </EventData>
    </Event>
    Version=1
    EventType=CLR20r3
    EventTime=130350500394393791
    ReportType=2
    Consent=1
    UploadTime=130350500395023917
    ReportIdentifier=25f7632d-850a-11e3-8403-18037318dc3c
    Response.type=4
    Sig[0].Name=Problem Signature 01
    Sig[0].Value=MIISDOYLP4JANZLHYCZWCU3FX1QY0RNK
    Sig[1].Name=Problem Signature 02
    Sig[1].Value=7.0.5000.0
    Sig[2].Name=Problem Signature 03
    Sig[2].Value=522c3fa7
    Sig[3].Name=Problem Signature 04
    Sig[3].Value=mscorlib
    Sig[4].Name=Problem Signature 05
    Sig[4].Value=2.0.0.0
    Sig[5].Name=Problem Signature 06
    Sig[5].Value=5174de33
    Sig[6].Name=Problem Signature 07
    Sig[6].Value=20cd
    Sig[7].Name=Problem Signature 08
    Sig[7].Value=100
    Sig[8].Name=Problem Signature 09
    Sig[8].Value=N3CTRYE2KN3C34SGL4ZQYRBFTE4M13NB
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.1.7601.2.1.0.256.4
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=1033
    UI[2]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.ServiceManager.UI.Console.exe
    UI[3]=Microsoft.EnterpriseManagement.ServiceManager.UI.Consol has stopped working
    UI[4]=Windows can check online for a solution to the problem.
    UI[5]=Check online for a solution and close the program
    UI[6]=Check online for a solution later and close the program
    UI[7]=Close the program
    LoadedModule[0]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.ServiceManager.UI.Console.exe
    LoadedModule[1]=C:\WINDOWS\SYSTEM32\ntdll.dll
    LoadedModule[2]=C:\WINDOWS\SYSTEM32\MSCOREE.DLL
    LoadedModule[3]=C:\WINDOWS\system32\KERNEL32.dll
    LoadedModule[4]=C:\WINDOWS\system32\KERNELBASE.dll
    LoadedModule[5]=C:\WINDOWS\system32\apphelp.dll
    LoadedModule[6]=C:\WINDOWS\AppPatch\AppPatch64\AcGenral.DLL
    LoadedModule[7]=C:\WINDOWS\system32\SspiCli.dll
    LoadedModule[8]=C:\WINDOWS\system32\msvcrt.dll
    LoadedModule[9]=C:\WINDOWS\system32\RPCRT4.dll
    LoadedModule[10]=C:\WINDOWS\system32\SHLWAPI.dll
    LoadedModule[11]=C:\WINDOWS\system32\GDI32.dll
    LoadedModule[12]=C:\WINDOWS\system32\USER32.dll
    LoadedModule[13]=C:\WINDOWS\system32\LPK.dll
    LoadedModule[14]=C:\WINDOWS\system32\USP10.dll
    LoadedModule[15]=C:\WINDOWS\system32\ole32.dll
    LoadedModule[16]=C:\WINDOWS\system32\SHELL32.dll
    LoadedModule[17]=C:\WINDOWS\system32\sfc.dll
    LoadedModule[18]=C:\WINDOWS\system32\sfc_os.DLL
    LoadedModule[19]=C:\WINDOWS\system32\USERENV.dll
    LoadedModule[20]=C:\WINDOWS\system32\profapi.dll
    LoadedModule[21]=C:\WINDOWS\system32\dwmapi.dll
    LoadedModule[22]=C:\WINDOWS\system32\ADVAPI32.dll
    LoadedModule[23]=C:\WINDOWS\SYSTEM32\sechost.dll
    LoadedModule[24]=C:\WINDOWS\system32\MPR.dll
    LoadedModule[25]=C:\WINDOWS\system32\IMM32.DLL
    LoadedModule[26]=C:\WINDOWS\system32\MSCTF.dll
    LoadedModule[27]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscoreei.dll
    LoadedModule[28]=C:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorwks.dll
    LoadedModule[29]=C:\WINDOWS\WinSxS\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6229_none_88dcc0bf2fb1b808\MSVCR80.dll
    LoadedModule[30]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\mscorlib\88744044294787b99dd4a8704ab75a79\mscorlib.ni.dll
    LoadedModule[31]=C:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorsec.dll
    LoadedModule[32]=C:\WINDOWS\system32\WINTRUST.dll
    LoadedModule[33]=C:\WINDOWS\system32\CRYPT32.dll
    LoadedModule[34]=C:\WINDOWS\system32\MSASN1.dll
    LoadedModule[35]=C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.18201_none_a4d3b9377117c3df\COMCTL32.dll
    LoadedModule[36]=C:\WINDOWS\system32\CRYPTSP.dll
    LoadedModule[37]=C:\WINDOWS\system32\rsaenh.dll
    LoadedModule[38]=C:\WINDOWS\system32\CRYPTBASE.dll
    LoadedModule[39]=C:\WINDOWS\system32\imagehlp.dll
    LoadedModule[40]=C:\WINDOWS\system32\ncrypt.dll
    LoadedModule[41]=C:\WINDOWS\system32\bcrypt.dll
    LoadedModule[42]=C:\WINDOWS\system32\bcryptprimitives.dll
    LoadedModule[43]=C:\WINDOWS\system32\GPAPI.dll
    LoadedModule[44]=C:\WINDOWS\system32\cryptnet.dll
    LoadedModule[45]=C:\WINDOWS\system32\WLDAP32.dll
    LoadedModule[46]=C:\WINDOWS\system32\SensApi.dll
    LoadedModule[47]=C:\WINDOWS\system32\uxtheme.dll
    LoadedModule[48]=C:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorjit.dll
    LoadedModule[49]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System\af0a0b96a02f9925eb84392ee65a5cfa\System.ni.dll
    LoadedModule[50]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\WindowsBase\fd08d5ddc926ae51bf653620202e8d19\WindowsBase.ni.dll
    LoadedModule[51]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\PresentationCore\4ea564f9fd06e0fb40a42acf7693b81a\PresentationCore.ni.dll
    LoadedModule[52]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\PresentationFramewo#\3f0016119cbaccffc68806e1c91da0fc\PresentationFramework.ni.dll
    LoadedModule[53]=C:\Windows\Microsoft.NET\Framework64\v3.0\WPF\wpfgfx_v0300.dll
    LoadedModule[54]=C:\WINDOWS\system32\OLEAUT32.dll
    LoadedModule[55]=C:\WINDOWS\system32\RpcRtRemote.dll
    LoadedModule[56]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\en\Microsoft.EnterpriseManagement.ServiceManager.UI.Console.resources.dll
    LoadedModule[57]=C:\WINDOWS\system32\urlmon.dll
    LoadedModule[58]=C:\WINDOWS\system32\api-ms-win-downlevel-ole32-l1-1-0.dll
    LoadedModule[59]=C:\WINDOWS\system32\api-ms-win-downlevel-shlwapi-l1-1-0.dll
    LoadedModule[60]=C:\WINDOWS\system32\api-ms-win-downlevel-advapi32-l1-1-0.dll
    LoadedModule[61]=C:\WINDOWS\system32\api-ms-win-downlevel-user32-l1-1-0.dll
    LoadedModule[62]=C:\WINDOWS\system32\api-ms-win-downlevel-version-l1-1-0.dll
    LoadedModule[63]=C:\WINDOWS\system32\version.DLL
    LoadedModule[64]=C:\WINDOWS\system32\api-ms-win-downlevel-normaliz-l1-1-0.dll
    LoadedModule[65]=C:\WINDOWS\system32\normaliz.DLL
    LoadedModule[66]=C:\WINDOWS\system32\iertutil.dll
    LoadedModule[67]=C:\WINDOWS\system32\WININET.dll
    LoadedModule[68]=C:\WINDOWS\system32\WindowsCodecs.dll
    LoadedModule[69]=C:\WINDOWS\system32\d3d9.dll
    LoadedModule[70]=C:\WINDOWS\system32\d3d8thk.dll
    LoadedModule[71]=C:\WINDOWS\system32\igdumd64.dll
    LoadedModule[72]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\PresentationFramewo#\56d7206478a1eb28089a8efbdf921bf2\PresentationFramework.Aero.ni.dll
    LoadedModule[73]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.UI.ConsoleFramework.dll
    LoadedModule[74]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Core\7140611b14c038e25f80544af4f1ab61\System.Core.ni.dll
    LoadedModule[75]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\Microsoft.Enterpris#\219cbb4f3ce5f87b8a9ef399ad5c4cfb\Microsoft.EnterpriseManagement.UI.Foundation.ni.dll
    LoadedModule[76]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.Config.dll
    LoadedModule[77]=C:\WINDOWS\system32\WINMM.dll
    LoadedModule[78]=C:\WINDOWS\system32\PresentationNative_v0300.dll
    LoadedModule[79]=C:\WINDOWS\system32\CLBCatQ.DLL
    LoadedModule[80]=C:\WINDOWS\system32\msctfui.dll
    LoadedModule[81]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Xml\3975acf49313ceea1280da91f0383480\System.Xml.ni.dll
    LoadedModule[82]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.ServiceModel#\d0b2bd083ff5a1efa6204ff05da77ecc\System.ServiceModel.Web.ni.dll
    LoadedModule[83]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.ServiceModel\6973c0f29a5f8c44bcfeff58f66496bc\System.ServiceModel.ni.dll
    LoadedModule[84]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\SMDiagnostics\866066edf3131203ffed980bf90092d8\SMDiagnostics.ni.dll
    LoadedModule[85]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Drawing\868d117286ad259249f31d3fe813d39a\System.Drawing.ni.dll
    LoadedModule[86]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Windows.Forms\994b9a807cc6fa0c8d1a9ae90ab685ac\System.Windows.Forms.ni.dll
    LoadedModule[87]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.UI.SdkDataAccess.dll
    LoadedModule[88]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.UI.Core.dll
    LoadedModule[89]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.ServiceManager.Datawarehouse.Common.dll
    LoadedModule[90]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.SqmBase.dll
    LoadedModule[91]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.ServiceManager.Application.Common.dll
    LoadedModule[92]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.UI.ViewFramework.dll
    LoadedModule[93]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\Microsoft.Enterpris#\60d090ba529ce6adf7c622edf33ade55\Microsoft.EnterpriseManagement.Core.ni.dll
    LoadedModule[94]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.CSVImport.dll
    LoadedModule[95]=C:\WINDOWS\assembly\GAC_MSIL\Microsoft.EnterpriseManagement.DataWarehouse\7.0.5000.0__31bf3856ad364e35\Microsoft.EnterpriseManagement.DataWarehouse.dll
    LoadedModule[96]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.UI.ReportingFramework.dll
    LoadedModule[97]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Management.A#\7a1fc9031d16ecdc3bb5723cabb4bd9c\System.Management.Automation.ni.dll
    LoadedModule[98]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\Microsoft.PowerShel#\7b939f994e02589512bdcc9230f0cb9b\Microsoft.PowerShell.Commands.Diagnostics.ni.dll
    LoadedModule[99]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Configuratio#\584957503dbd747f204abd55e5e6fab0\System.Configuration.Install.ni.dll
    LoadedModule[100]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\Microsoft.WSMan.Man#\7b8999936ff5dd60f6f1c2f1ac5db732\Microsoft.WSMan.Management.ni.dll
    LoadedModule[101]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Transactions\aedc9c10f3875976af459b0209a8d09f\System.Transactions.ni.dll
    LoadedModule[102]=C:\WINDOWS\assembly\GAC_64\System.Transactions\2.0.0.0__b77a5c561934e089\System.Transactions.dll
    LoadedModule[103]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\Microsoft.PowerShel#\f9e9ab1e503d194219ac97026b2badc9\Microsoft.PowerShell.Commands.Utility.ni.dll
    LoadedModule[104]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\Microsoft.PowerShel#\094bf8f44f9e075a504402d18eb8eca7\Microsoft.PowerShell.ConsoleHost.ni.dll
    LoadedModule[105]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\Microsoft.PowerShel#\1c42012c68aae8024396285803ada62e\Microsoft.PowerShell.Commands.Management.ni.dll
    LoadedModule[106]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\Microsoft.PowerShel#\5b29687a6c4d30cae62b2b89ae9b2b25\Microsoft.PowerShell.Security.ni.dll
    LoadedModule[107]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Management\7e1a0f53a8580321c5902b6867c3f7da\System.Management.ni.dll
    LoadedModule[108]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.DirectorySer#\c53e24a4b319ed8e0abe6b4a8ffaf871\System.DirectoryServices.ni.dll
    LoadedModule[109]=C:\WINDOWS\system32\shfolder.dll
    LoadedModule[110]=C:\WINDOWS\system32\secur32.dll
    LoadedModule[111]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Data\5e957216f11830cbc49b4b30314e0e10\System.Data.ni.dll
    LoadedModule[112]=C:\WINDOWS\assembly\GAC_64\System.Data\2.0.0.0__b77a5c561934e089\System.Data.dll
    LoadedModule[113]=C:\WINDOWS\system32\WS2_32.dll
    LoadedModule[114]=C:\WINDOWS\system32\NSI.dll
    LoadedModule[115]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Bid2ETW.dll
    LoadedModule[116]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.ServiceManager.Cmdlets.dll
    LoadedModule[117]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.Core.Cmdlets.dll
    LoadedModule[118]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.ServiceManager.Sdk.dll
    LoadedModule[119]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.ServiceManager.OpsMgrConnectorUtils.dll
    LoadedModule[120]=C:\WINDOWS\system32\MSISIP.DLL
    LoadedModule[121]=C:\Windows\system32\wshext.dll
    LoadedModule[122]=C:\WINDOWS\system32\COMDLG32.dll
    LoadedModule[123]=C:\Windows\System32\WindowsPowerShell\v1.0\pwrshsip.dll
    LoadedModule[124]=C:\WINDOWS\system32\api-ms-win-downlevel-advapi32-l2-1-0.dll
    LoadedModule[125]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.Warehouse.Cmdlets.dll
    LoadedModule[126]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Configuration\fed86e49fe95761085bf287f901f5b53\System.Configuration.ni.dll
    LoadedModule[127]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\sqmapi.dll
    LoadedModule[128]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\en\Microsoft.EnterpriseManagement.UI.ConsoleFramework.resources.dll
    LoadedModule[129]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.UI.Controls.dll
    LoadedModule[130]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.UI.Extensions.dll
    LoadedModule[131]=C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.18120_none_2b25b14c71ebf230\gdiplus.dll
    LoadedModule[132]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\en\Microsoft.EnterpriseManagement.UI.Controls.resources.dll
    LoadedModule[133]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\WindowsFormsIntegra#\fffa833a307c3ad981d98b81311f2ad3\WindowsFormsIntegration.ni.dll
    LoadedModule[134]=C:\WINDOWS\system32\mscms.dll
    LoadedModule[135]=C:\WINDOWS\system32\WindowsCodecsExt.dll
    LoadedModule[136]=C:\WINDOWS\system32\icm32.dll
    LoadedModule[137]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\UIAutomationProvider\c179449be86cec9547455e9c93276b31\UIAutomationProvider.ni.dll
    LoadedModule[138]=C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_fa396087175ac9ac\comctl32.dll
    LoadedModule[139]=C:\WINDOWS\assembly\GAC_MSIL\Microsoft.EnterpriseManagement.ServiceManager\7.0.5000.0__31bf3856ad364e35\Microsoft.EnterpriseManagement.ServiceManager.dll
    LoadedModule[140]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.Warehouse.Utility.dll
    LoadedModule[141]=C:\WINDOWS\system32\mswsock.dll
    LoadedModule[142]=C:\WINDOWS\System32\wshtcpip.dll
    LoadedModule[143]=C:\WINDOWS\System32\wship6.dll
    LoadedModule[144]=C:\WINDOWS\system32\DNSAPI.dll
    LoadedModule[145]=C:\Program Files\Bonjour\mdnsNSP.dll
    LoadedModule[146]=C:\WINDOWS\system32\Iphlpapi.DLL
    LoadedModule[147]=C:\WINDOWS\system32\WINNSI.DLL
    LoadedModule[148]=C:\WINDOWS\system32\rasadhlp.dll
    LoadedModule[149]=C:\WINDOWS\System32\fwpuclnt.dll
    LoadedModule[150]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.IdentityModel\41a16e1dfb51a3cd7ff0a3e90d65a52d\System.IdentityModel.ni.dll
    LoadedModule[151]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Runtime.Seri#\dbfc784cc4bde7b16fb471e14563569d\System.Runtime.Serialization.ni.dll
    LoadedModule[152]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.WorkflowServ#\d7c578deb0027604d209391ef50f0279\System.WorkflowServices.ni.dll
    LoadedModule[153]=C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.Diagnostics.ServiceModelSink\3.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Diagnostics.ServiceModelSink.dll
    LoadedModule[154]=C:\WINDOWS\system32\NLAapi.dll
    LoadedModule[155]=C:\WINDOWS\system32\napinsp.dll
    LoadedModule[156]=C:\WINDOWS\system32\pnrpnsp.dll
    LoadedModule[157]=C:\WINDOWS\System32\winrnr.dll
    LoadedModule[158]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Web\ffcb92605ae455c5763d0cf2afa82ed2\System.Web.ni.dll
    LoadedModule[159]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.EnterpriseSe#\1163a3233beb99d037b873460fb0cea8\System.EnterpriseServices.ni.dll
    LoadedModule[160]=C:\WINDOWS\system32\security.dll
    LoadedModule[161]=C:\WINDOWS\system32\credssp.dll
    LoadedModule[162]=C:\WINDOWS\system32\msv1_0.DLL
    LoadedModule[163]=C:\WINDOWS\system32\cryptdll.dll
    LoadedModule[164]=C:\Windows\Microsoft.NET\Framework64\v2.0.50727\diasymreader.dll
    LoadedModule[165]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.IdentityMode#\7f6a69750009da16f7b953b6ba8f4e0a\System.IdentityModel.Selectors.ni.dll
    LoadedModule[166]=C:\WINDOWS\system32\schannel.DLL
    LoadedModule[167]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\en\Microsoft.EnterpriseManagement.Core.resources.dll
    LoadedModule[168]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.Common.dll
    LoadedModule[169]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\en\Microsoft.EnterpriseManagement.UI.SdkDataAccess.resources.dll
    LoadedModule[170]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Xml.Linq\cfd4d6a6ccde1323b6ecb279483718f1\System.Xml.Linq.ni.dll
    LoadedModule[171]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\en\Microsoft.EnterpriseManagement.DataWarehouse.resources.dll
    LoadedModule[172]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Web.Services\60231551ebd3098f5595b2278f168a37\System.Web.Services.ni.dll
    LoadedModule[173]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.UI.WpfViews.dll
    LoadedModule[174]=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\en\Microsoft.EnterpriseManagement.UI.WpfViews.resources.dll
    LoadedModule[175]=C:\WINDOWS\system32\rasapi32.dll
    LoadedModule[176]=C:\WINDOWS\system32\rasman.dll
    LoadedModule[177]=C:\WINDOWS\system32\rtutils.dll
    LoadedModule[178]=C:\WINDOWS\system32\winhttp.dll
    LoadedModule[179]=C:\WINDOWS\system32\webio.dll
    LoadedModule[180]=C:\WINDOWS\system32\dhcpcsvc6.DLL
    LoadedModule[181]=C:\WINDOWS\system32\dhcpcsvc.DLL
    LoadedModule[182]=C:\WINDOWS\system32\CFGMGR32.dll
    LoadedModule[183]=C:\WINDOWS\system32\WtsApi32.dll
    LoadedModule[184]=C:\WINDOWS\system32\WINSTA.dll
    LoadedModule[185]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\Accessibility\ac8fcb25480f6a106783ce1c3fe92e3e\Accessibility.ni.dll
    FriendlyEventName=Stopped working
    ConsentKey=CLR20r3
    AppName=Microsoft.EnterpriseManagement.ServiceManager.UI.Consol
    AppPath=C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Microsoft.EnterpriseManagement.ServiceManager.UI.Console.exe
    ReportDescription=Stopped working
    I have tried to reinstall the console and recreated the Users profile but the problem still persists.  This affects all users that use the machine.  On other machines they are able operate just fine.  Any Ideas on what could be causing this?

    Maybe not enough RAM on the box? 
    I would also clear the cache on the box which may help
    Open the Operations console with the /clearcache parameter.
    "C:\Program Files\System Center Operations Manager 2012\Console\Microsoft.EnterpriseManagement.Monitoring.Console.exe" /clearcache
    http://technet.microsoft.com/en-us/library/hh212884.aspx

  • 2 iphoto libraries? and viewing all thumbnails but can't view landscape

    We have 2 users set up on the computer and I have recently noticed that the iphoto libraries in each of the users/pictures folder don't seem to be the same size. Are these truly 2 different libraries based on which account our photos were imported into?
    AND, my recent imports into iPhoto seems to be behaving 'funny'. I can view all the thumbnails, but, when I try to open any landscape photos, the picture flashes, and then I only see a black screen. The portrait photos in the same event are viewing without issue? Any ideas?

    iPhoto is based on a database. Once you import/copy the photos into the library you can add a photo to multiple items, i.e. albums, books, calendars, without having to duplicate the original image file. All management of the photo is done within iPhoto and it's database. All access to photos for use in or out of iPhoto is done from within iPhoto. There's no need to get into the library via the Finder.
    The following is from one of Terence Devlin’s posts on file access for use outside of iPhoto. It’s the definitive treatise on the subject.
    Since iPhoto 7 (iLife 08) the old iPhoto Library Folder is now a Package File. This is simply a folder that looks like a file in the Finder. The change was made to the format of the iPhoto library because many users were inadvertently corrupting their library by browsing through it with other software or making changes in it themselves.
    Accessing the iPhoto Library Folder directly has never been supported in any version of iPhoto.
    There are many, many ways to access your files in iPhoto:
    For Users of 10.5 and later
    You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    Uploaded with plasq's Skitch!
    For users of 10.4 and later ...
    Many internet sites such as Flickr and SmugMug have plug-ins for accessing the iPhoto Library. If the site you want to use doesn’t then some, one or any of these will also work:
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. However, if you're using Gmail you can use iPhoto2GMail
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    If you want to access the files with iPhoto not running:
    For users of 10.6 and later:
    You can download a free Services component from MacOSXAutomation which will give you access to the iPhoto Library from your Services Menu. Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and later:
    Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    1. Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. Show File: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    All of the above are a: faster and b: Safer than rooting around in the old Library Folder.

  • View *all* databases in oracle 8i

    Hello all,
    Is there a statement/command which i can type to view ALL the databases in the oracle8i database. I am having a certain problem with an application which is using the database, only i am not aware which database it is using!! I do have dba priviledges..
    Thanks in advance

    You cannot do this from SQL*Plus. SQL*Plus connects to a single database. From there you can see any other database your database has a link to. You can see which databases those are by querying DBA_DB_LINKS. That is not necessarily the same thing as all "the databases in the system". If all your databases are linked to the database you're connecting to, then you can monitor them through SQL*Plus - you just have to suffix everything in the FROM clause with @db_name.db_link. Which is a lot of hard work: OEM does make this sort of thing very easy.
    Rgds, APC

  • Can't view all my Spaces?

    In the old MacBooks (black and white), I could set functions to my keys so that I could view all my Spaces. For example, I'd assign show Spaces to F5 so when I'd click F5, I could see all my four spaces laid out on the screen.
    The new MacBook seems to have all function keys filled up now though. Even if I assign the show Spaces function to them, none of them ever show me all my Spaces. Real pain when I want to transfer one application's window to another Space.
    Any tips how I could be able to switch to that view all Spaces screen?

    try the multi-touch gestures and see if that will let you switch

  • SAP TABLE TO VIEW THE APPLICATION LOGS OF IDOCS

    Hi,
    Can you please suggest where I can see the table to view the application logs in idocs. We can see this individually in SLG1 or MM90. But I need to see it collectively to see all the error messages. Please suggest.

    Hi
    You can check tables:
    EDIDC- for control records
    EDID4-for Data Records
    EDIDS-for Status records
    You can also use T Code WE02 or WE05
    Thanks & Regards
    Sanil Bhandari

  • CM12 - Reporting all Application Dependencies

    Dear all, we have CM12 with 2000 applications defined. Some of the applications have dependencies set.
    How to report all applications that have dependencies AND what those links are ?
    From the Console GUI it is possible to add the "References" attribute that reports which applications have a reference to another application. How to obtain a list of all dependencies and clearly see which application is a parent, which is a child
    Have searched the net and forums without an answer but see others have asked.
    D

    Hi
    If you want to see from inside the ConfigMgr 2012 console, you have to do the following per application:
    Select the application
    From the Ribbon, select View RelationShips -> Dependency
    You will then get dependencies for that application shown graphically
    If you want to see dependencies for all your applications, you will have to use reporting. I cannot remember if such a report exists that will give that information but I do not think so. So you will have to create such a report yourself or wait for others
    in this forum to give you more information.

  • Powershell script to Add global condition (of OS Requirement) to ALL application deployment types

    Looking for an automated way via Powershell to Add global condition (of OS Requirement) to ALL application deployment types.
    We currently have over 300+ Applications in SCCM and looking for an automated way of adding a global condition where OS requirement is equal to Windows 7 instead of the default of Any OS.
    a

    Hi,
    Here is a Adam Meltzer's blog about how to create an Application with a requirement rule pointing to a global condition. You could have a look.
    http://blogs.msdn.com/b/ameltzer/archive/2012/10/23/how-to-create-an-application-with-a-requirement-rule-pointing-to-a-global-condition.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.

  • After installing Acrobat/Reader on Windows 7 or Vista, icons of all applications/file-types change t

    After installing Acrobat/Reader on Windows 7 or Vista, icons of all applications/file-types change to Acrobat/Reader icon and double clicking on any icon/file launches Acrobat/Reader (instead of the native application associated to the file type). Is there an easy fix for this problem?

    I'm sorry, but I wasn't aware of a native PDF viewer for Windows.
    Nonetheless, if you want to change your default PDF application in Windows, you need to right click on any .PDF file, select "Properties",
    then "Change",
    then select the program you want to open a PDF with.

Maybe you are looking for

  • Keybord is not working properly in win7/bootcamp, there is no"@"

    I am running win 7 in bootcamp 3.3, i have also installed outlook 2010. Now i cannot use the "@" in mail adresses. the 2L2 is working properly. It is also possible to create an "@" by using a external windows keybord. has anyone a idea to make a shor

  • Using a template engine in a portlet, possible?

    Hi there, When developing servlets I've always used webmacro as a template engine, separating the code (java) from the layout (html). With Portlets it seems that people put their html within the java code. Are there any template engine solutions avai

  • Acrobat Pro X: File Open closes down program

    Just installed my licensed copy of Acrobat Pro X on Windows 7-  64 BIT with lots of RAM & a great processor; I am a retired computer science teacher so am no novice. When I try to open any local  a PDF on my hard drive by navigating within Acrobat Pr

  • Integrate BI reports in Portals

    Hi,     I am new to portals.I need to integrate BI reports in portals.So i need to know what are the things to install for the integration.Its very urgent.If any one knows abt this pls let me know as soon as possible. Regards, Laxmi.

  • Opening iCloud doc on desktop pages

    For some reason, though I've been working on a document stored in iCloud for a couple of weeks on the desktop version of Pages - 5.01 - as of this evening it will no longer open. I can open it on the iPad, though it is absent some of the fonts I'm us