Processes by ALL users were running today - WHY????

This morning I noticed that the fans were running on my Macbook Pro, and checked the process status.  I saw several processes (including multiple mdworkers) running under every account on my system, and do not know why these were running, since none of the other users was actually logged in, and none of them know how to submit anything to chron.
I also received an iMovie update.
Also, around the same time, SimpleText lost the ability to save files that I created and edited.  Repairing permissions did not fix this.
I killed the processes from Activity monitor, and saved my text files, by copying their content into blank files created by XCode, then rebooted, and eveything seemed normal.
Is there a logical explanation for this?????

Since upgrading to Mountain Lion, I have set of launchd processes for EVERY user account on my machine even tho I'm the only account (jakec) that EVER logs in:
-+= 00001 root /sbin/launchd
|
|-+= 00656 jakec /sbin/launchd
| |--= 00659 jakec /usr/sbin/distnoted agent
| |--= 00661 jakec /usr/sbin/cfprefsd agent
|
|-+= 00663 _spotlight /sbin/launchd
| |--= 00666 _spotlight /usr/sbin/distnoted agent
| +--= 50423 _spotlight /usr/sbin/cfprefsd agent
|
|-+= 01163 anybody /sbin/launchd
| |--= 01173 anybody /usr/sbin/distnoted agent
| +--= 50421 anybody /usr/sbin/cfprefsd agent
|
|--= 50424 root /usr/sbin/cfprefsd daemon
|
|-+= 61432 _windowserver /sbin/launchd
| +--= 61434 _windowserver /usr/sbin/cfprefsd agent
|
|-+= 63634 sysadmin /sbin/launchd
| |--= 63645 sysadmin /usr/sbin/distnoted agent
| +--= 63651 sysadmin /usr/sbin/cfprefsd agent
|
|-+= 63635 art /sbin/launchd
| |--= 63646 art /usr/sbin/distnoted agent
| +--= 63650 art /usr/sbin/cfprefsd agent
|
|-+= 63636 jakec2 /sbin/launchd
| |--= 63644 jakec2 /usr/sbin/distnoted agent
| +--= 63649 jakec2 /usr/sbin/cfprefsd agent
|
|-+= 88020 _lp /sbin/launchd
| +--= 88026 _lp /usr/sbin/cfprefsd agent
That's nearly 20 processes that do NOT need to be running.
I've looked thru each account's launch agents/daemons to see if I could disable them, but it looks like they get started by system agents/daemons, and frankly, I'm not that adventurous to see which system launch agents/daemons I can disable without causing system malfunction.
--Jake Coughlin
([email protected])

Similar Messages

  • Task manager show process from all user

    Hi All,
    Need a help.
    I need to enable "task manager show all show process" for all normal users(view like XP) irrespective of admin or not.
    Can any one help me how to go about this through GPO. I searched a lot in net but could not found any convincing solution for this.

    This is not possible. User processes are isolated from each other. Only administrators can retrieve information about processes from other users. Either make your users local admin, or tell them this is not possible.
    This is because of the security design which isolates users from other processes (service processes and other users' processes)
    there are many things that don't work anymore. For example, on XP it was possible to give service applications a user interface (for example for disgnostic or development purposes). From Vista onwards this is no longer possible because allowing users to
    interact with service applications is a security risk.
    There are many such changes, and you have to update your processes accordingly.

  • All Users were given Admin after Leopard updgrade

    I just found that all of my user accounts were given Admin. I cannot set the Parental controls for my kids. I am unable to uncheck the "Allow user to administer this computer". It is greyed out for all users.
    Has anyone else seen this?

    I just tried deleting one of my kids' accounts and recreating it and Admin still shows up in the group, and allowing admin is still greyed out.

  • Deleting all users WER (Windows error reporting) files

    Hi,
    I am using windows server 2008 R2 (Standard), I have created around 120 users in this server, yesterday i found that my C drive is full, after checking all i found around 30GB is used for Windows error reporting files, Please help me to delete This files
    Please, i cant delete all files one by one...

    For what it's worth, this is the script I use to find Windows Error Reports that have not been sent, and delete archived Windows Error Reports:
    It's not currently doing per-user error reports, as we don't have people logging into the servers, typically.
    Karl
    <#
    .SYNOPSIS
    Find-WER - Finds Windows Error Reports that have not been sent to Microsoft.
    .DESCRIPTION
    This script finds Windows Error Reports that have not been sent to Microsoft.
    This script also deletes archived Windows Error Reports.
    .NOTES
    File Name: Find-WER.ps1
    Author: Karl Mitschke
    Requires: Powershell V2
    Created: 12/16/2011
    .EXAMPLE
    C:\PS>.\Find-Wer.ps1
    Description
    Finds Windows Error Reports on the local computer.
    .EXAMPLE
    C:\PS>.\Find-WER -Computer Exch2010
    Description
    Finds Windows Error Reports on the computer Exch2010.
    .EXAMPLE
    C:\PS> Get-ExchangeServer | Find-WER
    Description
    Finds Windows Error Reports on all Exchange servers.
    .EXAMPLE
    C:\PS> $cred = Get-Credential -Credential mitschke\karlm
    C:\PS>.\Find-WER.ps1 -ComputerName (Get-Content -Path ..\Servers.txt) -Credential $cred
    Description
    Finds Windows Error Reports on all servers in the file Servers.txt.
    .PARAMETER ComputerName
    The Computer(s) to search for Windows Error Reports. If not specified, defaults to the local computer.
    .PARAMETER Credential
    The Credential to use. If not specified, runs under the current security context.
    #>
    [CmdletBinding(SupportsShouldProcess=$true, ConfirmImpact='Medium')]
    param (
    [parameter(
    Position = 1,
    Mandatory=$false,
    ValueFromPipeline=$true)
    [String[]]$ComputerName=$Env:ComputerName,
    [Parameter(
    Position = 2,
    Mandatory = $false,
    ValueFromPipeline=$false)
    $Credential
    BEGIN{
    #region PSBoundParameters modification
    if ($Credential -ne $null -and $Credential.GetType().Name -eq "String"){
    $PSBoundParameters.Remove("Credential") | Out-Null
    $PSBoundParameters.Add("Credential", (Get-Credential -Credential $Credential))
    $PSBoundParameters.Remove("WhatIf") | Out-Null
    #endregion
    $ReportPath = "C:\\ProgramData\\Microsoft\\Windows\\WER\\ReportQueue"
    $ArchivePath = "C:\\ProgramData\\Microsoft\\Windows\\WER\\ReportArchive"
    $FoundReport = $false
    $DeleteFailure = $false
    PROCESS {
    $PSBoundParameters.Remove("ComputerName") | Out-Null
    foreach ($StrComputer in $ComputerName){
    $Count = @((Get-WmiObject Win32_Directory -Filter "Name= '$ReportPath'" -ComputerName $StrComputer @PSBoundParameters).GetRelated('Win32_directory') |? {$_.name -match $ReportPath}).Count
    if ($Count -gt 0){
    Write-Warning "There are $Count Windows Error Reports on $StrComputer."
    $FoundReport = $true
    Else{
    Write-Output "There are no Windows Error Reports on $StrComputer."
    $Archives = @((Get-WmiObject Win32_Directory -Filter "Name= '$ArchivePath'" -ComputerName $StrComputer @PSBoundParameters).GetRelated('Win32_directory') |? {$_.name -match $ArchivePath})
    if ($Archives.Count -gt 0){
    Write-Output "Deleting Archived Windows Error Reports on $StrComputer."
    foreach ($Folder in $Archives)
    if ($pscmdlet.ShouldProcess($($StrComputer), "Deleting '$($folder.name.split("\")[-1])'")){
    $Return = $Folder.Delete()
    if ($Return.ReturnValue -ne 0){
    $DeleteFailure = $true
    if ($DeleteFailure -eq $true){
    Write-Warning "Could not delete all Archived Windows Error Reports on $StrComputer."
    END {
    If ($FoundReport){
    Write-Warning "Remember to run the Action items on the servers."
    else{
    Write-Output "There are no Windows Error Reports."
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Making a created custom page visible to all users in Business Process Workspace

    Hi everyone
    I, as the admin of Business Process Workspace, have created a custom page to show an external URL.
    How can I make this page visible to all of our ordinary users?

    Hi Ashwini
    Thanks for replying.
    I did the same and it was working for me even if the Type is Single.
    I just gave the Group name and all users were able to see the task. This is fine with me.
    I just observed one more thing.
    When the task is created, all the users in the Group are able to see it in 'Me & My Group'.
    But the data entered by the creator is not seen by other users.
    There is an action 'Save' in the Task. If the creator clicked on it, then the task is automatically 'Acquired' by the creator.
    Other users in the group are able to see the task and the saved data, but are not able to Submit.
    What I expected the Save button to do is only to Save the data in the Payload. Not Claim it.
    Is there a way to make the payload data only to save but not to claim the task?
    Thanks and Regards
    Sameer

  • Maximum number of processes a user can run

    Is there a parameter that defines the maximum number of processes that a user can run?

    hi,
    there are no maximum process per user. There is maximum session per user, by default, it is 6. But you can change it. But usually, SAP Go Live Check would suggest you to reduce it to 2 or 3.
    ardhian
    http://ardhian.kioslinux.com
    http://sapbasis.wordpress.com

  • Group Policy to Allow Non-Administrative Users to View All User Processes in Task Manager

    Hi All:
    Trying to get users with just Remote Services right (can remote in, no administrative permissions what-so-ever, to have the ability to view all processes by all users on the server.
    I would like to do through group policy, however I cannot seem to find a policy doing just this. Any ideas?
    2008 R2 Forest btw.

    Hi,
    Thank you for posting in Windows Server Forum.
    The connection permissions that are set in Remote Desktop Session Host Configuration also determine the actions that a given user can perform in Remote Desktop Services Manager. For example, a user must have at least the Remote Control special access permission
    to remotely control a user session by using Remote Desktop Services Manager.
    Please check below article for details.
    Configure Permissions for Remote Desktop Services Connections
    http://technet.microsoft.com/en-us/library/cc753032.aspx
    In regards to viewing process on RDSH server, can view the process in process Tab in RDSH manager.
    Managing Users, Sessions, and Processes
    http://technet.microsoft.com/en-us/library/cc732808.aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • Parameters for Java runtime for all users

    We have a app that need this parameters:
    -Xmx100m -Dmedisurf.cache.realmemorysize=2038 -Xms64m -XX:-UseThreadPriorities -Dsun.java2d.noddraw=false -Dsun.java2d.ddscale=true -Dsun.java2d.ddoffscreen=true -XX:MaxDirectMemorySize=2000m -Dwx.setting.ver=10.1
    How do I distribute this settings to all users running Windows?
    What I can see is the settings i the users profile and I can not find any place to put this settings so that all users already running on that pc get it.
    Lennart

    Use Web Start: http://en.wikipedia.org/wiki/Java_Web_Start
    Create a shortcut on a mounted drive, the users run the app from the mounted drive.
    Email all the users the shortcut as an attachment.
    This is no elegant solution, though Web Start works well.

  • Bookmarks in mavericks same for all users

    is it just me, but after updating to mavericks, all users on my computer now all have the same bookmarks.
    before all users had their own unique bookmarks.
    is this suppost to happen?

    That might happen if all users were logged into the same iCloud account and had Safari checked in the iCloud preferences. 

  • Why is the battery life dropping so fast on my iphone 4s. Just started all of a sudden today, never did it before. I already double-clicked the bottom button to see what was running and nothing was running. I checked multiple times and turned apps. off.

    All of a sudden today my battery life just started dropping off on my iphone 4s. I charge it every night. I double clicked the circle button on the bottom to see what was running and there was minimal running but i turned them off anyway. I checked back in a little bit, the same, turned the couple things off again which were like phone and messages... nothing major running. Battery percentage still plummeted til it just turned off.

    Are there apps on your phone right now? 
    I think one of your apps is causing this.
    The only way to find out is to delete them all and then add them one by one to see what app maybe causing this.
    Especially if you've gone thru 3 iphones already.
    When you restored as new - did you sync back your stuff - apps/music or did you restore from backup?

  • If I want to see all the outgoing mails that were sent today, how to do it

    Hi,
    I'm useing the IC webclient INBOX.
    In the inbox I can't see outgoing mails unless it is linked to interaction record.
    why ?
    If I want to see all the outgoing mails that were sent today, how to do it ?
    Thanks in advance.

    Hi,
    With a sapgui connection, you can use transaction code SOST to see outgoing mails.
    Regards,
    Olivier

  • Daily processes not running. Why not?

    For no reason discernable to me, my dual 2Ghz PowerPC G5 running 10.4.6 suddenly stopped running the scripts in /etc/periodic/daily. The strange thing is that the processes in /etc/periodic/weekly and /etc/periodic/monthly are still executing weekly and monthly, as appropriate.
    According to the /var/log/daily.out, the last time the daily processes ran was the 27th of April, so I suspect something failed around that time. The log for that day shows that not all the entries were run. I checked /System/Library/LaunchDeamons, and the launchd entry for com.apple.periodic-daily.plist is there and is unchanged since installation.
    The system log for the 27th shows only these entries:
    Apr 27 03:57:49 hostname cp: error processing extended attributes: Operation not permitted
    Apr 27 03:58:15 hostname cp: error processing extended attributes: Operation not permitted
    Entries like these also show up the 26th, 29th, May 1st and May 6th, so that wasn't the only time.
    What do I check next?
    Dual 2Ghz PowerPC G5   Mac OS X (10.4.6)  

    The computer is on 24/7, or as close to it as I can
    get, so being off isn't a problem.
    Even if turned off regularly the daily scripts should run at least a couple times a week. On my work computer weekly and monthly never run because I turn it off for the weekend, but the daily still runs. So my point is that the monthly is the first most likely not to run, then weekly, and daily not running, ever, would be practically unheard of.
    Of course, that doesn't solve the problem. You
    should repair permissions and run Disk Repair from
    the install disk. You could also try deleting the
    preferences then running it manually from the
    Terminal to reset it.
    Which preferences are you referring to?
    I don't know, do a search with EasyFind, not Spotlight, and see what you can find. And check out Apple's Knowledge base. There has to be at least one preference to delete but you might need some detective work to find it.

  • Want to run compensation process for all employee at once.

    Dear All,
    I have created Compensation Adjustment which use an user exit to read employee appraisal and create the compensation amount.
    its working fine by this transaction code HRCMP0001C - Change .
    but i want to run for all employees simultaneously, and here on this transaction, its only one employee can be select at a time for compensation adjustment.
    any body hv any idea how to run this compensation process for all employees at once?
    thanks in advance

    there is one option available in Edit >Spreadsheet. but it giving an error.
    Error while generating document
    Message no. SOFFICEINTEGRATION141
    Diagnosis
    An internal error occurred in the SAP Document Container Control.
    Procedure
    If the error recurs, enter an error message. There are notes related to how to create a log file using the report SAPROFFICEINTEGRATIONTRACE.
    any body hv idea how to solve it?...thanks

  • Tarantella running v. slow/unable to run KDE from webtop (all users)

    My knowledge of linux and tarantella is pretty limited, so bare with me
    here:
    We are running Tarantella 3.6 on a Red Hat server, with Win4lin Terminal
    Services for Win 98 sessions. This morning, the server had mysteriously
    switched off over night, and now it has booted up it is running
    incredibly slowly, and users cannot start up KDE desktop sessions. They
    can log in to the webtop without any problems but when selecting KDE
    desktop the progress bar moves extremely slowly across the dialogue box
    then stops. This is for all users.
    Even starting konsole in root takes 2 minutes to kick in, and the Object
    Manager takes even longer.
    As I know very little about Tarantella I don't know where to start,
    except to reboot the system, which I have done several times. It has
    never happened before, and we have been running the server for about 9
    months.
    Any ideas?
    many thanks,
    Graeme

    Graeme,
    If I have to guess, the reason that it was slow when your ADSL was down has
    probably something to do with your routing and/or hostname resolution.
    Regards,
    David
    "Graeme Eddie" <[email protected]> wrote in message
    news:[email protected]...
    Rob wrote:
    Graeme Eddie wrote:
    My knowledge of linux and tarantella is pretty limited, so bare with me
    here:
    Welcome aboard :-)Thanks for your response Rob. The system is working normally now. For
    some reason Tarantella started working normally again when we regained
    internet access (Our ADSL line was down for a couple of days last week).
    As soon as the broadband came up again, everything went back to normal.
    I'd be interested to know if anyone could explain why this happened.
    We are running Tarantella 3.6
    AFAIK, there's no 3.6 version of Tarantella; please check with
    "tarantella version" to know more about your installed version. You may
    have to put /opt/tarantella/bin (or wherever you installed TTA in) in
    your PATH before running the above command.Sorry, I meant 3.4!
    on a Red Hat server, with Win4lin Terminal
    Services for Win 98 sessions. This morning, the server had
    mysteriously
    switched off over night, and now it has booted up it is running
    incredibly slowly, and users cannot start up KDE desktop sessions.
    Are there any evidences in /var/log/messages about the reasons why the
    system rebooted ?No sign of anything
    They
    can log in to the webtop without any problems but when selecting KDE
    desktop the progress bar moves extremely slowly across the dialogue box
    then stops. This is for all users.
    You can use "top", "sar" or "vmstat" to find out why the system is
    crawling.
    Even starting konsole in root takes 2 minutes to kick in, and the
    Object
    Manager takes even longer.
    So this should not be a problem with TTA; however, if "top" report a
    high CPU utilization on behalf of some "tarantella" commands, please
    have your users logged out and issue the "tarantella stop --kill"
    command. When tarantella stops, verify again the load on the system with
    "top"; try also by getting into KDE on the console.I'll take note of these commands for future use
    If things now happen in a timely manner, try by restarting Tarantella
    (tarantella start).
    Best,
    Rob

  • Syslogd process uses all available cpu & console app won't run.

    I have a Mac Mini (G4 power PC) running 10.5.5. Just recently after several minutes the system never wakes. It just shows the SBBOD. All I can do is hold down the power button and reboot. When the system reboots, using the activity monitor, I see that the process named syslogd uses all available cpu. I can still do things, but the cpu is saturated.
    I took a snapshot of the syslogd process, and I can post it here if anyone thinks it might help.
    If I activate the console application, the window comes up then hangs with the SBBOD.
    The syslogd process uses all available cpu right after reboot, and does so regardless of which user (including root) is logged in. Attempting to kill the syslogd process with the activity monitor does nothing

    Thanks! It took a long time for the disk utility to fix the permissions, but as soon as it did, the logger process calmed down. Looking at the log file now, I see it was my McAfee virus scan causing the logger to flip-out.
    I'm now looking for a new MAC anti-virus program.

Maybe you are looking for

  • Purchase and release order not allowed for TECO work orders

    Hi We are typically setting maintenance work orders to TECO once the physical work as been performed as that sets the reference date for showing the history of when the maintenance was performed, and when the maintenance call was completed. However,

  • DW CS3: Auto Conversion of Special Characters?

    In DW 8 special characters entered or pasted into the text in Design view, were automatically converted to & encoded values. If you were typing ø, ø was inserted in the code. This was very usefull when pasting large portions of non-English text. It s

  • How to save an encoded file

    i want to generate a file in run mode and that file contain username and password and i dont want to save as text file is there away i can save it in encoded file that cant be opend easily? another quistion : how can I make curren value in a string c

  • I purchased season 1 of Downton Abbey but I can't download more than one episode! Please help!

    I purchased the first season of Downton Abbey on iTunes and successfully downloaded the first episode! However, when I went back to download episode 2, I recieved an error message saying my computer was already associated with an Apple ID and that pa

  • Upgrade from CRM 4.0 to CRM 7.0 and disconnect mobile sales

    Hi With CRM 7.0 we want to utilize the web UI and stop using Mobile Sales. This means we will no longer need the comms station or workbench machines.  Assuption is that with links to EEC6 from CRM 7.0 we no longer need to download sales orders and th