File explorer application and reader folder xperia

can you please explain what and where these are and how to access them, thanks.
Solved!
Go to Solution.

Hi
I think there’s no “file explorer application and reader folder xperia”!
There’s only an app named “File transfer”…
or  you can use “file explorers” of other apps (like OfficeSuite, if available, to navigate on folders…)
The only real solution, is to download an app from Play Store.
I use “File Manager”(Explorer) or “File Manager HD”(Tablet) (Rhythm Software) free.
Jannis

Similar Messages

  • K790i - Problem in accessing Application and Games Folder

    Hi
    I am not able to open the Application and Games folder on my Sony Ericsson K790i Mobile Phone.
    It gives me an exception "Operation Failed".
    Please advise, what needs to be done.

    Unfortunately this can generally only be resolved by master resetting the phone. Please backup any content you wish to keep prior to doing so. You can find this option: Main Menu > Settings > General > Master Reset > Reset all.
    What are your thoughts about this forum? Let us know by doing this short survey.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Hi, Im new to Apple MacBook PRO. I have saved about 50GB files plus applications and message advises that my start up disk is almost full! My MacBook pro has a 500GB hard drive so don't know why this message is coming up. Please help.

    Hi, Im new to Apple MacBook PRO. I have saved about 50GB files plus applications and message advises that my start up disk is almost full! My MacBook pro has a 500GB hard drive so don't know why this message is coming up. Please help.

    MacBook Pro
    https://discussions.apple.com/community/notebooks/macbook_pro 
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.7_lion?view=discussi ons

  • File Explorer Application?

    What is a file Explorer application? Because i cannot access this
    c:\system\apps\symcs
    when im opening my phone in the pc-- Nokia phone Browser---.

    FExplorer works on S60v2 phones like the N70.
    www.gosymbian.com/FE_beta_download_2ed.html

  • File from application server -Read and process and delete the file .

    Hi All,
             I writing a ZEE program which will read the file from application server(file will be in text delimat format) and moving the data to internal table and uploadind data base.The part which iam facing problem is -
    > I hve read the file from application server like below ,
    OPEN DATASET ld_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    IF sy-subrc NE 0.
    EXIT.
    ELSE.
      DO.
        CLEAR: wa_string, wa_uploadtxt.
        READ DATASET ld_file INTO wa_string.
        IF sy-subrc NE 0.
          EXIT.
        ELSE.
          SPLIT wa_string AT con_tab INTO wa_uploadtxt-name1
                                          wa_uploadtxt-name2
                                          wa_uploadtxt-age.
    Spliting part i having problem .i need to seperate each field which is seperate from tab delimite and pass it into respective fields of internal table .
    Second if another file come to the appicaltion server , wether my first file will be there ? or should i need to delete the first file after redaing how should i proceed further ?.
    Regards
    SRIRAM...
    THANKS In ADVANCE

    HI,
    1.
    OPEN DATASET ld_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    IF sy-subrc NE 0.
    EXIT.
    ELSE.
    DO.
    CLEAR: wa_string, wa_uploadtxt.
    READ DATASET ld_file INTO wa_string.
    IF sy-subrc NE 0.
    EXIT.
    ELSE.
    SPLIT wa_string AT cl_abap_char_utilities=>horizontal_tab INTO wa_uploadtxt-name1
    wa_uploadtxt-name2
    wa_uploadtxt-age.
    APPEND  wa_uploadtxt TO itab.
    ENDDO.
    CLOSE DATASET ld_file.
    ENDIF.
    2. If the another file get's generated in the application server with same file name then the data in old file get's over written with the new data. You are not required to delete the file.

  • How to create a file in application data local folder which is not hidden in windows store app?

    I want to create a log file in ApplicationData local folder.
         m_StorageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync(m_Name.Replace(" ", "_") + ".log",
                              CreationCollisionOption.OpenIfExists);
    First time when my app is launched, the file gets created and logs are written.
    When I close my app, and re run the app once again, the log file that was created is now hidden and when i try to call
    the code :    m_StorageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync(m_Name.Replace(" ", "_") + ".log",
                              CreationCollisionOption.OpenIfExists);
    m_StorageFile is NULL.
    How can i prevent the file from becoming Hidden or ReadOnly.
    Thanks

    Here is a very simple sample that works fine.  Start with this and see what you are doing different.
    XAML:
    <Page
    x:Class="LocalStorage.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:LocalStorage"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d" Loaded="Page_Loaded">
    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <TextBox x:Name="outputTxt" HorizontalAlignment="Left" Margin="76,82,0,0" TextWrapping="Wrap" VerticalAlignment="Top" AllowDrop="True" PlaceholderText="No Data read from local file" Width="791"/>
    <Button Content="Store Data" HorizontalAlignment="Left" Margin="73,145,0,0" VerticalAlignment="Top" Click="Button_Click" />
    </Grid>
    </Page>
    C#
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Runtime.InteropServices.WindowsRuntime;
    using Windows.Foundation;
    using Windows.Foundation.Collections;
    using Windows.Storage;
    using Windows.UI.Xaml;
    using Windows.UI.Xaml.Controls;
    using Windows.UI.Xaml.Controls.Primitives;
    using Windows.UI.Xaml.Data;
    using Windows.UI.Xaml.Input;
    using Windows.UI.Xaml.Media;
    using Windows.UI.Xaml.Navigation;
    // The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
    namespace LocalStorage
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class MainPage : Page
    public MainPage()
    this.InitializeComponent();
    private async void Button_Click(object sender, RoutedEventArgs e)
    if (m_StorageFile != null)
    try
    string userContent = outputTxt.Text;
    if (!String.IsNullOrEmpty(userContent))
    await FileIO.WriteTextAsync(m_StorageFile, userContent);
    else
    // should be some info to write
    catch (FileNotFoundException)
    // do something
    private StorageFile m_StorageFile;
    private async void createFileOrGetFile()
    m_StorageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync("sample.log", CreationCollisionOption.OpenIfExists);
    private async void Page_Loaded(object sender, RoutedEventArgs e)
    createFileOrGetFile();
    if (m_StorageFile != null)
    try
    string fileContent = await FileIO.ReadTextAsync(m_StorageFile);
    outputTxt.Text = fileContent;
    catch (FileNotFoundException)
    // do something!
    Jeff Sanders (MSFT)
    @jsandersrocks - Windows Store Developer Solutions
    @WSDevSol
    Getting Started With Windows Azure Mobile Services development?
    Click here
    Getting Started With Windows Phone or Store app development?
    Click here
    My Team Blog: Windows Store & Phone Developer Solutions
    My Blog: Http Client Protocol Issues (and other fun stuff I support)

  • Pdf files as applications and preview crash

    hi everyone
    some system glitches im trying to figure out:
    I was following an apple guide on how to make FCP manuals (pdf) searchable by spotlight. It involved saving the manuals with Preview on the desktop ( those files are usually inside the FCP application) and storing them at a different location...somewhere in this prossess i guess they will be indexed by spotlight.
    The problem is that when i tried this preview just frose and couldnt save the file..just the spinning beachball of doom.
    not knowing if it would work (in regard to spotlight) I decided to try to do the same but using acrobat. so just to start me off i tried to get info on some other pdf. manuals installed with FC studio (motion manual etc.) and change the open with default to acrobat instead of preview. To my utter surprise this option was not available in the Info panel...and the reason (presumably) : The system classifies the files applications?! ...they still open in preview as pdf. files (and as before cant be saved to desktop). but the info panel says they are .app
    how can this be rectified?
    help needed
    thanks

    This change of behaviour is most annoying, and to my mind is further proof that the primary function of iTunes as a music player/organiser has been lost sight of in the welter of iPod/iPhone/iPad 'features'.
    I find that I can still import PDF booklets into the main Music library, but they no longer merge with their related album as they used to when Album Title and Album Artist were set appropriately. What you need to do now if this is what you want to happen is Get Info on the PDF booklet after you import it, and change the Media Type to 'Music' in the Options tab (iTunes 9.2 sets this to 'Book' by default).
    It's a nuisance to have to perform this additional step, but at least it brings back the previous behaviour.

  • File Defense application and Time Capsule and Time Machine working

    Has anyone experienced problems running Time Machine
    and File Defense at the same time?
    Orginally I made the switch to File Defense from Norton Utilities
    in fall 2008 since Norton slowed down wireless file transfer speeds between
    my Mac's and the TimeCapsule.
    However, lately I has experience issues of recovering files using the Time Machine interface, and was wondering if there is something fishy with the
    File Defense.....
    Subrosasoft.com says about FileDefense:
    "FileDefense is a program that forms the first line of defence in file access. It is a set of programs that provide an easy interface to locking down files and making sure that unwanted access is not given to malicious scripts, applications and services on the your computer."
    The application has not provided any error messages when running Time Machine - but neither did Norton do that. I'm aware that Norton has since upgraded their products, but I have not tested the never ones.
    Regards.
    --john--

    Has anyone experienced problems running Time Machine
    and File Defense at the same time?
    Orginally I made the switch to File Defense from Norton Utilities
    in fall 2008 since Norton slowed down wireless file transfer speeds between
    my Mac's and the TimeCapsule.
    However, lately I has experience issues of recovering files using the Time Machine interface, and was wondering if there is something fishy with the
    File Defense.....
    Subrosasoft.com says about FileDefense:
    "FileDefense is a program that forms the first line of defence in file access. It is a set of programs that provide an easy interface to locking down files and making sure that unwanted access is not given to malicious scripts, applications and services on the your computer."
    The application has not provided any error messages when running Time Machine - but neither did Norton do that. I'm aware that Norton has since upgraded their products, but I have not tested the never ones.
    Regards.
    --john--

  • People application and contacts folder

    Hello,
    I want to know if it's possible to have the contacts from the contacts folder appear in people application and in mail application. I have them in windows live mail.
    I tried adding a Microsoft account to the list of accounts (skype and google) but it does not appear in the selection box!
    Thank you!

    Hi cristi1010,
    Could you please explain a bit about the sentence ‘I tried adding a Microsoft account to the list of accounts (skype and google) but it does not appear in the selection box!’?
    If my understanding is right, you want to import the contacts from contacts folder to people and mail app.
    Please take the following steps to implement this function:
    1. Export the Windows Contacts as .csv file.
    2. Go to https://people.live.com/ and select import from outlook.com
    3. Finally, we could add the contacts to people.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • File Adapter Writting and Reading strategy

    Hi All,
    When i am trying to write data to file, it was opened by another person and it gave error in the receiver communication channel saying like source is using by another application. Which is well and good
    But in case of Sender channel while writing the data to file even thought it is opened by another person, Sender file adapter is picked the file.
    I didn't get the reason why it is like this. Any one of u had the same issue???
    Regards

    Hi Neetesh,
    >>hmm ... that's weird ... you mean to say that the polling frequency is now (20 + 100) = 120 secs ? Unless and until the file is not being modified or the file is not "open", this parameter shouldn't work ...
    Examples
    Poll interval is 20 sec and MSecs to wait is 100000( 1 MIN 40 Sec)
    1) If file is there and did not opened / modifying
    waiting till 1 min 40sec to pick the file
    2) If the file is there and Modifying it
    Adapter is waiting 1 min 40sec if the files have been changed.
    3) If there is a file and just opened, not writing any files
    Waiting for 1 min 40 sec to pick the file
    >>Can you share the adapter log?
    Processing Details for Cluster Node Server 0 10_31463
         5/20/10 3:49:56 PM           Polling interval started. Length: 20.0 seconds
         5/20/10 3:49:56 PM           Processing finished successfully
         5/20/10 3:49:56 PM           Processing started
         5/20/10 3:49:56 PM            4f1e0c5b-9553-4397-30ef-d3bb55a13a48     Processing finished successfully
         5/20/10 3:49:55 PM            4f1e0c5b-9553-4397-30ef-d3bb55a13a48     Message with ID 4f1e0c5b-9553-4397-30ef-
                                                   d3bb55a13a48 processed
         5/20/10 3:48:15 PM           Processing started
         5/20/10 3:47:55 PM           Polling interval started. Length: 20.0 seconds
         5/20/10 3:47:55 PM           Processing finished successfully
         5/20/10 3:47:55 PM           Processing started
         5/20/10 3:47:35 PM           Polling interval started. Length: 20.0 seconds
    Regards
    Edited by: Vamsi Krishna on May 20, 2010 10:50 PM

  • Opening files crashes Applications and closes Finder

    As I've been unofficial Apple "IT" for our graphics team in a biased world of PC and our IT haven't the knowhow or inclination to help I need REAL support!
    After the last security etc update my iTunes crashed every time I tried to open it (Dock or Folder).
    Re-installed from the Apple web download.
    It now works.
    Now when I open a job folder through Finder on the desktop then select the file to open Finder closes.
    When I have an application open - say Photoshop CS2 - and go > File > Open, once I select the file to open Photoshop "unexpectedly quits".
    This goes for ANY application!
    BUT...If I drag a file to the application on the dock all is well?
    If I want to place images /graphics etc from one application to whatever is open I now can't
    I hold hands high as not being the most in-depth technical Mac man but have a general feel for most niggles having grown with Classic onwards!
    This something new and hopefully someone can shine a light?

    You should do it from Disk Utility on your start-up disk.
    What are permissions?
    Every file and folder on a Mac OS X hard drive has a set of permissions—settings that determine which user(s) have access to each item, and exactly what that access is. For example, permissions dictate whether or not a particular user can open and edit a particular file. But permissions also determine which items the operating system—or specific parts of it—can access and modify, and which files are accessible by applications.
    What does repairing permissions do?
    The Repair Disk Permissions function—the process that actually performs the task of repairing permissions—examines certain files and folders on your Mac’s hard drive to see if their current permissions settings are what Mac OS X expects them to be; if discrepancies are found, the offending permissions are changed to match the expected settings.
    (In Mac OS X 10.3 and later, repairing permissions also performs one other, unrelated, task: If the invisible /tmp symbolic link—which is linked to the /private/tmp directory—is missing, the link will be recreated.)
    Why is it necessary to repair permissions?
    If permissions on particular files are “incorrect”—i.e., not what Mac OS X expects them to be or not what they need to be for your Mac’s normal operation—you can experience problems when the operating system tries to access or modify those files. For example, you may have trouble logging in to your account, printing, launching applications, or even starting up your Mac. Similarly, if an application—from Apple or a third-party developer—needs access to a particular file or folder to function, and the permissions on that item have changed in a way that prevents such access, the application may not function properly (or at all). The Repair Disk Permissions function can fix such problems by ensuring that certain files have the correct permissions.
    There’s also a security element here: Many system-level files have permissions set a particular way so that applications or users that shouldn’t be meddling with those files can’t. If the permissions on certain system-level files somehow get changed so that access to those files is no longer restricted, you’ve got the potential for a major security issue. Repairing permissions can resolve such issues by resetting permissions on those files to prevent unauthorized access.
    How do I repair permissions?
    The Repair Disk Permissions function is part of Apple’s Disk Utility (in /Applications/Utilities). After launching Disk Utility, select the desired disk—generally your startup disk—in the list to the left, then click the First Aid tab. At the bottom of the First Aid panel, click the Repair Disk Permissions button. (You could instead use the Verify Disk Permissions option to preview any potential repairs before performing them, but for most users there’s little benefit from this extra step.)
    Permissions can also be repaired via the shell (Terminal) by using the command sudo diskutil repairPermissions /. However, it’s unlikely that the typical user will ever need to perform the task in this manner. It’s useful if for some reason Disk Utility itself won’t launch, or for repairing permissions on a remote Mac when connected via Remote Login (SSH), but otherwise you’re just as well served using Disk Utility.
    How does the Repair Disk Permissions function know what the “correct” permissions are?
    When you use Apple’s Installer utility to install software (such as Mac OS X itself or an OS X update), the installation package (the .pkg file you double-click to begin installation, or that Software Update downloads in the background for an automatic installation) generally leaves behind a receipt—a smaller Mac OS X package that includes information about every file installed, including the permissions each file should have. This receipt is placed in /Library/Receipts. When you run the Repair Disk Permissions function, it examines the receipts in the /Library/Receipts directory of the disk being repaired—which means the feature works only on volumes with Mac OS X installed—and compares the information in the receipt with the actual files on your drive. If the Repair Disk Permissions function finds a file with permissions that differ from what a receipt claims they should be, that file’s permissions are reset to their receipt-specified values. (If you’re curious about the information contained in a receipt, the easiest way to view it is to use the utility Pacifist; simply drag and drop the appropriate receipt into the Pacifist window and you’ll be presented with a list of all files installed by the similarly-named installation package, along with each file’s original permissions.)
    It’s worth noting here that although the function is called “Repair Disk Permissions,” what is actually happening is that files’ permissions are being reset or restored to a particular state. It’s possible—though not common—for a particular file’s permissions to differ from what a receipt claims they should be without those permissions actually being “broken.”
    Are all files affected by Repair Disk Permissions?
    No. As you may have inferred from the above description, only those files installed using OS X’s Installer utility and whose installation packages leave behind a proper receipt in /Library/Receipts are affected by the Repair Disk Permissions function. This means that most of the files affected by the Repair Disk Permissions function are system-level files, application files, or system add-ons—not applications installed by drag-and-drop, and not your documents or other user-level files.
    If repairing permissions is useful in general, why doesn’t Apple recommend it as routine maintenance?
    Apple does, quite explicitly:
    It’s a good idea to repair disk permissions as a regular maintenance task after upgrading or installing new software.
    That’s taken from Mac Help—in both Panther and Tiger—right on your Mac. Similar statements can be found in other Support articles.
    (With thanks to another user who posted this here)

  • Difference between File Sharing, Dropbox, and Public Folder?

    I have this MBP out front & my Mac Mini in back. I'm comparatively new to networking, altho I've used File Sharing (FS) & Dropbox (Db). It seems now, there are a myriad of ways to sync my two computers. (ICloud is also used, just for Mail & iCal, since those are the only two I have that Apple allows on iCloud. I have the computers networked w/ an Airport Extreme. That all works flawlessly.)
    I'm aware of Apple's Drop Box, but it doesn't work since the two computers are over 30' apart.
    The three subject features all do the same thing, I believe, so along with this question, I'm asking which of the 3 is preferable. Dropbox confuses me because it refers to the Public Folder, when it seems only necessary to drag a file to the Db folder, rather than the Public Folder. Anyone know where the Public Folder fits into the Db scheme of things? Or even into the FS scheme of things? Or even into the total file sharing/snycing landscape? My hunch is to ignore the Public Folder.
    As to File Sharing, if I opt for this, then I don't need Db or the Public Folder. Right? The problem w/ FS is that both machines need to be up & running (and not in a Sleep mode). Also, FS is irrelevant when it comes to the Web. On top of all this, most apps come w/ the capability to upload files, photos, etc., for the Web. I'm in a situation where I need to keep track of what I'm sharing, whether it be through FS, Dropbox, or the Public Folder.
    I would really like to simplify my workflow by settling on just one means of syncing my two computers. I'm aware that Db is good for sharing files not only between my 2 Macs, but putting stuff on the Web.
    How do some of you share data between computers? What do you go with? All 3, 2, or just one? How do you keep things straight?

    I'm aware of Apple's Drop Box...
    You mean AirDrop.
    The three subject features all do the same thing, I believe...
    No, they're entirely different.
    File Sharing is a file service that works over a local network.
    Dropbox, which I've never used, is a cloud-based storage and file-synchronization service.
    The Public Folder is the subfolder of your home folder that's accessible to other users of the same computer, and also to other users on the network if File Sharing is active. (The term "Public Folder" may have another meaning in the context of Dropbox.)
    How do some of you share data between computers?
    There are many ways to do that, in addition to the ones you mentioned. It's not really clear what your requirements are.

  • File explorer hang and crashes

    here are the log gged errors
    Log Name:      Application
    Source:        Application Error
    Date:          2013-12-12 11:25:58 AM
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      pc10.mydomain.local
    Description:
    Faulting application name: explorer.exe, version: 6.1.7601.17567, time stamp: 0x4d6727a7
    Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000
    Exception code: 0xc0000005
    Fault offset: 0x0337fbd8
    Faulting process id: 0xee0
    Faulting application start time: 0x01cef764963cd82e
    Faulting application path: C:\Windows\explorer.exe
    Faulting module path: unknown
    Report Id: d810a622-635a-11e3-815d-001cc0e45d55
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-12-12T18:25:58.000000000Z" />
        <EventRecordID>102453</EventRecordID>
        <Channel>Application</Channel>
        <Computer>pc10.mydomain.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>explorer.exe</Data>
        <Data>6.1.7601.17567</Data>
        <Data>4d6727a7</Data>
        <Data>unknown</Data>
        <Data>0.0.0.0</Data>
        <Data>00000000</Data>
        <Data>c0000005</Data>
        <Data>0337fbd8</Data>
        <Data>ee0</Data>
        <Data>01cef764963cd82e</Data>
        <Data>C:\Windows\explorer.exe</Data>
        <Data>unknown</Data>
        <Data>d810a622-635a-11e3-815d-001cc0e45d55</Data>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        Application Hang
    Date:          2013-12-13 10:07:30 AM
    Event ID:      1002
    Task Category: (101)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      pc10.mydomain.local
    Description:
    The program iexplore.exe version 9.0.8112.16526 stopped interacting with Windows and was closed. To see if more information about the problem is available, check the problem history in the Action Center control panel.
     Process ID: 1070
     Start Time: 01cef82506c67aed
     Termination Time: 109
     Application Path: C:\Program Files\Internet Explorer\iexplore.exe
     Report Id:
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Hang" />
        <EventID Qualifiers="0">1002</EventID>
        <Level>2</Level>
        <Task>101</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-12-13T17:07:30.000000000Z" />
        <EventRecordID>102784</EventRecordID>
        <Channel>Application</Channel>
        <Computer>pc10.mydomain.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>iexplore.exe</Data>
        <Data>9.0.8112.16526</Data>
        <Data>1070</Data>
        <Data>01cef82506c67aed</Data>
        <Data>109</Data>
        <Data>C:\Program Files\Internet Explorer\iexplore.exe</Data>
        <Data>
        </Data>
        <Binary>55006E006B006E006F0077006E0000000000</Binary>
      </EventData>
    </Event>
    the pc also has other errors like
    Log Name:      Microsoft-Windows-Kernel-EventTracing/Admin
    Source:        Microsoft-Windows-Kernel-EventTracing
    Date:          2013-12-11 8:43:44 AM
    Event ID:      2
    Task Category: Session
    Level:         Error
    Keywords:      Session
    User:          SYSTEM
    Computer:      pc10.mydomain.local
    Description:
    Session "Circular Kernel Context Logger" failed to start with the following error: 0xC0000035
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Kernel-EventTracing" Guid="{B675EC37-BDB6-4648-BC92-F3FDC74D3CA2}" />
        <EventID>2</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>2</Task>
        <Opcode>12</Opcode>
        <Keywords>0x8000000000000010</Keywords>
        <TimeCreated SystemTime="2013-12-11T15:43:44.950241900Z" />
        <EventRecordID>3863</EventRecordID>
        <Correlation />
        <Execution ProcessID="4" ThreadID="56" />
        <Channel>Microsoft-Windows-Kernel-EventTracing/Admin</Channel>
        <Computer>pc10.mydomain.local</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data Name="SessionName">Circular Kernel Context Logger</Data>
        <Data Name="FileName">
        </Data>
        <Data Name="ErrorCode">3221225525</Data>
        <Data Name="LoggingMode">268436608</Data>
      </EventData>
    </Event>
    Log Name:      Microsoft-Windows-CodeIntegrity/Operational
    Source:        Microsoft-Windows-CodeIntegrity
    Date:          2013-12-10 6:25:45 PM
    Event ID:      3002
    Task Category: (1)
    Level:         Error
    Keywords:     
    User:          LOCAL SERVICE
    Computer:      pc10.mydomain.local
    Description:
    Code Integrity is unable to verify the image integrity of the file \Device\HarddiskVolume3\Windows\System32\l3codeca.acm because the set of per-page image hashes could not be found on the system.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-CodeIntegrity" Guid="{4EE76BD8-3CF4-44A0-A0AC-3937643E37A3}" />
        <EventID>3002</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>1</Task>
        <Opcode>102</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2013-12-11T01:25:45.960255200Z" />
        <EventRecordID>2013</EventRecordID>
        <Correlation />
        <Execution ProcessID="3084" ThreadID="756" />
        <Channel>Microsoft-Windows-CodeIntegrity/Operational</Channel>
        <Computer>pc10.mydomain.local</Computer>
        <Security UserID="S-1-5-19" />
      </System>
      <EventData>
        <Data Name="FileNameLength">53</Data>
        <Data Name="FileNameBuffer">\Device\HarddiskVolume3\Windows\System32\l3codeca.acm</Data>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        Outlook
    Date:          2013-12-10 4:56:00 PM
    Event ID:      35
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      pc10.mydomain.local
    Description:
    Failed to determine if the store is in the crawl scope (error=0x80070002).
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Outlook" />
        <EventID Qualifiers="49152">35</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-12-10T23:56:00.000000000Z" />
        <EventRecordID>101675</EventRecordID>
        <Channel>Application</Channel>
        <Computer>pc10.mydomain.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>0x80070002</Data>
      </EventData>
    </Event>
    Log Name:      System
    Source:        Microsoft-Windows-DistributedCOM
    Date:          2013-12-10 8:52:14 AM
    Event ID:      10009
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      pc10.mydomain.local
    Description:
    DCOM was unable to communicate with the computer CSR|SEDMDC01 using any of the configured protocols.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-DistributedCOM" Guid="{1B562E86-B7AA-4131-BADC-B6F3A001407E}" EventSourceName="DCOM" />
        <EventID Qualifiers="49152">10009</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-12-10T15:52:14.000000000Z" />
        <EventRecordID>467932</EventRecordID>
        <Correlation />
        <Execution ProcessID="0" ThreadID="0" />
        <Channel>System</Channel>
        <Computer>pc10.mydomain.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data Name="param1">CSR|SEDMDC01</Data>
        <Binary>3C5265636F726423313A20436F6D70757465723D286E756C6C293B5069643D3834303B31322F31302F323031332031353A35323A31343A3438363B5374617475733D313732323B47656E636F6D703D323B4465746C6F633D313731303B466C6167733D303B506172616D733D313B7B506172616D23303A307D3E3C5265636F726423323A20436F6D70757465723D286E756C6C293B5069643D3834303B31322F31302F323031332031353A35323A31343A3438363B5374617475733D313732323B47656E636F6D703D31383B4465746C6F633D313434323B466C6167733D303B506172616D733D313B7B506172616D23303A4353527C5345444D444330317D3E3C5265636F726423333A20436F6D70757465723D286E756C6C293B5069643D3834303B31322F31302F323031332031353A35323A31343A3438363B5374617475733D313732323B47656E636F6D703D31383B4465746C6F633D3332323B466C6167733D303B506172616D733D303B3E3C5265636F726423343A20436F6D70757465723D286E756C6C293B5069643D3834303B31322F31302F323031332031353A35323A31343A3438363B5374617475733D31313030313B47656E636F6D703D31383B4465746C6F633D3332303B466C6167733D303B506172616D733D313B7B506172616D23303A4353527C5345444D444330317D3E</Binary>
      </EventData>
    </Event>
    here are the log gged errors
    Log Name:      Application
    Source:        Application Error
    Date:          2013-12-12 11:25:58 AM
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      pc10.mydomain.local
    Description:
    Faulting application name: explorer.exe, version: 6.1.7601.17567, time stamp: 0x4d6727a7
    Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000
    Exception code: 0xc0000005
    Fault offset: 0x0337fbd8
    Faulting process id: 0xee0
    Faulting application start time: 0x01cef764963cd82e
    Faulting application path: C:\Windows\explorer.exe
    Faulting module path: unknown
    Report Id: d810a622-635a-11e3-815d-001cc0e45d55
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-12-12T18:25:58.000000000Z" />
        <EventRecordID>102453</EventRecordID>
        <Channel>Application</Channel>
        <Computer>pc10.mydomain.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>explorer.exe</Data>
        <Data>6.1.7601.17567</Data>
        <Data>4d6727a7</Data>
        <Data>unknown</Data>
        <Data>0.0.0.0</Data>
        <Data>00000000</Data>
        <Data>c0000005</Data>
        <Data>0337fbd8</Data>
        <Data>ee0</Data>
        <Data>01cef764963cd82e</Data>
        <Data>C:\Windows\explorer.exe</Data>
        <Data>unknown</Data>
        <Data>d810a622-635a-11e3-815d-001cc0e45d55</Data>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        Application Hang
    Date:          2013-12-13 10:07:30 AM
    Event ID:      1002
    Task Category: (101)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      pc10.mydomain.local
    Description:
    The program iexplore.exe version 9.0.8112.16526 stopped interacting with Windows and was closed. To see if more information about the problem is available, check the problem history in the Action Center control panel.
     Process ID: 1070
     Start Time: 01cef82506c67aed
     Termination Time: 109
     Application Path: C:\Program Files\Internet Explorer\iexplore.exe
     Report Id:
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Hang" />
        <EventID Qualifiers="0">1002</EventID>
        <Level>2</Level>
        <Task>101</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-12-13T17:07:30.000000000Z" />
        <EventRecordID>102784</EventRecordID>
        <Channel>Application</Channel>
        <Computer>pc10.mydomain.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>iexplore.exe</Data>
        <Data>9.0.8112.16526</Data>
        <Data>1070</Data>
        <Data>01cef82506c67aed</Data>
        <Data>109</Data>
        <Data>C:\Program Files\Internet Explorer\iexplore.exe</Data>
        <Data>
        </Data>
        <Binary>55006E006B006E006F0077006E0000000000</Binary>
      </EventData>
    </Event>
    the pc also has other errors like
    Log Name:      Microsoft-Windows-Kernel-EventTracing/Admin
    Source:        Microsoft-Windows-Kernel-EventTracing
    Date:          2013-12-11 8:43:44 AM
    Event ID:      2
    Task Category: Session
    Level:         Error
    Keywords:      Session
    User:          SYSTEM
    Computer:      pc10.mydomain.local
    Description:
    Session "Circular Kernel Context Logger" failed to start with the following error: 0xC0000035
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Kernel-EventTracing" Guid="{B675EC37-BDB6-4648-BC92-F3FDC74D3CA2}" />
        <EventID>2</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>2</Task>
        <Opcode>12</Opcode>
        <Keywords>0x8000000000000010</Keywords>
        <TimeCreated SystemTime="2013-12-11T15:43:44.950241900Z" />
        <EventRecordID>3863</EventRecordID>
        <Correlation />
        <Execution ProcessID="4" ThreadID="56" />
        <Channel>Microsoft-Windows-Kernel-EventTracing/Admin</Channel>
        <Computer>pc10.mydomain.local</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data Name="SessionName">Circular Kernel Context Logger</Data>
        <Data Name="FileName">
        </Data>
        <Data Name="ErrorCode">3221225525</Data>
        <Data Name="LoggingMode">268436608</Data>
      </EventData>
    </Event>
    Log Name:      Microsoft-Windows-CodeIntegrity/Operational
    Source:        Microsoft-Windows-CodeIntegrity
    Date:          2013-12-10 6:25:45 PM
    Event ID:      3002
    Task Category: (1)
    Level:         Error
    Keywords:     
    User:          LOCAL SERVICE
    Computer:      pc10.mydomain.local
    Description:
    Code Integrity is unable to verify the image integrity of the file \Device\HarddiskVolume3\Windows\System32\l3codeca.acm because the set of per-page image hashes could not be found on the system.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-CodeIntegrity" Guid="{4EE76BD8-3CF4-44A0-A0AC-3937643E37A3}" />
        <EventID>3002</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>1</Task>
        <Opcode>102</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2013-12-11T01:25:45.960255200Z" />
        <EventRecordID>2013</EventRecordID>
        <Correlation />
        <Execution ProcessID="3084" ThreadID="756" />
        <Channel>Microsoft-Windows-CodeIntegrity/Operational</Channel>
        <Computer>pc10.mydomain.local</Computer>
        <Security UserID="S-1-5-19" />
      </System>
      <EventData>
        <Data Name="FileNameLength">53</Data>
        <Data Name="FileNameBuffer">\Device\HarddiskVolume3\Windows\System32\l3codeca.acm</Data>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        Outlook
    Date:          2013-12-10 4:56:00 PM
    Event ID:      35
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      pc10.mydomain.local
    Description:
    Failed to determine if the store is in the crawl scope (error=0x80070002).
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Outlook" />
        <EventID Qualifiers="49152">35</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-12-10T23:56:00.000000000Z" />
        <EventRecordID>101675</EventRecordID>
        <Channel>Application</Channel>
        <Computer>pc10.mydomain.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>0x80070002</Data>
      </EventData>
    </Event>
    Log Name:      System
    Source:        Microsoft-Windows-DistributedCOM
    Date:          2013-12-10 8:52:14 AM
    Event ID:      10009
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      pc10.mydomain.local
    Description:
    DCOM was unable to communicate with the computer CSR|SMyDC01 using any of the configured protocols.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-DistributedCOM" Guid="{1B562E86-B7AA-4131-BADC-B6F3A001407E}" EventSourceName="DCOM" />
        <EventID Qualifiers="49152">10009</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-12-10T15:52:14.000000000Z" />
        <EventRecordID>467932</EventRecordID>
        <Correlation />
        <Execution ProcessID="0" ThreadID="0" />
        <Channel>System</Channel>
        <Computer>pc10.mydomain.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data Name="param1">CSR|SMyDC01</Data>
        <Binary>3C5265636F726423313A20436F6D70757465723D286E756C6C293B5069643D3834303B31322F31302F323031332031353A35323A31343A3438363B5374617475733D313732323B47656E636F6D703D323B4465746C6F633D313731303B466C6167733D303B506172616D733D313B7B506172616D23303A307D3E3C5265636F726423323A20436F6D70757465723D286E756C6C293B5069643D3834303B31322F31302F323031332031353A35323A31343A3438363B5374617475733D313732323B47656E636F6D703D31383B4465746C6F633D313434323B466C6167733D303B506172616D733D313B7B506172616D23303A4353527C5345444D444330317D3E3C5265636F726423333A20436F6D70757465723D286E756C6C293B5069643D3834303B31322F31302F323031332031353A35323A31343A3438363B5374617475733D313732323B47656E636F6D703D31383B4465746C6F633D3332323B466C6167733D303B506172616D733D303B3E3C5265636F726423343A20436F6D70757465723D286E756C6C293B5069643D3834303B31322F31302F323031332031353A35323A31343A3438363B5374617475733D31313030313B47656E636F6D703D31383B4465746C6F633D3332303B466C6167733D303B506172616D733D313B7B506172616D23303A4353527C5345444D444330317D3E</Binary>
      </EventData>
    </Event>

    Hi,
    Thank you for your update.
    If the issue still occurs after you tried all the steps.
    I understand that some files cannot be repaired when running SFC /scannow, I suggest trying the following method to troubleshoot the issue:
    1. At an elevated command prompt, copy and then paste (or type) the following command, and then press ENTER: 
    takeown /f Path_And_File_Name
    For example, type takeown /f E:\windows\system32\jscript.dll.
    2. Copy and paste (or type) the following command, and then press ENTER to grant administrators full access to the file: 
    icacls Path_And_File_Name /GRANT ADMINISTRATORS:F
    For example, type  icacls E:\windows\system32\jscript.dll /grant administrators:F.
    3. Copy and paste (or type the following command to replace the file with a known good copy of the file: 
    Copy Path_And_File_Name_Of_Source_File  Path_And_File_Name_Of_Destination
    For example, type copy E:\temp\jscript.dll E:\windows\system32\jscript.dll. 
    I also would like to share the thread below with you to check the issue:
    Internet explorer 11 cause explorer.exe crashes
    http://social.technet.microsoft.com/Forums/en-US/f1a3db3a-7c30-4abc-994f-04a83975c7b1/internet-explorer-11-cause-explorerexe-crashes?forum=w7itproappc
    Hope it helps.
    Regards,
    Blair Deng
    Blair Deng
    TechNet Community Support

  • User sip folder have many .cache files with 4kb and the folder is becoming full and Lync Client stops working

    User sip folder have manu Mailitem&username&.cache files until folder is full and Lync client stops working.

    Hi,
    You can try to change the Lync Profile name. After you do it, Lync will create a new Profile. The Lync Profile path is following:
    %UserProfile%\AppData\Local\Microsoft\Office\15.0\Lync
    If the issue persists, please repair Office 2013 and then test again.
    Best Regards,
    Eason Huang  
    Eason Huang
    TechNet Community Support

  • Embedding XML data file into PDF, and reading from it?

    Hello guys,
    Sorry, I'm new to here and new to the Acrobat and its scripting. So, maybe my questions will be a bit stupid, but please help. Thanks.
    So, here what I would like to do. I would like to make a class enrollment form for people, so that they can use it to apply for any class(es) they find interests at my centre.
    The old way to do it, is to send them a MS Word file, or a print-out, and they fill in whatever they like. The nightmare starts here, since there is no checking on Word, nor cannot control what people could fill in on their paper. People starts filling in whatever they like, e.g. class number that doesn't match the class name, and that class name doesn't belong to that time slot. And they even miss a digit of their phone number!
    I'm looking for a solution with Acrobat/PDF. And the picture I have in my mind is, to give people my enrollment form in PDF. And would like to embedded the class data (maybe in XML) in that same PDF, so that people won't loose a file and break the whole thing. And the PDF can use that class data to check if people have entre a class that's exist, and choose a date that's available...
    Anyone have or know any good tutorial for that? and on the scripting to do that? Any hints does help. Thanks
    (By the way I'm using Acrobat 8 and a LifeCycle the come with the installation.... )
    I know it is alot to ask, but please kindly help, Thanks :)

    Once you open the file, you can't access it again until the original reference is closed. You might want to look at a functional global architecture. You use a case structure to determine how to access the data. Initialize, write, read, save are common examples of sections inside the functional global.
    http://zone.ni.com/devzone/conceptd.nsf/webmain/D2​E196C7416F373A862568690074C759

Maybe you are looking for

  • Full screen playback in PE9 garbled - anyone else see this?

    I mentioned this in a general post but I'll make it a specific question now - When I click on the "full screen" button near the top right of the interface, full screen playback has a corrupted area which corresponds with where the timescale is on the

  • Inconsistent datatypes: expected CHAR got NUMBER...

    I am trying to run the following statement and get an error "ORA-00932: inconsistent datatypes: expected CHAR got NUMBER": SELECT UNIQUE ((CASE WHEN AF.asset_flow_type IS NULL THEN decode(sum(3),0,NULL, sum(4)) ELSE 11 END)) * NULLIF (SUM (asset_flow

  • Discrepancy on iPad regarding iBooks Author requirements

    Did anyone else notice that when searching for iBooks Author at the Apps Store using an iPad, the requirements for Author are shown as OSX 10.6.6 or later. Yet when you try to download with an iMac running OSX 10.6.8 you get the error saying for Lion

  • Define Statues for work area

    Hi Christoph , I appreciate your effort for this While using t-code: CBIH02 : In Restricting criteria for work Area Selection tab We have one field: Status having f drop down : Active, Inactive, I want to add two more values there. So where i can add

  • Xtremegamer/digital out

    Hi, I'm trying to see if I can hook up my logitech 5. surround sound speakers to the optical output of the flexijack on my xtremegamer with the Digital I/O module or if it would be unnecessary since I already have the analog hook up capabilities. Is