User account script

Hi,
I need to drop a user account and recreate it. There is no existing script to create this specific user. I want the user to have the same account settings as before. I can find most of the information in
DBA_USERS and DBA_TS_QUOTAS.
Is there any other view I should be looking at to gather account information?
Thanks.

Here's what I found using datapump:
My attempt was to recreate SCOTT account in DB2. Exsiting DB2 scott schema is dropped.
expdp userid=scott/scottie@db1 content=metadata_only dumpfile=foo:scot.dmp logfile=foo:scot.log
impdp userid=scott/scottie@db1 sqlfile=foo:scot.sql dumpfile=foo:scot.dmp logfile=foo:scot.logEdited the following sql file to remove all DDL statements. Which is everything from +'CREATE TABLE "SCOTT"."DEPT"+' on down to the end:
-- CONNECT SCOTT
-- new object type path is: SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
BEGIN
sys.dbms_logrep_imp.instantiate_schema(schema_name=>SYS_CONTEXT('USERENV','CURRENT_SCHEMA'), export_db_name=>'TM.REGRESS.RDBMS.DEV.US.ORACLE.COM', inst_scn=>'2148439');
COMMIT;
END;
-- new object type path is: SCHEMA_EXPORT/TABLE/TABLE
CREATE TABLE "SCOTT"."DEPT"
   (     "DEPTNO" NUMBER(2,0),
     "DNAME" VARCHAR2(14),
     "LOC" VARCHAR2(13)
   ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
  TABLESPACE "USERS" ;
CREATE TABLE "SCOTT"."EMP"
   (     "EMPNO" NUMBER(4,0),
     "ENAME" VARCHAR2(10),
     "JOB" VARCHAR2(9),
     "MGR" NUMBER(4,0),
     "HIREDATE" DATE,
     "SAL" NUMBER(7,2),
     "COMM" NUMBER(7,2),
     "DEPTNO" NUMBER(2,0)
   ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
  TABLESPACE "USERS" ;
CREATE TABLE "SCOTT"."BONUS"
   (     "ENAME" VARCHAR2(10),
     "JOB" VARCHAR2(9),
     "SAL" NUMBER,
     "COMM" NUMBER
   ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
  TABLESPACE "USERS" ;
CREATE TABLE "SCOTT"."SALGRADE"
   (     "GRADE" NUMBER,
     "LOSAL" NUMBER,
     "HISAL" NUMBER
   ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
  TABLESPACE "USERS" ;
-- new object type path is: SCHEMA_EXPORT/TABLE/INDEX/INDEX
CREATE UNIQUE INDEX "SCOTT"."PK_DEPT" ON "SCOTT"."DEPT" ("DEPTNO")
  PCTFREE 10 INITRANS 2 MAXTRANS 255
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
  TABLESPACE "USERS" PARALLEL 1 ;
  ALTER INDEX "SCOTT"."PK_DEPT" NOPARALLEL;
CREATE UNIQUE INDEX "SCOTT"."PK_EMP" ON "SCOTT"."EMP" ("EMPNO")
  PCTFREE 10 INITRANS 2 MAXTRANS 255
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
  TABLESPACE "USERS" PARALLEL 1 ;
  ALTER INDEX "SCOTT"."PK_EMP" NOPARALLEL;
-- new object type path is: SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
ALTER TABLE "SCOTT"."DEPT" ADD CONSTRAINT "PK_DEPT" PRIMARY KEY ("DEPTNO")
  USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
  TABLESPACE "USERS"  ENABLE;
ALTER TABLE "SCOTT"."EMP" ADD CONSTRAINT "PK_EMP" PRIMARY KEY ("EMPNO")
  USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
  TABLESPACE "USERS"  ENABLE;
-- new object type path is: SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
DECLARE IND_NAME VARCHAR2(60);
   IND_OWNER VARCHAR2(60);
  BEGIN
   DELETE FROM "SYS"."IMPDP_STATS";
   IND_NAME := 'PK_DEPT';   IND_OWNER := 'SCOTT';
   INSERT INTO "SYS"."IMPDP_STATS" (type, version, flags, c1, c2, c3, c5,
               n1, n2, n3, n4, n5, n6, n7, n8, n9, n10, n11, n12, d1)
       VALUES ('I', 4, 2, IND_NAME, NULL, NULL, 'SCOTT', 4, 1, 4, 1, 1, 1, 0, 4, NULL, NULL, NULL, NULL, TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'));
   DBMS_STATS.IMPORT_INDEX_STATS( '"' || ind_owner || '"', '"' || ind_name || '"', NULL, '"IMPDP_STATS"', NULL, '"SYS"');
   DELETE FROM "SYS"."IMPDP_STATS";
END;
DECLARE IND_NAME VARCHAR2(60);
   IND_OWNER VARCHAR2(60);
  BEGIN
   DELETE FROM "SYS"."IMPDP_STATS";
   IND_NAME := 'PK_EMP';   IND_OWNER := 'SCOTT';
   INSERT INTO "SYS"."IMPDP_STATS" (type, version, flags, c1, c2, c3, c5,
               n1, n2, n3, n4, n5, n6, n7, n8, n9, n10, n11, n12, d1)
       VALUES ('I', 4, 2, IND_NAME, NULL, NULL, 'SCOTT', 14, 1, 14, 1, 1, 1, 0, 14, NULL, NULL, NULL, NULL, TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'));
   DBMS_STATS.IMPORT_INDEX_STATS( '"' || ind_owner || '"', '"' || ind_name || '"', NULL, '"IMPDP_STATS"', NULL, '"SYS"');
   DELETE FROM "SYS"."IMPDP_STATS";
END;
-- new object type path is: SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
ALTER TABLE "SCOTT"."EMP" ADD CONSTRAINT "FK_DEPTNO" FOREIGN KEY ("DEPTNO")
       REFERENCES "SCOTT"."DEPT" ("DEPTNO") ENABLE;
-- new object type path is: SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
BEGIN
   DELETE FROM "SYS"."IMPDP_STATS";
   INSERT INTO "SYS"."IMPDP_STATS" (type, version, flags,
               c1, c2, c3, c5,
               n1, n2, n3, n4, n10, n11, n12, d1)
       VALUES ('T', 4, 2, 'DEPT', NULL, NULL, 'SCOTT',
       4, 5, 20, 4, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'));
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'DEPT', NULL, NULL, 'DEPTNO', 'SCOTT',
       4, .25, 4, 4, 0, 10, 40, 3, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), 'C10B', 'C129', NULL, 2);
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'DEPT', NULL, NULL, 'DNAME', 'SCOTT',
       4, .25, 4, 4, 0, 3.38863550087541E+35, 4.32285038677786E+35, 10, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), '4143434F554E54494E47', '53414C4553', NULL, 2);
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'DEPT', NULL, NULL, 'LOC', 'SCOTT',
       4, .25, 4, 4, 0, 3.44300505052090E+35, 4.06405544089997E+35, 8, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), '424F53544F4E', '4E455720594F524B', NULL, 2);
   DBMS_STATS.IMPORT_TABLE_STATS('"SCOTT"', '"DEPT"', NULL, '"IMPDP_STATS"', NULL, NULL, '"SYS"');
   DELETE FROM "SYS"."IMPDP_STATS";
END;
BEGIN
   DELETE FROM "SYS"."IMPDP_STATS";
   INSERT INTO "SYS"."IMPDP_STATS" (type, version, flags,
               c1, c2, c3, c5,
               n1, n2, n3, n4, n10, n11, n12, d1)
       VALUES ('T', 4, 2, 'EMP', NULL, NULL, 'SCOTT',
       14, 5, 37, 14, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'));
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'EMP', NULL, NULL, 'EMPNO', 'SCOTT',
       14, .0714285714285714, 14, 14, 0, 7369, 7934, 4, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), 'C24A46', 'C25023', NULL, 2);
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'EMP', NULL, NULL, 'ENAME', 'SCOTT',
       14, .0714285714285714, 14, 14, 0, 3.38883673419062E+35, 4.53054701071074E+35, 6, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), '4144414D53', '57415244', NULL, 2);
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'EMP', NULL, NULL, 'JOB', 'SCOTT',
       5, .2, 5, 14, 0, 3.39086497213261E+35, 4.32285038678150E+35, 8, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), '414E414C595354', '53414C45534D414E', NULL, 2);
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'EMP', NULL, NULL, 'MGR', 'SCOTT',
       6, .166666666666667, 6, 13, 1, 7566, 7902, 4, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), 'C24C43', 'C25003', NULL, 2);
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'EMP', NULL, NULL, 'HIREDATE', 'SCOTT',
       13, .0769230769230769, 13, 14, 0, 2444591, 2446939, 8, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), '77B40C11010101', '77BB0517010101', NULL, 2);
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'EMP', NULL, NULL, 'SAL', 'SCOTT',
       12, .0833333333333333, 12, 14, 0, 800, 5000, 4, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), 'C209', 'C233', NULL, 2);
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'EMP', NULL, NULL, 'COMM', 'SCOTT',
       4, .25, 4, 4, 10, 0, 1400, 2, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), '80', 'C20F', NULL, 2);
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'EMP', NULL, NULL, 'DEPTNO', 'SCOTT',
       3, .333333333333333, 3, 14, 0, 10, 30, 3, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), 'C10B', 'C11F', NULL, 2);
   DBMS_STATS.IMPORT_TABLE_STATS('"SCOTT"', '"EMP"', NULL, '"IMPDP_STATS"', NULL, NULL, '"SYS"');
   DELETE FROM "SYS"."IMPDP_STATS";
END;
BEGIN
   DELETE FROM "SYS"."IMPDP_STATS";
   INSERT INTO "SYS"."IMPDP_STATS" (type, version, flags,
               c1, c2, c3, c5,
               n1, n2, n3, n4, n10, n11, n12, d1)
       VALUES ('T', 4, 2, 'BONUS', NULL, NULL, 'SCOTT',
       0, 0, 0, 0, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'));
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'BONUS', NULL, NULL, 'ENAME', 'SCOTT',
       0, 0, 0, NULL, 0, 0, 0, 0, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), NULL, NULL, NULL, 2);
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'BONUS', NULL, NULL, 'JOB', 'SCOTT',
       0, 0, 0, NULL, 0, 0, 0, 0, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), NULL, NULL, NULL, 2);
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'BONUS', NULL, NULL, 'SAL', 'SCOTT',
       0, 0, 0, NULL, 0, 0, 0, 0, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), NULL, NULL, NULL, 2);
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'BONUS', NULL, NULL, 'COMM', 'SCOTT',
       0, 0, 0, NULL, 0, 0, 0, 0, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), NULL, NULL, NULL, 2);
   DBMS_STATS.IMPORT_TABLE_STATS('"SCOTT"', '"BONUS"', NULL, '"IMPDP_STATS"', NULL, NULL, '"SYS"');
   DELETE FROM "SYS"."IMPDP_STATS";
END;
BEGIN
   DELETE FROM "SYS"."IMPDP_STATS";
   INSERT INTO "SYS"."IMPDP_STATS" (type, version, flags,
               c1, c2, c3, c5,
               n1, n2, n3, n4, n10, n11, n12, d1)
       VALUES ('T', 4, 2, 'SALGRADE', NULL, NULL, 'SCOTT',
       5, 5, 10, 5, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'));
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'SALGRADE', NULL, NULL, 'GRADE', 'SCOTT',
       5, .2, 5, 5, 0, 1, 5, 3, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), 'C102', 'C106', NULL, 2);
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'SALGRADE', NULL, NULL, 'LOSAL', 'SCOTT',
       5, .2, 5, 5, 0, 700, 3001, 4, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), 'C208', 'C21F02', NULL, 2);
   INSERT INTO "SYS"."IMPDP_STATS" (type, version,
               c1, c2, c3, c4, c5, n1,
               n2, n3, n4, n5, n6, n7, n8, n9, n10, n11,
               d1, r1, r2, ch1, flags)
       VALUES ('C', 4, 'SALGRADE', NULL, NULL, 'HISAL', 'SCOTT',
       5, .2, 5, 5, 0, 1200, 9999, 4, NULL, NULL, NULL,
       TO_DATE('2009-11-09 22:00:18', 'YYYY-MM-DD:HH24:MI:SS'), 'C20D', 'C26464', NULL, 2);
   DBMS_STATS.IMPORT_TABLE_STATS('"SCOTT"', '"SALGRADE"', NULL, '"IMPDP_STATS"', NULL, NULL, '"SYS"');
   DELETE FROM "SYS"."IMPDP_STATS";
END;
/Ran the sql file as sys in DB2. The output was 'Procedure successfully completed' but the user SCOTT was not created.
I am trying to find the quickest way to re-create just the account, with all the grants, profile, roles, privileges and tablespace quotas.
Thanks.

Similar Messages

  • How to get all AD User accounts, associated with any application/MSA/Batch Job running in a Local or Remote machine using Script (PowerShell)

    Dear Scripting Guys,
    I am working in an AD migration project (Migration from old legacy AD domains to single AD domain) and in the transition phase. Our infrastructure contains lots
    of Users, Servers and Workstations. Authentication is being done through AD only. Many UNIX and LINUX based box are being authenticated through AD bridge to AD. 
    We have lot of applications in our environment. Many applications are configured to use Managed Service Accounts. Many Workstations and servers are running batch
    jobs with AD user credentials. Many applications are using AD user accounts to carry out their processes. 
    We need to find out all those AD Users, which are configured as MSA, Which are configured for batch jobs and which are being used for different applications on
    our network (Need to find out for every machine on network).
    These identified AD Users will be migrated to the new Domain with top priority. I get stuck with this requirement and your support will be deeply appreciated.
    I hope a well designed PS script can achieve this. 
    Thanks in advance...
    Thanks & Regards Bedanta S Mishra

    Hey Satyajit,
    Thank you for your valuable reply. It is really a great notion to enable account logon audit and collect those events for the analysis. But you know it is also a tedious job when thousand of Users come in to picture. You can imagine how complex it will be
    for this analysis, where more than 200000 users getting logged in through AD. It is the fact that when a batch / MS or an application uses a Domain Users credential with successful process, automatically a successful logon event will be triggered in associated
    DC. But there are also too many users which are not part of these accounts like MSA/Batch jobs or not linked to any application. In that case we have to get through unwanted events. 
    Recently jrv, provided me a beautiful script to find out all MSA from a machine or from a list of machines in an AD environment. (Covers MSA part.)
    $Report= 'Audit_Report.html'
    $Computers= Get-ADComputer -Filter 'Enabled -eq $True' | Select -Expand Name
    $head=@'
    <title>Non-Standard Service Accounts</title>
    <style>
    BODY{background-color :#FFFFF}
    TABLE{Border-width:thin;border-style: solid;border-color:Black;border-collapse: collapse;}
    TH{border-width: 1px;padding: 2px;border-style: solid;border-color: black;background-color: ThreeDShadow}
    TD{border-width: 1px;padding: 2px;border-style: solid;border-color: black;background-color: Transparent}
    </style>
    $sections=@()
    foreach($computer in $Computers){
    $sections+=Get-WmiObject -ComputerName $Computer -class Win32_Service -ErrorAction SilentlyContinue |
    Select-Object -Property StartName,Name,DisplayName |
    ConvertTo-Html -PreContent "<H2>Non-Standard Service Accounts on '$Computer'</H2>" -Fragment
    $body=$sections | out-string
    ConvertTo-Html -Body $body -Head $head | Out-File $report
    Invoke-Item $report
    A script can be designed to get all scheduled back ground batch jobs in a machine, from which the author / the Owner of that scheduled job can be extracted. like below one...
    Function Get-ScheduledTasks
    Param
    [Alias("Computer","ComputerName")]
    [Parameter(Position=1,ValuefromPipeline=$true,ValuefromPipelineByPropertyName=$true)]
    [string[]]$Name = $env:COMPUTERNAME
    [switch]$RootOnly = $false
    Begin
    $tasks = @()
    $schedule = New-Object -ComObject "Schedule.Service"
    Process
    Function Get-Tasks
    Param($path)
    $out = @()
    $schedule.GetFolder($path).GetTasks(0) | % {
    $xml = [xml]$_.xml
    $out += New-Object psobject -Property @{
    "ComputerName" = $Computer
    "Name" = $_.Name
    "Path" = $_.Path
    "LastRunTime" = $_.LastRunTime
    "NextRunTime" = $_.NextRunTime
    "Actions" = ($xml.Task.Actions.Exec | % { "$($_.Command) $($_.Arguments)" }) -join "`n"
    "Triggers" = $(If($xml.task.triggers){ForEach($task in ($xml.task.triggers | gm | Where{$_.membertype -eq "Property"})){$xml.task.triggers.$($task.name)}})
    "Enabled" = $xml.task.settings.enabled
    "Author" = $xml.task.principals.Principal.UserID
    "Description" = $xml.task.registrationInfo.Description
    "LastTaskResult" = $_.LastTaskResult
    "RunAs" = $xml.task.principals.principal.userid
    If(!$RootOnly)
    $schedule.GetFolder($path).GetFolders(0) | % {
    $out += get-Tasks($_.Path)
    $out
    ForEach($Computer in $Name)
    If(Test-Connection $computer -count 1 -quiet)
    $schedule.connect($Computer)
    $tasks += Get-Tasks "\"
    Else
    Write-Error "Cannot connect to $Computer. Please check it's network connectivity."
    Break
    $tasks
    End
    [System.Runtime.Interopservices.Marshal]::ReleaseComObject($schedule) | Out-Null
    Remove-Variable schedule
    Get-ScheduledTasks -RootOnly | Format-Table -Wrap -Autosize -Property RunAs,ComputerName,Actions
    So I think, can a PS script be designed to get the report of all running applications which use domain accounts for their authentication to carry out their process. So from that result we can filter out the AD accounts being used for those
    applications. After that these three individual modules can be compacted in to a single script to provide the desired output as per the requirement in a single report.
    Thanks & Regards Bedanta S Mishra

  • Migrate a Local User Account to a Network Account Shell Script

    http://support.apple.com/kb/HT5338?viewlocale=en_US&locale=en_US
    If you are looking for an easy way to migrate local users to network users without losing data, then try this script.
    Follow steps 1-10 in the support link above before running this script.
    1) Open /Applications/Utilities/Terminal.App
    2) Type vi myscriptname.sh
    3) type "i" to edit the document
    4) Copy and paste the following text in the terminal window
    #!/bin/bash
    echo "Go to http://support.apple.com/kb/HT5338?viewlocale=en_US&locale=en_US"
    echo "Complete steps 1-10 before continuing"
    echo -n "Enter 'USER' and press enter:"
    read USER
    echo -n "Enter 'SERVER' and press enter:"
    read SERVER
    sudo scp -Epr /Users/$USER root@$SERVER:/Users/
    sudo mv -f /Users/$USER /Users/$USER.old
    ssh root@$SERVER sudo chown -R $USER:staff /Users/$USER
    5) hit (ESC) then colon : and type wq! and hit return to save the document
    6) In Terminal type: chmod +x myscriptname.sh
    7) in Finder, Right Click or Control+Click myscriptname.sh and select open with
    8) Select "Show All Applications" and Navigate to /Applications/Utilities/terminal.App
    9) in Finder, Right Click or Control+Click myscriptname.sh and select get info / Open with and click "Change All" to open all .sh files in Terminal
    10) Double Click myscriptname.sh
    11) For USER enter the name of the network account
    12) For SERVER enter your server name (server.example.com)
    13) Enter the Admin Pass for the Local Machine, Then the Server, Then the server again
    14) The user folder will be renamed to user.old (bob.old)
    15) When you login as the network user account OS X Server Will copy your data to the local machine with Portable home directories
    16) Once you verify all the info is there you can delete the user.old folder from the /Users/ folder (bob.old)

    replace sudo scp -epr with sudo rsync -auvth if you do not want to waste space copying hardlinks

  • Powershell Script to change the default user Account picture for all users in windows 7 and 8

    Hello,
    Can some sone help me with PS script to change user account pictures of all user account in windows 7 and windows 8 ?
    I will deploy this through MDT TS as Custom TS after OSD.
    Shailendra
    Shailendra Dev

    Hello,
    Can some sone help me with PS script to change user account pictures of all user account in windows 7 and windows 8 ?
    I will deploy this through MDT TS as Custom TS after OSD.
    Shailendra
    Shailendra Dev
    The default user account picture is stored here.
    C:\programdata\Microsoft\User Account Pictures\user.bmp
    It should just be a matter have copying the picture you want to that location and over writing what is there.
    or....
    Computer Configuration\Administrative Templates\Control Panel\User Accounts\Apply the default user logon picture to all users
    You can also configure this by a registry setting;
     [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer]
      UseDefaultTile = 1
    The picture that you configure, will not be loaded until the user account will actually be created on the pc. Meaning the first time a >new< user will log on to a pc, they will have no picture shown at all using their login screen (this is default
    behavior). Same will occur if you enable the policy don't display last user name. However, once they log in the picture will be shown in the start menu, and if they lock their pc the image will also be shown

  • BASH script to determine most recent/used user account

    Hi everyone,
    I'm trying to patch a script I have to copy user data and set permissions accordingly. I'd like to have the script sense the most-logged-into user account and set permissions on the corresponding home folder, is there a way to do this in Tiger?
    My next question is that these computers are being upgraded from Tiger to Leopard. Is there a way in Leopard to sense all existing user accounts (again in BASH), and set permissions on their corresponding home folders? That might be the best solution, and the easiest to implement.
    TIA!

    Hi everyone,
    I'm trying to patch a script I have to copy user data and set permissions accordingly. I'd like to have the script sense the most-logged-into user account and set permissions on the corresponding home folder, is there a way to do this in Tiger?
    My next question is that these computers are being upgraded from Tiger to Leopard. Is there a way in Leopard to sense all existing user accounts (again in BASH), and set permissions on their corresponding home folders? That might be the best solution, and the easiest to implement.
    TIA!

  • Script/automate creating CRM user account

    Is it possible to script creating a CRM (2011) user account? We want to create a CRM account for every new hire. Rather than doing it manually, if there were a Powershell script available to do the work, then we could automate it.

    I'm not sure if you can create an account from the terminal that will be recognized by OS X. I don't know much about the Terminal or Unix commands, but I'm thinking you may need to restart. A user without a home directory should be able to log on; I've done that myself (on Leopard). Try adding the home directory anyway.

  • Mac OS X maintenance scripts and multiple user accounts

    Hi everyone
    Just wondering how the default maintenance scripts scheduled to run in the early morning works with multiple user accounts. Our Macs at home all have multiple user accounts (one for each of us) and I'm wondering whether the scripts work their magic across all accounts (assuming the computer itself is switched on AND not asleep).
    Also, is the behaviour the same regardless of Mac OS X version? More specifically we're using snow leopard, lion, mountain lion, and maybe shortly mavericks.
    Thanks!
    Joe.

    The maintenance scripts run by periodic perform system tasks. They do nothing in a user's account (unless you modify the scripts or create your own). They are primarily designed for long lived systems (servers). There isn't any magic nor would a normal mac users find any differences whether they ran or not.
    In all the operating system versions that you mention, the scripts will run when the computer wakes, assuming that the computer was turned on before the prescribe times.

  • Need an script to create some user account with increasing passwords

    hi friends
    i'm not expert in scripting.
    manager gave me a list of about 50 users which i must create in my windows server 2008 R2 local users & groups snap-in (Lusrmgr.msc).
    suppose i have this 5 users :
      1-albert    2-Brian   3-calvin  4-carl   5-john
    i need an script (maybe for /L ),so that it reads this 5 users from a text file or .csv file & create them & their password be so:
    albert's password be abc1
    Brian's password be abc2
    calvin's password be abc3 & so on.
    i mean their password be abc ending with increasing number which increases one unit
    thanks in advanced

    There should be some automatic user account generating scripts in the
    repository.
    You can request a script here:
    http://gallery.technet.microsoft.com/scriptcenter/site/requests
    This forum is for scripting questions, not script requests.
    -- Bill Stewart [Bill_Stewart]
    hi Bill
    i wasn't familiar with scriptcenter
    thanks for advice
    regards

  • Powershell Script to move an AD user account to another OU

    Hi Everyone
    I have been searching for this script a long while so if you are having the same problem here is the solution:
    Given only a samaccount name/username, ths script will find the location of the user account and move it to the OU that you want:
    # Given just the username/samaccountname (Andre), the location of the user object is found
    # and the account is then moved to the NewOU
    $UserName = "Andre"
    # Finding the location of the user account Andre:
    $Root = [ADSI]''
    $searcher = new-object System.DirectoryServices.DirectorySearcher($root)
    $searcher.filter = "(&(objectClass=user)(DisplayName= $UserName))"
    $User = $searcher.findone()
    # Binding the user account to $AUser and the OU to move to to $MovetoOU
    $ADSPath = $User.Properties.adspath
    $MoveToOU = [ADSI]("LDAP://OU=NewOU,DC=mydomain,DC=com")
    $AUser = [ADSI]("$ADSPath")
    # Command to Do the actual move
    $AUser.PSBase.moveto($MoveToOU)
    # Send me some comments.

    I like a method like this...
    Import-Module ActiveDirectory
    get-aduser -filter {<What ever your search criteria is> } | %{move-ADObject $_.DistinguishedName -targetpath 'OU=NewOU,DC=Contoso,DC=Local'}
    Works on Server 2008 R2 domain controllers, and RSAT tools on Windows 7 with SP1 when you have the AD powershell portion installed. Does not work with Server 2003 domain controllers or earlier.
    I use that, but I don't care for having to type out the entire DN of the target OU if I'm working from the console.
    I have this in my profile:
    function Get-OU ($Name)
    { Get-ADOrganizationalUnit -filter "Name -like '*$Name*'" |
    Out-GridView -OutputMode Single
    So I can do this:
    Import-Module ActiveDirectory
    get-aduser -filter {<What ever your search criteria is> } |
    %{ move-ADObject $_.DistinguishedName -targetpath (Get-OU Test).DistinguishedName }
    And I'll get a grid view of all of the Test OUs, and I just pick the one I want from the gridview.
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • HT200020 I did the fix but it didn't fix the issue.  It allows me to create the script but when it runs it will not add the user account.

    I did the fix but it didn't fix the issue.  It allows me to create the script but when it runs it will not add the user account.

    Here is all the same setting aside from the user info being created.
    https://www.dropbox.com/s/kkxmhls3bfs6ns3/Apple%20Support%20Installer%20Script.p kg

  • I need a logout script that will erase the standard user account data after logout.

    I have a lab of 35 Macbook Pros and I am trying to make it where when the user logouts, it will erase the data after they logout.
    I have found several articles about deleting user accounts when they login through AD, but this is not the case.
    Any help would be much help!

    Then when they are at those system they do not Login and if they do have to enter a password it is whatever it is for the Base user account that is setup. Right?
    I'd look at the Mac KB system to see if you can restrict saving to the local HDD but yet allow saving to a thumb drive or not.
    To do what you want the system would need to keep track of all files saved from time X to time Y, and those times would be every changing. Not sure you are going to get there from here.
    Not sure what you mean by Lab machines. I've worked in and gone to school at a Graphic art school and they have hundreds of Lab Mac's that each student must log into with there own user account when in different classes and when saving any of there work it gets saved on the server so it can be retrieved by them when they log into another system someplace else throughout the school or when using their own computer and connected to the schools network.
    I wish you the best of luck with this project.

  • System Preferences quit unexpectedly every time I tried to open User Accounts

    Hi there...
    Could you please help me... My MacOSX Lion 10.7.5 could not open User Accounts in System Preferences.. it always quit unexpectedly every time I try to access it.
    Fyi, I've just upgrade MacOSX Lion into 10.7.5 where I didn't have this issue with 10.7.4
    Here is the problem script:
    Process:         System Preferences [4582]
    Path:            /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Identifier:      com.apple.systempreferences
    Version:         11.0 (11.0)
    Build Info:      SystemPrefsApp-214009000000000~8
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [232]
    Date/Time:       2012-10-05 22:54:41.272 -0400
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:          20693 sec
    Crashes Since Last Report:           1926
    Per-App Interval Since Last Report:  4 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      122855D8-6C99-4356-AC25-F5DA48047646
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000008
    VM Regions Near 0x8:
    -->
        __TEXT                 000000010b4c7000-000000010b4ea000 [  140K] r-x/rwx SM=COW  /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Application Specific Information:
    com.apple.preferences.users v.12.1 (Users & Groups)
    objc[4582]: garbage collection is ON
    FEBufferImage
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x00007fff857ec436 CFGetTypeID + 166
    1   com.apple.framework.Admin               0x00007fff8c11cc54 +[NSDictionary(cXMLDataConvertor) dictionaryFromXMLString:] + 151
    2   com.apple.framework.Admin               0x00007fff8c114564 -[User familySettings] + 54
    3   com.apple.preferences.users             0x00000001117aa2b9 0x1117a7000 + 12985
    4   com.apple.preferences.users             0x00000001117aa01c 0x1117a7000 + 12316
    5   com.apple.preferences.users             0x00000001117a9687 0x1117a7000 + 9863
    6   com.apple.preferences.users             0x00000001117a9227 0x1117a7000 + 8743
    7   com.apple.AppKit                        0x00007fff86e22f7e -[NSCustomObject nibInstantiate] + 418
    8   com.apple.AppKit                        0x00007fff86e22d69 -[NSIBObjectData instantiateObject:] + 303
    9   com.apple.AppKit                        0x00007fff86e21fc5 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 347
    10  com.apple.AppKit                        0x00007fff86e188bb loadNib + 322
    11  com.apple.AppKit                        0x00007fff86e17db8 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
    12  com.apple.AppKit                        0x00007fff86e17cd3 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
    13  com.apple.frameworks.preferencepanes          0x00007fff89bbda04 -[NSPreferencePane loadMainView] + 154
    14  com.apple.frameworks.preferencepanes          0x00007fff89bbe954 -[NSPrefPaneBundle instantiatePrefPaneObject] + 438
    15  com.apple.systempreferences             0x000000010b4cf6fc 0x10b4c7000 + 34556
    16  com.apple.systempreferences             0x000000010b4ced32 0x10b4c7000 + 32050
    17  com.apple.Foundation                    0x00007fff8c28b186 __NSFireDelayedPerform + 392
    18  com.apple.CoreFoundation                0x00007fff85832934 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    19  com.apple.CoreFoundation                0x00007fff85832486 __CFRunLoopDoTimer + 534
    20  com.apple.CoreFoundation                0x00007fff85812e11 __CFRunLoopRun + 1617
    21  com.apple.CoreFoundation                0x00007fff85812486 CFRunLoopRunSpecific + 230
    22  com.apple.HIToolbox                     0x00007fff8e8f92bf RunCurrentEventLoopInMode + 277
    23  com.apple.HIToolbox                     0x00007fff8e9004bf ReceiveNextEventCommon + 181
    24  com.apple.HIToolbox                     0x00007fff8e9003fa BlockUntilNextEventMatchingListInMode + 62
    25  com.apple.AppKit                        0x00007fff86e10779 _DPSNextEvent + 659
    26  com.apple.AppKit                        0x00007fff86e1007d -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    27  com.apple.AppKit                        0x00007fff86e0c9b9 -[NSApplication run] + 470
    28  com.apple.AppKit                        0x00007fff87088eac NSApplicationMain + 867
    29  com.apple.systempreferences             0x000000010b4c8b30 0x10b4c7000 + 6960
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff8a0e2192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff85dac594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff85dadb85 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8a0e27e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff85164786 _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff85163316 _dispatch_mgr_thread + 54
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8a0e2192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff85dac594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff85dadb85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8a0e2192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff85dac594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff85dadb85 start_wqthread + 13
    Thread 5:: Dispatch queue: com.apple.coreimage.FEVirtualMemoryCache
    0   libsystem_kernel.dylib                  0x00007fff8a0e067a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a0dfd71 mach_msg + 73
    2   libsystem_kernel.dylib                  0x00007fff8a0dddc9 vm_purgable_control + 140
    3   com.apple.CoreImage                     0x00007fff81f03151 __addPointer_block_invoke_0 + 190
    4   libdispatch.dylib                       0x00007fff85162a82 _dispatch_call_block_and_release + 18
    5   libdispatch.dylib                       0x00007fff851642d2 _dispatch_queue_drain + 264
    6   libdispatch.dylib                       0x00007fff8516412e _dispatch_queue_invoke + 54
    7   libdispatch.dylib                       0x00007fff85163928 _dispatch_worker_thread2 + 198
    8   libsystem_c.dylib                       0x00007fff85dac3da _pthread_wqthread + 316
    9   libsystem_c.dylib                       0x00007fff85dadb85 start_wqthread + 13
    Thread 6:: Dispatch queue: com.apple.root.default-priority
    0   libauto.dylib                           0x00007fff84ca65e1 Auto::Zone::should_collect() + 1
    1   libauto.dylib                           0x00007fff84c91f75 auto_zone_collect + 245
    2   libobjc.A.dylib                         0x00007fff89c8419d objc_collect + 503
    3   libdispatch.dylib                       0x00007fff851639a4 _dispatch_worker_thread2 + 322
    4   libsystem_c.dylib                       0x00007fff85dac3da _pthread_wqthread + 316
    5   libsystem_c.dylib                       0x00007fff85dadb85 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8a0e2192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff85dac594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff85dadb85 start_wqthread + 13
    Thread 8:: Dispatch queue: Garbage Collection Work Queue
    0   com.apple.CoreFoundation                0x00007fff857e2a00 CFRelease + 0
    1   com.apple.CoreImage                     0x00007fff81de1b69 image_buffer_finalize(FEBufferImage*) + 118
    2   com.apple.CoreImage                     0x00007fff81de1c11 -[FEBufferImage finalize] + 20
    3   libobjc.A.dylib                         0x00007fff89c8557c finalizeOneObject + 53
    4   libauto.dylib                           0x00007fff84ca907e Auto::foreach_block_do(auto_zone_cursor*, void (*)(void*, void*), void*) + 94
    5   libobjc.A.dylib                         0x00007fff89c854ac batchFinalize + 53
    6   libobjc.A.dylib                         0x00007fff89c855fb batchFinalizeOnTwoThreads + 91
    7   libauto.dylib                           0x00007fff84ca9019 Auto::Zone::invalidate_garbage(unsigned long, void**) + 73
    8   libauto.dylib                           0x00007fff84c967db auto_collect_internal(Auto::Zone*, unsigned int) + 459
    9   libauto.dylib                           0x00007fff84c9221a __auto_zone_collect_block_invoke_0 + 74
    10  libdispatch.dylib                       0x00007fff85162a82 _dispatch_call_block_and_release + 18
    11  libdispatch.dylib                       0x00007fff851642d2 _dispatch_queue_drain + 264
    12  libdispatch.dylib                       0x00007fff8516412e _dispatch_queue_invoke + 54
    13  libdispatch.dylib                       0x00007fff85163928 _dispatch_worker_thread2 + 198
    14  libsystem_c.dylib                       0x00007fff85dac3da _pthread_wqthread + 316
    15  libsystem_c.dylib                       0x00007fff85dadb85 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8a0e2192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff85dac594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff85dadb85 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8a0e1e42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff85d60dea nanosleep + 164
    2   com.apple.Foundation                    0x00007fff8c308ee1 +[NSThread sleepUntilDate:] + 181
    3   com.apple.imageKit                      0x00007fff89753788 -[IKImageCropView preloadThread] + 121
    4   com.apple.Foundation                    0x00007fff8c2d972a -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff8c2d96a2 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff85daa8bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff85dadb75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000000  rcx: 0x0000000000000087  rdx: 0x0000000000000074
      rdi: 0x0000000000000000  rsi: 0x0000000401168d40  rbp: 0x00007fff6b0c4fc0  rsp: 0x00007fff6b0c4fb0
       r8: 0x0000000401100000   r9: 0x0000000000002f8d  r10: 0x00000000000000c1  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x00007fff732eeef8  r14: 0x0000000401168d40  r15: 0x0000000000000000
      rip: 0x00007fff857ec436  rfl: 0x0000000000010246  cr2: 0x0000000000000008
    Logical CPU: 1
    Binary Images:
           0x10b4c7000 -        0x10b4e9fff  com.apple.systempreferences (11.0 - 11.0) <B3187F74-9420-3080-AD41-C6BC6C95FD05> /Applications/System Preferences.app/Contents/MacOS/System Preferences
           0x10b5da000 -        0x10b5dbff3 +cl_kernels (??? - ???) <43F02177-49EF-4D13-B7C5-F1D2A199D4A0> cl_kernels
           0x10f621000 -        0x10f62ffff  com.apple.frameworks.opendirectoryconfigui (10.7 - 10.7) <1383F700-AB33-3C69-926C-79367B81E925> /System/Library/PrivateFrameworks/OpenDirectoryConfigUI.framework/Versions/A/Op enDirectoryConfigUI
           0x10f63f000 -        0x10f654fff  com.apple.frameworks.preferencepanessupport (1.0 - 1.0) <B7E1A6D7-5C75-3626-ACD9-682B6CBC3EBF> /System/Library/PrivateFrameworks/PreferencePanesSupport.framework/Versions/A/P referencePanesSupport
           0x10f668000 -        0x10f67cfff  com.apple.OpenDirectoryConfig (10.7 - 55.1) <B863762E-239C-3808-B85A-FEF20FDFA50A> /System/Library/PrivateFrameworks/OpenDirectoryConfig.framework/Versions/A/Open DirectoryConfig
           0x10f6b3000 -        0x10f6bdfef  libcldcpuengine.dylib (2.0.19 - compatibility 1.0.0) <4572AD1E-D1D1-3412-AFCC-D37037B1FAB5> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x10f6c3000 -        0x10f6c6ff7  libCoreFSCache.dylib (??? - ???) <0D155750-7910-32C5-8327-924FC1089442> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x110435000 -        0x110435ff1 +cl_kernels (??? - ???) <7FB4D3CD-34E8-4D16-9996-515556951FC9> cl_kernels
           0x110447000 -        0x1104e6ff7  unorm8_bgra.dylib (2.0.19 - compatibility 1.0.0) <47DA7D73-C52D-322F-A08F-4DB320A65373> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x111737000 -        0x111749ff7  com.apple.PlatformHardwareManagement (2.0.1 - 2.0.1) <0272C107-5F2D-33C2-958C-913C0E46C86E> /System/Library/PrivateFrameworks/PlatformHardwareManagement.framework/Versions /A/PlatformHardwareManagement
           0x1117a7000 -        0x111800fff  com.apple.preferences.users (12.1 - 12.1) <FD8A48A1-C498-3C2B-969C-7F2A125DDFFC> /System/Library/PreferencePanes/Accounts.prefPane/Contents/MacOS/Accounts
           0x11182e000 -        0x1118aefff  com.apple.frameworks.server.kit (10.7.2 - 171.11) <97B338D1-07B3-3A96-A1C3-916AABD84736> /System/Library/PrivateFrameworks/ServerKit.framework/Versions/A/ServerKit
           0x111908000 -        0x11198eff7  com.apple.frameworks.server.foundation (10.7.3 - 185.6) <4719FA2C-6BAB-31F9-B68A-6DBC80FAC996> /System/Library/PrivateFrameworks/ServerFoundation.framework/Versions/A/ServerF oundation
           0x1119ef000 -        0x111a29ff7  com.apple.frameworks.CoreDaemon (1.0 - 1.0) <A131985C-8F2E-3706-957E-89BA1FA6A14E> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
           0x111a57000 -        0x111a61fff  com.apple.iokit.IOUSBLib (5.0.0 - 5.0.0) <BC5B59F2-6816-3FC2-8313-38321BF18C51> /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
        0x7fff6b0c7000 -     0x7fff6b0fbbaf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff81d4d000 -     0x7fff81d91ff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <B2A38D2C-7E82-34C5-8896-48C37B0E64A3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff81d92000 -     0x7fff82006fff  com.apple.CoreImage (7.99.1 - 1.0.1) <4BB09B79-275B-364C-9466-0FF36ABB1218> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff82007000 -     0x7fff820f3ff7  com.apple.backup.framework (1.3.5 - 1.3.5) <B25104A3-1CE5-36CA-8F26-0A2DE3F95F70> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff820f4000 -     0x7fff82121fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <CE1EDD58-7273-38F9-AD33-871A8BA7ABF3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff82127000 -     0x7fff82162fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff82163000 -     0x7fff8217afff  com.apple.CFOpenDirectory (10.7 - 146) <E71AE4A2-F72B-35F2-9043-9F45CF75F11A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8217b000 -     0x7fff821ffff7  com.apple.ApplicationServices.ATS (317.12.0 - ???) <BE3C156D-8326-37AA-BC4E-D3C0D31BF976> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff82200000 -     0x7fff8221ffff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff82220000 -     0x7fff8222efff  com.apple.NetAuth (3.1 - 3.1) <FE7EC4D7-5632-3B8D-9094-A0AC8D60EDEE> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff823a2000 -     0x7fff823a7fff  libGIF.dylib (??? - ???) <58A4492D-AAE7-3B8F-8B06-62867471A3EE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff823a8000 -     0x7fff823beff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <1AD40E02-2126-377B-A0D2-CBB21D932558> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff823bf000 -     0x7fff823c0ff7  libsystem_sandbox.dylib (??? - ???) <2A09E4DA-F47C-35CB-B70C-E0492BA9F20E> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff823c1000 -     0x7fff82463fff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff82470000 -     0x7fff82491fff  libPng.dylib (??? - ???) <E2B52527-4D0C-3595-BB13-8E8EF364E998> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff82d93000 -     0x7fff831c0fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff831c1000 -     0x7fff831e5fff  com.apple.RemoteViewServices (1.5 - 44.2) <A0417D7F-22E9-3FD8-AC55-67654D8E93EB> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff831e6000 -     0x7fff8324eff7  com.apple.coreui (1.2.2 - 165.11) <9316266A-39CA-3EC7-9C9E-726462CEFF4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8325d000 -     0x7fff8325dfff  libOpenScriptingUtil.dylib (??? - ???) <A7847713-F410-39C0-884F-A7188A18E742> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8325e000 -     0x7fff83260fff  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <8D9832F9-E4A9-38C3-B880-E5210B2353C7> /usr/lib/system/libquarantine.dylib
        0x7fff83261000 -     0x7fff83bffa27  com.apple.CoreGraphics (1.600.0 - ???) <576777EA-921B-3D94-98C3-40A9CF8EBD18> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff83c00000 -     0x7fff840c7fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff84164000 -     0x7fff84171fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <72C53E7B-C222-3BE5-9984-FDC328CC4846> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff84172000 -     0x7fff841e8fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff841e9000 -     0x7fff842d2fff  com.apple.Bluetooth (4.0.8 - 4.0.8f17) <46F432D0-7E25-3900-A5B2-DDB4C2781036> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff842d3000 -     0x7fff842dafff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
        0x7fff8438d000 -     0x7fff843dfff7  libGLU.dylib (??? - ???) <DB906997-0F70-3469-BA0E-2F1DDBEAD8D5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff843e0000 -     0x7fff843e6fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff843e7000 -     0x7fff84791fe7  com.apple.MediaToolbox (1.0 - 705.94) <0719E69C-3275-3BD9-AD04-27DBADEB6E03> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff8479c000 -     0x7fff847c7fff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff847c8000 -     0x7fff848c2ff7  com.apple.DiskImagesFramework (10.7.4 - 331.7) <BEBA6D78-08E0-3B99-B77B-A5CBF3344834> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff84981000 -     0x7fff84985fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff84986000 -     0x7fff8498dff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8498e000 -     0x7fff849a3fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff849a4000 -     0x7fff849a5ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff849cf000 -     0x7fff849d5ff7  com.apple.phonenumbers (1.0 - 47) <BC6C2FE2-99C0-3AD6-AA9C-C88780FFFCCF> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff849d6000 -     0x7fff849f2ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff84a82000 -     0x7fff84abdfff  com.apple.LDAPFramework (3.2 - 120.2) <275D4298-C435-3E98-AA25-95D9D0A56550> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff84abe000 -     0x7fff84b02ff7  com.apple.MediaKit (12 - 602) <0C2CBEDA-412F-3DDF-9C74-44114E5E0DB9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff84b03000 -     0x7fff84b2cfff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff84b2d000 -     0x7fff84c39fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff84c3a000 -     0x7fff84c90fff  libCoreStorage.dylib (??? - ???) <564C1AE4-4669-3D28-9DBF-0256A4341DF9> /usr/lib/libCoreStorage.dylib
        0x7fff84c91000 -     0x7fff84cdffff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff84ce0000 -     0x7fff84d22ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff84d23000 -     0x7fff84d23fff  com.apple.Carbon (153 - 153) <C1A30E01-E113-38A0-95CA-99360F92A37A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff84d24000 -     0x7fff85142ff7  com.apple.SceneKit (125.3 - 125.8) <23382F45-D9CE-3897-B998-5B26337608FD> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff85143000 -     0x7fff85143fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff85144000 -     0x7fff85150fff  com.apple.CoreBluetooth (100.7 - 1) <988DB0FD-7759-3BA0-AE5F-B6DA2BDB3FF5> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
        0x7fff85161000 -     0x7fff8516ffff  libdispatch.dylib (187.10.0 - compatibility 1.0.0) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
        0x7fff85170000 -     0x7fff85310ff7  com.apple.QuartzCore (1.7 - 270.5) <19E5E0AB-DAA9-3F97-988C-D9A46AFB9C04> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8534f000 -     0x7fff8538efff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8538f000 -     0x7fff85393ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff85394000 -     0x7fff853a8ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff853a9000 -     0x7fff853bcff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
        0x7fff853bd000 -     0x7fff853e8ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
        0x7fff853e9000 -     0x7fff8570eff7  com.apple.AddressBook.framework (6.1.3 - 1091) <5A8BEED1-229C-3A9C-8281-581127A1B9B5> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8570f000 -     0x7fff85756ff7  com.apple.CoreMedia (1.0 - 705.94) <700C6863-7A8F-34FA-8B1D-7659EC95000B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff85757000 -     0x7fff857afff7  libTIFF.dylib (??? - ???) <4DA86D53-8977-351D-9DC5-C7AE8F0FD423> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff857da000 -     0x7fff859aeff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff859af000 -     0x7fff859b0fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff859b1000 -     0x7fff859b1fff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff859b2000 -     0x7fff859b7fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff859b8000 -     0x7fff859c2fff  libcsfde.dylib (??? - ???) <165F76E5-EE38-3942-82B4-9BCEEF72EB69> /usr/lib/libcsfde.dylib
        0x7fff859c3000 -     0x7fff85aa2fff  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <E982B3FF-4788-3FA2-B9F1-53E44E2EA9BA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff85aa3000 -     0x7fff85d5bfff  com.apple.RawCamera.bundle (4.00 - 658) <789BC5C7-F03A-388C-B540-070FF5574B0C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff85d5c000 -     0x7fff85e39fef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
        0x7fff86b72000 -     0x7fff86bcdff7  com.apple.opencl (2.0.19 - 2.0.19) <B05BF605-73B8-328F-A228-6FA59E1FC73A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff86bce000 -     0x7fff86bd1fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff86c5f000 -     0x7fff86c63fff  libutil.dylib (??? - ???) <28672328-B738-38CE-B231-8A93CA6E6EA4> /usr/lib/libutil.dylib
        0x7fff86c64000 -     0x7fff86d59fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff86dc1000 -     0x7fff86ddbfff  com.apple.CoreMediaAuthoring (2.0 - 891) <C7A92C52-AD9F-3CF1-86D5-C0714118935C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff86ddc000 -     0x7fff86df8fff  com.apple.ScriptingBridge (1.2.1 - ???) <A4162BA5-2432-3BF3-8EBC-47AEF2BDD8DA> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
        0x7fff86df9000 -     0x7fff86dfbfff  com.apple.EFILogin (1.0 - 1) <EA18A476-CB02-3EC6-8B2D-9EA019B2D16E> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff86dfc000 -     0x7fff86e07ff7  com.apple.DisplayServicesFW (2.5.4 - 323.3) <5E7F7A88-9313-3C31-87BD-80F3361DA338> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff86e08000 -     0x7fff87a0efff  com.apple.AppKit (6.7.5 - 1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff87a56000 -     0x7fff87b5bfff  libFontParser.dylib (??? - ???) <D2E56B6E-3182-3667-A78C-4172C435523A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8824d000 -     0x7fff88258ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <D836A22C-BBDC-3C9F-83D3-F8CC0EE75885> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff88281000 -     0x7fff88286fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff88287000 -     0x7fff88295ff7  libkxld.dylib (??? - ???) <01161870-E3B3-3F87-BA4A-0AA7A081F409> /usr/lib/system/libkxld.dylib
        0x7fff882e3000 -     0x7fff88359fff  com.apple.ISSupport (1.9.8 - 56) <2BEEF162-893F-356C-BD4E-8668F044A917> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff8835a000 -     0x7fff883a6ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff883a7000 -     0x7fff883b2ff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff88844000 -     0x7fff88846fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff88847000 -     0x7fff8884bfff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <380C3F44-0CA7-3514-8080-46D1C9DF4FCD> /usr/lib/system/libdyld.dylib
        0x7fff8884c000 -     0x7fff8884dfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
        0x7fff8884e000 -     0x7fff888e1fff  com.apple.PDFKit (2.6.4 - 2.6.4) <4C58283C-3F45-31C6-9896-5EFFFF82D840> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff888e2000 -     0x7fff88944ff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff88999000 -     0x7fff8899afff  libffi.dylib (??? - ???) <DB96CC4B-0D38-3102-80AA-91DDE9AF3886> /usr/lib/libffi.dylib
        0x7fff88a18000 -     0x7fff88a19fff  libwebsharing.dylib (??? - ???) <279415F4-2FAD-3D68-BE9A-691D03389662> /usr/lib/libwebsharing.dylib
        0x7fff88a1a000 -     0x7fff88a9dfef  com.apple.Metadata (10.7.0 - 627.37) <B9BEB598-B6F2-3BFF-A8F3-C3C87CD076AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff88aa2000 -     0x7fff88dbefff  com.apple.CoreServices.CarbonCore (960.25 - 960.25) <4FC1AB30-022C-3C67-AC46-FDCBFCB7EEDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff88ddb000 -     0x7fff88dfffff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff88e00000 -     0x7fff893e4fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff89673000 -     0x7fff89674fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
        0x7fff896b8000 -     0x7fff896e8ff7  com.apple.DictionaryServices (1.2.1 - 158.3) <5E2EBBFD-D520-3379-A431-11DAA844B8D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff896e9000 -     0x7fff89710fff  com.apple.framework.internetaccounts (1.2 - 3) <28D44E21-54F2-366B-B9D9-1DB788EF0278> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff89711000 -     0x7fff89989fff  com.apple.imageKit (2.1.2 - 1.0) <23470050-28FB-3B09-8E27-ADC371B0E4B8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff89acd000 -     0x7fff89adafff  com.apple.CrashReporterSupport (10.7.4 - 353) <6044CFB6-939E-3C73-BFBB-A8BBC096F135> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff89adb000 -     0x7fff89bb9fff  com.apple.DiscRecording (6.0.4 - 6040.4.1) <E6D5835F-EE3C-3814-A2EE-6962B5570EF1> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff89bba000 -     0x7fff89bd6fff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <A1ABA9DB-2C8A-3C96-976A-21E63194F7B2> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff89bd7000 -     0x7fff89be3fff  com.apple.DirectoryService.Framework (10.7 - 146) <65C78AE3-89B8-3372-8359-31FD520781D5> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff89c03000 -     0x7fff89c4ffff  com.apple.GraphKit (1.0.5 - 30) <ADC7963A-FC30-3886-984D-BC3CD4C5A4B7> /System/Library/PrivateFrameworks/GraphKit.framework/Versions/A/GraphKit
        0x7fff89c70000 -     0x7fff89d54e5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
        0x7fff8a0a9000 -     0x7fff8a0bbff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff8a0bc000 -     0x7fff8a0cafff  com.apple.Collaboration (63.2 - 63.2) <B76A62A5-EE5E-3D7F-8F1D-F80E8E78FFD8> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
        0x7fff8a0cb000 -     0x7fff8a0ebfff  libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8a0ec000 -     0x7fff8a0f7ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff8a0f8000 -     0x7fff8a103fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8a104000 -     0x7fff8a160ff7  com.apple.HIServices (1.21 - ???) <B012EE97-D1CD-3F4B-812D-9AC7E6852FE6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8a191000 -     0x7fff8a194fff  libCoreVMClient.dylib (??? - ???) <28CB0F3F-A202-391F-8CAC-FC9A1398A962> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8a195000 -     0x7fff8a1d5fe7  libGLImage.dylib (??? - ???) <0B7DAB2B-F1C6-39C7-B864-61EF683B6656> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8a1d6000 -     0x7fff8a289ff7  com.apple.CoreText (220.22.0 - ???) <A7A1096F-A211-3775-BA33-08FE98D27F08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff8a2d3000 -     0x7fff8a36dff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8a36e000 -     0x7fff8ab16fff  com.apple.CoreAUC (6.16.12 - 6.16.12) <EF535959-14FE-3B61-9C32-DF4C54B8F12D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8ab28000 -     0x7fff8ab2ffff  libGFXShared.dylib (??? - ???) <D3598924-B167-372E-8C9F-1BBF68852542> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8ab30000 -     0x7fff8ab76fff  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <2C442396-1006-3765-92D2-60869D4641CE> /usr/lib/libcurl.4.dylib
        0x7fff8ab8d000 -     0x7fff8ab92fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
        0x7fff8ab93000 -     0x7fff8ab9bfff  libsystem_dnssd.dylib (??? - ???) <584B321E-5159-37CD-B2E7-82E069C70AFB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8ab9c000 -     0x7fff8abc5fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8abc6000 -     0x7fff8ac1afff  libFontRegistry.dylib (??? - ???) <60FF9C2C-5E44-3C49-8A08-F26101898F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8ac1b000 -     0x7fff8ac25ff7  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <8C235D13-2928-30E5-9E12-2CC3D6324AE2> /usr/lib/system/liblaunch.dylib
        0x7fff8ac26000 -     0x7fff8ad33fff  libJP2.dylib (??? - ???) <053950A7-6B92-320E-A6D7-808CE424F1AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8ad34000 -     0x7fff8adfbff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8adfc000 -     0x7fff8ae5cfff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8ae5d000 -     0x7fff8ae85fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8ae86000 -     0x7fff8afbcfff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8afbd000 -     0x7fff8b0a1ff7  com.apple.CoreServices.OSServices (478.49 - 478.49) <E5BF2069-ED1A-31F5-AFC2-4A530BD467AA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8b22d000 -     0x7fff8b22ffff  libCVMSPluginSupport.dylib (??? - ???) <982F1ED4-3CBB-3161-8BEA-8A980C27FCC1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8b230000 -     0x7fff8b230fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8b231000 -     0x7fff8b232ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff8b242000 -     0x7fff8b27cfe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8b27d000 -     0x7fff8b2aafe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
        0x7fff8b2ab000 -     0x7fff8b2acfff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8b49d000 -     0x7fff8b4f0fff  com.apple.AppleVAFramework (5.0.16 - 5.0.16) <6F9A4BCE-8B99-3144-BCF7-B4299B27F6E9> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8b4f1000 -     0x7fff8b71bfe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8b71c000 -     0x7fff8b71cfff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8b71d000 -     0x7fff8b723fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
        0x7fff8b724000 -     0x7fff8b724fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8b725000 -     0x7fff8ba1aff7  com.apple.security (7.0 - 55148.6) <4535E500-973A-3BA7-AF65-DF5CF0658F02> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8ba1b000 -     0x7fff8ba32fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8ba33000 -     0x7fff8ba40ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
        0x7fff8ba41000 -     0x7fff8ba4aff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff8ba4b000 -     0x7fff8ba52fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8ba53000 -     0x7fff8ba94fff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8ba95000 -     0x7fff8bec8ff7  com.apple.VideoToolbox (1.0 - 705.94) <72AD524C-0616-3C69-BA1F-8D444F97F5A2> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff8bec9000 -     0x7fff8bed8fff  com.apple.opengl (1.8.1 - 1.8.1) <51B34133-CEE3-3FC6-82AC-ADF567AE673C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8c046000 -     0x7fff8c0e7fff  com.apple.LaunchServices (480.40 - 480.40) <C936A07F-0CF8-3F8E-BDB3-76AA7611B4CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8c0ec000 -     0x7fff8c0f1fff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8c0f2000 -     0x7fff8c104ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff8c10e000 -     0x7fff8c13efff  com.apple.framework.Admin (11.0 - 11.0) <66A06B83-01D1-371E-8A77-4280570BB97D> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff8c13f000 -     0x7fff8c240fff  com.apple.QuickLookUIFramework (3.2 - 500.18) <56A13D40-9A61-3B98-85ED-B1C7075A88FB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8c241000 -     0x7fff8c241fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8c242000 -     0x7fff8c242fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8c243000 -     0x7fff8c27cfe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
        0x7fff8c27d000 -     0x7fff8c27efff  com.apple.ServerInformation (1.0 - 1) <D95BC225-E33B-32BC-9FEE-77423F8D7EBC> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff8c27f000 -     0x7fff8c598fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8c599000 -     0x7fff8c5ccff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8c5cd000 -     0x7fff8c648ff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8c649000 -     0x7fff8c6dfff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8c6e0000 -     0x7fff8c6fdfff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
        0x7fff8c6fe000 -     0x7fff8c702fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <35D606B1-7AD9-38E3-A2A9-E92B904BDDE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8c706000 -     0x7fff8c808fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
        0x7fff8c81e000 -     0x7fff8c88efff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8c88f000 -     0x7fff8c921ff7  com.apple.CorePDF (3.1 - 3.1) <F81F99A9-7FF6-3A6A-92C7-78C76BA35777> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8c922000 -     0x7fff8c94eff7  com.apple.CoreServicesInternal (113.19 - 113.19) <74532B3B-EDE0-3553-9BED-F02B9CDF1FF7> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8c94f000 -     0x7fff8caacfff  com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) <5F1E4695-BC74-3ADD-8345-627BCD68201A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8cd1a000 -     0x7fff8cd1afff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8cdaa000 -     0x7fff8d0ccfff  com.apple.JavaScriptCore (7534.57 - 7534.57.3) <3A04B8FC-CFA6-3AEB-8FDF-B0525B5A4C82> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8d0cd000 -     0x7fff8d11eff7  com.apple.CoreMediaIO (216.0 - 3199.8) <4D3FE512-E943-34E3-A7A5-2EC2E3854E28> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8d13c000 -     0x7fff8d13ffff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8d140000 -     0x7fff8d194ff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8d19b000 -     0x7fff8d19dff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8d19e000 -     0x7fff8d305fff  com.apple.CFNetwork (520.5.1 - 520.5.1) <08F70E26-5456-3BFB-8192-00D3CE40D3C9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff8d306000 -     0x7fff8d315ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff8d316000 -     0x7fff8d381ff7  com.apple.framework.IOKit (2.0 - ???) <FE838BB6-D42E-3291-A1A0-6F53FC970261> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8d5ca000 -     0x7fff8d632ff7  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <9987DC46-2A96-3BA0-B88B-04E573C0AD9B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8d633000 -     0x7fff8d639ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff8d63a000 -     0x7fff8d737ff7  com.apple.avfoundation (2.0 - 180.50) <A2EAE4E6-4DBA-3AAB-A387-7E72B93B6DA9> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8d738000 -     0x7fff8d73efff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8d8bc000 -     0x7fff8da47ff7  com.apple.QTKit (7.7.1 - 2339) <2BC2CF44-CEAF-3D3B-A250-CA59D6AFB0B0> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8da48000 -     0x7fff8daedfff  com.apple.ink.framework (10.7.5 - 113) <1AE6676D-490A-36C2-B6CC-00F93AEB31DE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8daee000 -     0x7fff8db0bff7  com.apple.openscripting (1.3.3 - ???) <F5E34F54-CE85-334B-8F25-53581D43960C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8db0c000 -     0x7fff8db82ff7  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <A24FC3DA-4FFA-3DD2-9DCC-2B8D1B3BF97C> /usr/lib/libc++.1.dylib
        0x7fff8dbbf000 -     0x7fff8dbd1ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff8dc75000 -     0x7fff8dc7aff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff8dc7b000 -     0x7fff8dc7bfff  com.apple.quartzframework (1.5 - 1.5) <2C13AE76-C86B-3D48-A583-121689190F74> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8dc7c000 -     0x7fff8dcb1fff  com.apple.securityinterface (5.0 - 55022.6) <4D6DAF8F-7873-3992-A6D6-478C7664FA39> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8dcb2000 -     0x7fff8dcb5ff7  com.apple.securityhi (4.0 - 1) <7146CB8E-B754-3B0E-A74E-77E9138A81C5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8dcb6000 -     0x7fff8dd13ff7  com.apple.QuickLookFramework (3.2 - 500.18) <C36371BF-E1F6-3DF7-83EA-CE96FCDCE4C4> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8dd53000 -     0x7fff8dd93ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <7D2E5016-A960-3ADE-B042-F74063E79550> /usr/lib/libcups.2.dylib
        0x7fff8dd94000 -     0x7fff8deadfff  com.apple.DesktopServices (1.6.5 - 1.6.5) <5E7DD5F4-B4DA-3F75-A14A-3494E81CFBA0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8deb2000 -     0x7fff8e123fff  com.apple.QuartzComposer (5.0 - 236.10) <F8560AEC-4E26-3A43-BE0A-B20FCB5B2E7D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8e124000 -     0x7fff8e13afff  libGL.dylib (??? - ???) <A4876AE9-DDFE-3B9A-874E-09BC29D46C39> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8e13b000 -     0x7fff8e1c0ff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8e546000 -     0x7fff8e5a1fff  com.apple.ImageCaptureCore (3.1.0 - 3.1.0) <9F7C4D81-5CC7-3D66-AC66-81EA9A5EAB94> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8e5a2000 -     0x7fff8e615fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff8e616000 -     0x7fff8e818fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <0176782F-9526-3905-813A-7A5676EC2C86> /usr/lib/libicucore.A.dylib
        0x7fff8e819000 -     0x7fff8e83ffff  com.apple.framework.familycontrols (3.0 - 300) <6F0C58C0-22E7-3877-8CFA-1ED0CB3CE38B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8e8a8000 -     0x7fff8e8abfff  com.apple.AppleSystemInfo (1.0 - 1) <111B6F69-3FBD-3860-BCF8-1DF02D9BED28> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8e8ac000 -     0x7fff8e8f5ff7  com.apple.framework.CoreWLAN (2.1.3 - 213.1) <D2101093-0B35-3B90-B511-E9272400ED9B> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8e8f7000 -     0x7fff8ec23fff  com.apple.HIToolbox (1.9 - ???) <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8ec24000 -     0x7fff8ed2bfe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff8ed2c000 -     0x7fff8ed2dfff  libodfde.dylib (??? - ???) <9725455E-BA0B-3371-8570-CFE50D3BDA84> /usr/lib/libodfde.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 3536
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=194.2M resident=89.5M(46%) swapped_out_or_unallocated=104.7M(54%)
    Writable regions: Total=16.1G written=167.8M(1%) resident=189.2M(1%) swapped_out=0K(0%) unallocated=15.9G(99%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                  2372K
    CG image                             16K
    CG raster data                      280K
    CG shared images                   3448K
    CoreImage                            24K
    CoreServices                       1896K
    MALLOC                            603.1M
    MALLOC (reserved)                  15.5G        reserved VM address space (unallocated)
    MALLOC guard page                    64K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=251                       72K
    OpenCL                               20K
    STACK GUARD                        56.0M

    Rempleseed,
    Is it an option to go back to an earlier time/state of the computer, obviously, after securing any files that may disappear (if you have them on your main harddisk)?

  • Sharing an iTunes Library across multiple user account and a network.

    Sharing an iTunes Music Library across multiple user accounts.
    Hello Everybody!
    Firstly, this was designed to be run in Mac OS X 10.4 Tiger. It will not work with earlier versions of Mac OS X! Sorry.
    Here's a handy tip for keeping your hard drive neat and tidy, it also saves space, what in effect will be done is an iTunes music library will be shared amongst multiple users on the same machine. There are advantages and disadvantages to using this method.
    • Firstly I think it might be worthwhile to state the advantages and disadvantages to using this approach.
    The advantages include:
    - Space will be saved, as no duplicate files will occur.
    - The administrator will be able to have complete control over the content of the iTunes library, this may be useful for restricting the content of the Library; particularly for example if computer is being used at and education institution, business or any other sort of institution where things such as explicit content would be less favorable.
    - The machine will not be slowed by the fact that every user has lots of files.
    The disadvantages to this system include.
    - The fact that the account storing the music will have to be logged in, and iTunes will have to be active in that account.
    - If the account housing the music is not active then nobody can use the iTunes library.
    - There is a certain degree of risk present when an administrator account must be continually active.
    - Fast User Switching must be enabled.
    Overview:
    A central account controls all music on the machine/network, this is achieved by storing iTunes files in a public location as opposed to in the user's directory. In effect the system will give all users across the machine/network access to the same music/files without the possibility of files 'doubling up' because two different users like the same types of music. This approach saves valuable disk space in this regard and may therefore prove to be useful in some situations.
    This is a hearty process to undertake, so only follow this tutorial if you're willing to go all the way to the end of it.
    Process:
    Step 1:
    Firstly, we need to organize the host library, I tidied mine up, removing excess playlists, random files, things like that. this will make thing a bit easier in the later stages of this process.
    Once the library is tidied up, move the entire "iTunes" folder from your Home directory to the "//localhost" directory (The Macintosh HD) and ensure that files are on the same level as the "Applications", "Users", "Library" and "System" directories; this will ensure that the files in the library are available to all users on the machine (this also works for networks)
    Optionally you can set the ownership of the folder to the 'administrator' account (the user who will be hosting the library.), you may also like to set the permissions of 'you can' to "Read & Write" (assuming that you are doing this through the user who will host the library); secondly you should set the "Owner" to the administrator who will be hosting the library and set their "access" to "Read & Write" (this will ensure that the administrator has full access to the folder). The final part of this step involves setting access for the "Others" tab to "Read Only" this will ensure that the other users can view but not modify the contents on the folder.
    Overview:
    So far we have done the following steps:
    1. Organized the host library.
    2. Placed the iTunes directory into a 'public' directory so that other users may use it. (this step is essential if you plan on sharing the library across multiple accounts on the same machine. NOTE: this step is only necessary if you are wanting to share you library across multiple accounts on the same machine, if you simply want to share the music across a network, use the iTunes sharing facility.
    3. set ownership and permissions for the iTunes music folder.
    Step 2:
    Currently the administrator is the only user who can use this library, however we will address this soon. In this step we will enable iTunes music sharing in the administrator's account, this will enable other users to access the files in the library.
    If you are not logged in as the administrator, do so; secondly, open iTunes and select "Preferences" from the "iTunes" menu, now click the "Sharing" tab, if "share my library on my local network" is not checked, the radio buttons below this will now become active, you may choose to share the entire libraries contents, or share only selected content.
    Sharing only selected content may be useful if their is explicit content in the library and minors use the network or machine that the library is connected to.
    If you have selected "share entire library" go to Step 3, if you have selected share "share selected playlists" read on.
    After clicking "share selected playlists" you must then select the playlists that you intend to share across your accounts and network. Once you have finished selecting the playlists, click "OK" to save the settings.
    Overview:
    In this step we:
    1. Enabled iTunes sharing in the administrator's account, now, users on the local network may access the iTunes library, however, users on the same machine may not.
    Step 3:
    Now we will enable users on the same machine to access the library on the machine. This is achieved by logging in as each user, opening iTunes, opening iTunes preferences, and clicking "look for shared music". now all users on the machine may also access the library that the administrator controls.
    This in effect will mean that the user will not need to use their user library, it will be provided to them via a pseudo network connection.
    As a secondary measure, I have chosen to write a generic login script that will move any content from the user's "Music/iTunes/iTunes Music" directory to the trash and then empties the user's trash.
    This is done through the use of an Automator Application: this application does the following actions.
    1. Uses the "Finder" action "Get Specified Finder Items"
    1a. The user's "~/Music/iTunes/iTunes Music" folder
    2. Uses the "Finder" action "Get Folder Contents"
    3. Uses the "Finder" action "Move to Trash"
    4. Uses the "Automator" action "Run AppleScript"
    4a. with the following:
    on run {input, parameters}
    tell application "Finder"
    empty trash
    end tell
    return input
    end run
    IMPORTANT: Once the script is adapted to the user account it must be set as a login item. in order to keep the script out of the way i have placed it in the user's "Library" directory, in "Application Support" under "iTunes".
    Overview:
    Here we:
    1. Enabled iTunes sharing in the user accounts on the host machine, in effect allowing all users of the machine to view a single iTunes library.
    2. (Optional) I have created a login application that will remove any content that has been added to user iTunes libraries, this in effect stops other users of the machine from adding music and files to iTunes.
    Step 4:
    If it is not already enabled, open system preferences and enable Fast User Switching in Accounts Options.
    Summary:
    We have shared a single iTunes library across multiple user account, while still allowing for network sharing. This method is designed to save space on machines, particularly those with smaller hard drives.
    I hope that this hint proves to be helpful and I hope everybody will give me feedback on my process.
    regards,
    Pete.
    iBook G4; 60GB Hard Drive, 512MB RAM, Airport Extreme   Mac OS X (10.4.6)   iWork & iLife '06, Adobe CS2, Final Cut Pro. Anything and Everything!!!

    how to share music between different accounts on a single computer

  • How Can I Login To Multiple User Accounts Simultaneously

    I am using an Intel iMac (2GHz Intel Core 2 Duo) with 1GB of memory and 10.4.11. I have Fast User Switching enabled. I restart the Mac every morning. Then I login to a second user account. While at work, I access these accounts via VNC.
    Sometimes I forget to login to the second user account. I do it from work via VNC, which sometimes causes complications.
    Does OSX support simultaneous multiple user account login? If not, is there a work-around solution such as an AppleScript? This would provide a time savings to me, as well as a convenience if I forgot to login to the second user account before leaving home.
    Thank you.
    Kurt R. Todoroff

    Seems to me, in another discussion, the simple Fast User Switching does not
    do much really fast or automatically; there are a few faster steps than having
    to log into each and every account change (even when FUS is enabled) so
    this later development sounds a little more automatic, esp over a distance.
    Is there a third party app or valid script that an do the multiple logins automatic
    after the first-run; so passwords need not be re-entered, and the screen can just
    switch over "fast" to another open account window, ready to go to work in there?
    {And not just a keyboard shortcut to save a few little steps, overall.}
    Whichever way the road turns...
    Good luck & happy computing!
    {edited}

  • Slow going from Login to full loading of desktop in main user account

    Lately my beloved Macbook Pro has developed a problem in the main user account. It is taking too long to load the desktop & menu bar after Login. I don't know quite how to approach troubleshooting this, because my alternate user loads fine. I am going to post a full Console dump in the hope that somebody can see what my Mac is wrestling with:
    1/3/09 12:21:44 AM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/AVCAssistant.plist
    1/3/09 12:21:44 AM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    1/3/09 12:21:44 AM com.apple.launchd[1] (com.adobe.versioncueCS3) Unknown key: ServiceDescription
    1/3/09 12:21:44 AM com.apple.launchd[1] (com.apple.blued) Unknown key for boolean: EnableTransactions
    1/3/09 12:21:44 AM com.apple.launchd[1] (com.apple.mio.AVCAssistant) Conflict with job: 0x100760.AVCAssistant over Mach service: com.apple.mio.AVCAssistant
    1/3/09 12:21:44 AM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    1/3/09 12:21:44 AM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    1/3/09 12:21:54 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 5 seconds
    1/3/09 12:25:04 AM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[82]) Exited: Terminated
    1/3/09 12:25:04 AM com.apple.launchd[1] ([0x0-0x4004].com.wacom.TabletDriver[89]) Exited: Terminated
    1/3/09 12:25:04 AM com.apple.launchd[1] (com.wacom.wacomtablet[81]) Exited with exit code: 255
    1/3/09 12:25:04 AM com.apple.launchctl.Aqua[118] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    1/3/09 12:25:04 AM com.apple.launchctl.Aqua[118] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/RemoteUI.plist
    1/3/09 12:25:05 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 10 seconds
    1/3/09 12:25:06 AM com.apple.FolderActions.enabled[119] launchctl: Error unloading: com.apple.FolderActions.folders
    1/3/09 12:25:13 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/3/09 12:25:13 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/3/09 12:25:13 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/3/09 12:25:13 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/3/09 12:25:13 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/3/09 12:25:13 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/3/09 12:25:23 AM Finder[135] [QL ERROR] Generator database update takes too long... we will use what we currently have
    1/3/09 12:25:25 AM SystemUIServer[134]
    MenuCracker
    see http://sourceforge.net/projects/menucracker
    MenuCracker is now loaded. Ready to accept new menus. Ignore the failure message that follow.
    1/3/09 12:25:26 AM [0x0-0x16016].com.kensington.mouseworks.background[161] Kensington FastUserSwitch: Session On Console
    1/3/09 12:25:26 AM [0x0-0x16016].com.kensington.mouseworks.background[161] Kensington FastUserSwitch: Session User ID = 501
    1/3/09 12:25:26 AM [0x0-0x16016].com.kensington.mouseworks.background[161] Kensington FastUserSwitch: Installing User Switch Notifications
    1/3/09 12:25:34 AM SystemUIServer[134] failed to load Menu Extra: NSBundle </Users/garyp/Library/PreferencePanes/MenuMeters.prefPane/Contents/Resources/Me nuCracker.menu> (loaded)
    1/3/09 12:25:34 AM com.apple.launchd[116] (0x101040.VersionCueCS3monitor) Failed to check-in!
    1/3/09 12:25:38 AM SystemUIServer[134] MenuCracker: Loading 'MenuMeterCPUExtra'.
    1/3/09 12:25:40 AM SystemUIServer[134] MenuMeterCPU loaded.
    1/3/09 12:25:41 AM SystemUIServer[134] MenuCracker: Loading 'SSMenuExtra'.
    1/3/09 12:25:43 AM FontAgent Activator[163] file /InsiderBuild/4.0.3/FAPro/Activation/Daemon/FASDatabaseIndexing.m line 83 caught NSInvalidArgumentException because * -[NSCFDictionary setObject:forKey:]: attempt to insert nil key
    1/3/09 12:25:45 AM SystemUIServer[134] MenuCracker: Loading 'MenuMeterMemExtra'.
    1/3/09 12:25:46 AM SystemUIServer[134] MenuMeterMem loaded.
    1/3/09 12:25:46 AM SystemUIServer[134] MenuCracker: Loading 'MenuMeterNetExtra'.
    1/3/09 12:25:47 AM SystemUIServer[134] MenuMeterNet loaded.
    1/3/09 12:25:54 AM [0x0-0x1f01f].com.apple.systemevents[176] com.apple.FolderActions.enabled: Already loaded
    1/3/09 12:25:55 AM [0x0-0x1d01d].com.charcoaldesign.magical[169] MBS Debug: MakeCFURLfromFolderItem
    1/3/09 12:25:55 AM [0x0-0x1d01d].com.charcoaldesign.magical[169] MBS Debug: REALFSRefFromFolderItem for ref
    1/3/09 12:25:55 AM [0x0-0x1d01d].com.charcoaldesign.magical[169] MBS Debug: REALFSRefFromFolderItem got ref
    1/3/09 12:25:55 AM com.apple.launchd[116] ([0x0-0x11011].com.apple.systemuiserver[134]) Exited: Terminated
    1/3/09 12:25:56 AM SystemUIServer[180]
    MenuCracker
    see http://sourceforge.net/projects/menucracker
    MenuCracker is now loaded. Ready to accept new menus. Ignore the failure message that follow.
    1/3/09 12:25:56 AM SystemUIServer[180] failed to load Menu Extra: NSBundle </Users/garyp/Library/PreferencePanes/MenuMeters.prefPane/Contents/Resources/Me nuCracker.menu> (loaded)
    1/3/09 12:25:57 AM SystemUIServer[180] MenuCracker: Loading 'MenuMeterCPUExtra'.
    1/3/09 12:25:57 AM SystemUIServer[180] MenuMeterCPU loaded.
    1/3/09 12:25:57 AM SystemUIServer[180] MenuCracker: Loading 'SSMenuExtra'.
    1/3/09 12:25:57 AM SystemUIServer[180] MenuCracker: Loading 'MenuMeterMemExtra'.
    1/3/09 12:25:57 AM SystemUIServer[180] MenuMeterMem loaded.
    1/3/09 12:25:57 AM SystemUIServer[180] MenuCracker: Loading 'MenuMeterNetExtra'.
    1/3/09 12:25:57 AM SystemUIServer[180] MenuMeterNet loaded.
    1/3/09 12:26:03 AM com.apple.Safari[187] YES
    1/3/09 12:27:30 AM com.apple.launchd[116] (0x10c890.Locum[279]) Exited: Terminated
    1/3/09 12:27:40 AM com.apple.launchd[116] (0x10c820.Locum[280]) Exited: Terminated
    1/3/09 12:29:12 AM com.apple.launchd[116] (0x10c680.Locum[359]) Exited: Terminated
    1/3/09 12:29:53 AM com.apple.launchd[116] (0x10c680.Locum[363]) Exited: Terminated
    1/3/09 12:31:38 AM com.apple.launchd[116] (0x10c6f0.Locum[365]) Exited: Terminated
    1/3/09 12:32:09 AM Mail[369] Trying to add a To Do UID (36BB6114-79B5-11D7-A41D-00050257BC9E) that already exists in the cache and for the same mailbox. Perhaps this should have been an update. Skipping to avoid cyclic reconciliation.
    1/3/09 12:32:20 AM com.apple.Safari[373] YES
    1/3/09 12:33:11 AM [0x0-0x29029].com.apple.Safari[370] Debugger() was called!
    1/3/09 12:41:12 AM com.apple.Safari[384] YES
    1/3/09 12:56:21 AM com.apple.Safari[411] YES
    1/3/09 12:57:48 AM [0x0-0x31031].com.apple.systemevents[424] com.apple.FolderActions.enabled: Already loaded
    1/3/09 12:57:51 AM com.apple.KernelEventAgent[24] KernelEventAgent: sysctl_queryfs: No such file or directory
    1/3/09 12:57:51 AM com.apple.loginwindow[23] Sat Jan 3 00:57:51 Macintosh.local loginwindow[23] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    1/3/09 12:57:51 AM com.wacom.wacomtablet[120] Sat Jan 3 00:57:51 Macintosh.local WacomTabletDriver[120] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    1/3/09 12:57:51 AM com.wacom.wacomtablet[120] Sat Jan 3 00:57:51 Macintosh.local WacomTabletDriver[120] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    1/3/09 12:57:51 AM [0x0-0x31031].com.apple.systemevents[424] Sat Jan 3 00:57:51 Macintosh.local System Events[424] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    1/3/09 12:57:51 AM [0x0-0x31031].com.apple.systemevents[424] Sat Jan 3 00:57:51 Macintosh.local System Events[424] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    1/3/09 12:57:51 AM WacomTabletDriver[120] HIToolbox: received notification of WindowServer event port death.
    1/3/09 12:57:51 AM com.apple.loginwindow[23] Sat Jan 3 00:57:51 Macintosh.local loginwindow[23] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    1/3/09 12:57:51 AM SyncServer[404] Handling SIGTERM in kqueue callback from runloop
    1/3/09 12:57:51 AM com.apple.launchd[116] (com.apple.pboard[129]) Exited: Terminated
    1/3/09 12:57:51 AM com.apple.launchd[116] ([0x0-0x31031].com.apple.systemevents[424]) Exited: Terminated
    1/3/09 12:57:51 AM com.apple.launchd[116] (com.apple.AOSNotification[175]) Exited: Terminated
    1/3/09 12:57:51 AM com.apple.launchd[116] (com.apple.UserEventAgent-Aqua[126]) Exited: Terminated
    1/3/09 12:58:11 AM com.apple.launchd[116] (com.wacom.wacomtablet[120]) Exit timeout elapsed (20 seconds). Killing.
    1/3/09 12:58:11 AM com.apple.launchd[116] (com.wacom.wacomtablet[120]) Exited: Killed
    1/3/09 12:58:11 AM com.apple.launchd[1] ([0x0-0x38038].com.wacom.TabletDriver[457]) Exited: Terminated
    1/3/09 12:58:11 AM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[456]) Exited: Terminated
    1/3/09 12:58:11 AM com.apple.launchd[1] (com.wacom.wacomtablet[455]) Exited with exit code: 255
    1/3/09 12:58:11 AM com.apple.launchctl.Aqua[463] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    1/3/09 12:58:11 AM com.apple.launchctl.Aqua[463] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/RemoteUI.plist
    1/3/09 12:58:12 AM com.apple.FolderActions.enabled[464] launchctl: Error unloading: com.apple.FolderActions.folders
    1/3/09 12:58:14 AM SystemUIServer[478]
    MenuCracker
    see http://sourceforge.net/projects/menucracker
    MenuCracker is now loaded. Ready to accept new menus. Ignore the failure message that follow.
    1/3/09 12:58:17 AM SystemUIServer[478] failed to load Menu Extra: NSBundle </Users/garyp/Library/PreferencePanes/MenuMeters.prefPane/Contents/Resources/Me nuCracker.menu> (loaded)
    1/3/09 12:58:17 AM SystemUIServer[478] MenuCracker: Loading 'MenuMeterCPUExtra'.
    1/3/09 12:58:18 AM [0x0-0x44044].com.kensington.mouseworks.background[495] Kensington FastUserSwitch: Session On Console
    1/3/09 12:58:18 AM [0x0-0x44044].com.kensington.mouseworks.background[495] Kensington FastUserSwitch: Session User ID = 501
    1/3/09 12:58:18 AM [0x0-0x44044].com.kensington.mouseworks.background[495] Kensington FastUserSwitch: Installing User Switch Notifications
    1/3/09 12:58:18 AM SystemUIServer[478] MenuMeterCPU loaded.
    1/3/09 12:58:18 AM FontAgent Activator[496] file /InsiderBuild/4.0.3/FAPro/Activation/Daemon/FASDatabaseIndexing.m line 83 caught NSInvalidArgumentException because * -[NSCFDictionary setObject:forKey:]: attempt to insert nil key
    1/3/09 12:58:20 AM SystemUIServer[478] MenuCracker: Loading 'SSMenuExtra'.
    1/3/09 12:58:20 AM com.apple.launchd[116] (0x104830.VersionCueCS3monitor) Failed to check-in!
    1/3/09 12:58:20 AM SystemUIServer[478] MenuCracker: Loading 'MenuMeterMemExtra'.
    1/3/09 12:58:20 AM SystemUIServer[478] MenuMeterMem loaded.
    1/3/09 12:58:21 AM SystemUIServer[478] MenuCracker: Loading 'MenuMeterNetExtra'.
    1/3/09 12:58:21 AM SystemUIServer[478] MenuMeterNet loaded.
    1/3/09 12:58:21 AM [0x0-0x4d04d].com.apple.systemevents[508] com.apple.FolderActions.enabled: Already loaded
    1/3/09 1:11:32 AM com.apple.Safari[532] YES
    1/3/09 1:21:44 AM com.apple.launchd[1] (com.18james.anacron[536]) Stray process with PGID equal to this dead job: PID 539 PPID 1 anacron
    1/3/09 10:25:07 AM dotmacsyncclient[647] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:8FBE376E-33BE-4CDA-B31E-10D8B1909714, auto-retries=2, manual-retries=0
    1/3/09 10:25:23 AM com.apple.Safari[657] YES
    1/3/09 10:25:26 AM Mail[656] Trying to add a To Do UID (36BB6114-79B5-11D7-A41D-00050257BC9E) that already exists in the cache and for the same mailbox. Perhaps this should have been an update. Skipping to avoid cyclic reconciliation.
    1/3/09 10:26:35 AM Mail[656] GET /Library/Application Support/Mail/Alias.xml (FAILED), httpStatusCode:402, errorType:100, transactionState:5, txnId:258C47B4-3D1D-4F2D-92C3-9730C55FD124, auto-retries=0, manual-retries=0
    1/3/09 10:34:53 AM com.apple.Safari[701] YES
    1/3/09 10:34:57 AM dotmacsyncclient[703] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:78A8C5DA-42BA-4E31-8306-BB30C0AF525E, auto-retries=2, manual-retries=0
    1/3/09 10:34:57 AM com.apple.AOSNotification[513] 2009-01-03 10:34:57.681 dotmacsyncclient[703:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:78A8C5DA-42BA-4E31-8306-BB30C0AF525E, auto-retries=2, manual-retries=0
    1/3/09 10:40:24 AM com.apple.Safari[714] YES
    1/3/09 10:56:02 AM com.apple.Safari[731] YES
    1/3/09 10:56:13 AM dotmacsyncclient[724] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:EC6B45DF-DFB9-4D99-AFE6-5F301B625FC5, auto-retries=2, manual-retries=0
    1/3/09 10:57:07 AM dotmacsyncclient[733] POST /marketeer (FAILED), httpStatusCode:401, errorType:101 (domain=Error domain 4, code=-4), transactionState:5, txnId:BEB7EBC2-CFF4-4C7C-8687-CBAFED4C9A28, auto-retries=2, manual-retries=0
    1/3/09 10:57:07 AM com.apple.AOSNotification[513] 2009-01-03 10:57:07.464 dotmacsyncclient[733:10b] POST /marketeer (FAILED), httpStatusCode:401, errorType:101 (domain=Error domain 4, code=-4), transactionState:5, txnId:BEB7EBC2-CFF4-4C7C-8687-CBAFED4C9A28, auto-retries=2, manual-retries=0
    1/3/09 10:58:09 AM Smultron[737] Error loading /Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL: dlopen(/Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL, 265): no suitable image found. Did find:
    /Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL: GC capability mismatch
    1/3/09 10:58:09 AM Smultron[737] Error loading /Library/InputManagers/PicLens/PicLens.bundle/Contents/MacOS/PicLens: dlopen(/Library/InputManagers/PicLens/PicLens.bundle/Contents/MacOS/PicLens, 265): no suitable image found. Did find:
    /Library/InputManagers/PicLens/PicLens.bundle/Contents/MacOS/PicLens: GC capability mismatch
    1/3/09 11:11:43 AM com.apple.Safari[781] YES
    1/3/09 11:12:23 AM dotmacsyncclient[782] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:CA26F4BE-11A0-467F-BC0A-CF8D2CA66B8C, auto-retries=2, manual-retries=0
    1/3/09 11:12:23 AM com.apple.AOSNotification[513] 2009-01-03 11:12:23.180 dotmacsyncclient[782:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:CA26F4BE-11A0-467F-BC0A-CF8D2CA66B8C, auto-retries=2, manual-retries=0
    1/3/09 11:26:34 AM dotmacsyncclient[826] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:583139A4-0574-4254-880A-610F987EEC41, auto-retries=2, manual-retries=0
    1/3/09 11:26:53 AM com.apple.Safari[834] YES
    1/3/09 11:26:58 AM DashboardClient[835] (com.apple.widget.CSSCheatSheet) file:///Users/garyp/Library/Widgets/CSS%20Cheat%20Sheet.wdgt/index.html: Can't find variable: loaded (line: 13)
    1/3/09 11:26:58 AM [0x0-0x3e03e].com.apple.dock[473] 2009-01-03 11:26:58.475 DashboardClient[835:10b] (com.apple.widget.CSSCheatSheet) file:///Users/garyp/Library/Widgets/CSS%20Cheat%20Sheet.wdgt/index.html: Can't find variable: loaded (line: 13)
    1/3/09 11:26:59 AM DashboardClient[835] (com.apple.widget.zipcoder) file:///Users/garyp/Library/Widgets/ZipCoder2.0.wdgt/Scripts/Scroller.js: Null value (line: 83)
    1/3/09 11:26:59 AM [0x0-0x3e03e].com.apple.dock[473] 2009-01-03 11:26:59.938 DashboardClient[835:10b] (com.apple.widget.zipcoder) file:///Users/garyp/Library/Widgets/ZipCoder2.0.wdgt/Scripts/Scroller.js: Null value (line: 83)
    1/3/09 11:27:00 AM DashboardClient[835] com.kamalaboulhosn.radarinmotion2: illegal type passed to setPreferenceForKey: undefined
    1/3/09 11:27:00 AM DashboardClient[835] com.kamalaboulhosn.radarinmotion2: illegal type passed to setPreferenceForKey: undefined
    1/3/09 11:27:00 AM [0x0-0x3e03e].com.apple.dock[473] 2009-01-03 11:27:00.230 DashboardClient[835:10b] com.kamalaboulhosn.radarinmotion2: illegal type passed to setPreferenceForKey: undefined
    1/3/09 11:27:00 AM [0x0-0x3e03e].com.apple.dock[473] 2009-01-03 11:27:00.231 DashboardClient[835:10b] com.kamalaboulhosn.radarinmotion2: illegal type passed to setPreferenceForKey: undefined
    1/3/09 11:29:24 AM [0x0-0x57057].com.apple.Safari[700] Debugger() was called!
    1/3/09 11:42:01 AM com.apple.Safari[895] YES
    1/3/09 11:57:18 AM com.apple.Safari[916] YES
    1/3/09 11:57:34 AM dotmacsyncclient[908] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:90C93484-D763-4FEE-9621-31F6944AA8A3, auto-retries=2, manual-retries=0
    1/3/09 12:13:01 PM com.apple.Safari[941] YES
    1/3/09 12:19:29 PM DashboardClient[836] (com.iSlayer.iStatpro4.widget) file:///Users/garyp/Library/Widgets/iStat%20pro.wdgt/scripts/core.js: TypeError: Value undefined (result of expression this.isSectionEnabled) is not object. (line: 528)
    1/3/09 12:19:29 PM [0x0-0x3e03e].com.apple.dock[473] 2009-01-03 12:19:29.737 DashboardClient[836:10b] (com.iSlayer.iStatpro4.widget) file:///Users/garyp/Library/Widgets/iStat%20pro.wdgt/scripts/core.js: TypeError: Value undefined (result of expression this.isSectionEnabled) is not object. (line: 528)
    1/3/09 12:19:49 PM com.apple.launchd[116] (0x10db30.Locum[959]) Exited: Terminated
    1/3/09 12:21:12 PM com.apple.launchd[116] (0x10db30.Locum[962]) Exited: Terminated
    1/3/09 12:26:57 PM com.apple.launchd[116] ([0x0-0x3e03e].com.apple.dock[473]) Stray process with PGID equal to this dead job: PID 836 PPID 1 DashboardClient
    1/3/09 12:26:57 PM com.apple.launchd[116] ([0x0-0x3e03e].com.apple.dock[473]) Stray process with PGID equal to this dead job: PID 835 PPID 1 DashboardClient
    1/3/09 12:26:58 PM [0x0-0x3e03e].com.apple.dock [836] line 528: TypeError: Value undefined (result of expression this.isSectionEnabled) is not object.
    1/3/09 12:26:58 PM [0x0-0x3e03e].com.apple.dock (event handler):Can't find variable: loaded
    1/3/09 12:26:58 PM [0x0-0x3e03e].com.apple.dock (event handler):Null value
    1/3/09 12:26:59 PM [0x0-0x71071].com.apple.systemevents[975] com.apple.FolderActions.enabled: Already loaded
    1/3/09 12:27:02 PM com.apple.loginwindow[433] Sat Jan 3 12:27:02 Macintosh.local loginwindow[433] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    1/3/09 12:27:02 PM com.wacom.wacomtablet[465] Sat Jan 3 12:27:02 Macintosh.local WacomTabletDriver[465] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    1/3/09 12:27:02 PM com.wacom.wacomtablet[465] Sat Jan 3 12:27:02 Macintosh.local WacomTabletDriver[465] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    1/3/09 12:27:02 PM [0x0-0x71071].com.apple.systemevents[975] Sat Jan 3 12:27:02 Macintosh.local System Events[975] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    1/3/09 12:27:02 PM [0x0-0x71071].com.apple.systemevents[975] Sat Jan 3 12:27:02 Macintosh.local System Events[975] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    1/3/09 12:27:02 PM WacomTabletDriver[465] HIToolbox: received notification of WindowServer event port death.
    1/3/09 12:27:02 PM WacomTabletDriver[465] port matched the WindowServer port created in BindCGSToRunLoop
    1/3/09 12:27:02 PM com.apple.loginwindow[433] Sat Jan 3 12:27:02 Macintosh.local loginwindow[433] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    1/3/09 12:27:02 PM com.apple.launchd[116] (com.apple.AOSNotification[513]) Exited: Terminated
    1/3/09 12:27:02 PM com.apple.launchd[116] ([0x0-0x50050].com.apple.AppleSpell[522]) Exited: Terminated
    1/3/09 12:27:02 PM com.apple.launchd[116] (com.apple.pboard[475]) Exited: Terminated
    1/3/09 12:27:02 PM com.apple.launchd[116] (com.apple.UserEventAgent-Aqua[471]) Exited: Terminated
    1/3/09 12:27:02 PM com.apple.launchd[116] ([0x0-0x71071].com.apple.systemevents[975]) Exited: Terminated
    1/3/09 12:27:02 PM com.wacom.wacomtablet[465] Sat Jan 3 12:27:02 Macintosh.local WacomTabletDriver[465] <Error>: kCGErrorRangeCheck : On-demand launch of the Window Server is allowed for root user only.
    1/3/09 12:27:02 PM com.wacom.wacomtablet[465] Sat Jan 3 12:27:02 Macintosh.local WacomTabletDriver[465] <Error>: kCGErrorRangeCheck : Set a breakpoint at CGErrorBreakpoint() to catch errors as they are returned
    1/3/09 12:27:02 PM com.apple.launchd[116] (com.wacom.wacomtablet[465]) Exited with exit code: 255
    1/3/09 12:27:06 PM com.apple.KernelEventAgent[24] KernelEventAgent: sysctl_queryfs: No such file or directory
    1/3/09 12:27:16 PM com.apple.launchd[1] ([0x0-0x77077].com.wacom.TabletDriver[1014]) Exited: Terminated
    1/3/09 12:27:16 PM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[1013]) Exited: Terminated
    1/3/09 12:27:16 PM com.apple.launchd[1] (com.wacom.wacomtablet[1012]) Exited with exit code: 255
    1/3/09 12:27:44 PM com.apple.loginwindow[986] Sat Jan 3 12:27:44 Macintosh.local loginwindow[986] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    1/3/09 12:27:44 PM com.apple.KernelEventAgent[24] KernelEventAgent: sysctl_queryfs: No such file or directory
    1/3/09 12:27:44 PM com.apple.loginwindow[986] Sat Jan 3 12:27:44 Macintosh.local loginwindow[986] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    1/3/09 12:27:51 PM com.apple.loginwindow[1084] Shutdown NOW!
    1/3/09 12:27:51 PM com.apple.loginwindow[1084] System shutdown time has arrived
    1/4/09 12:01:25 AM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/AVCAssistant.plist
    1/4/09 12:01:25 AM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    1/4/09 12:01:25 AM com.apple.launchd[1] (com.adobe.versioncueCS3) Unknown key: ServiceDescription
    1/4/09 12:01:25 AM com.apple.launchd[1] (com.apple.blued) Unknown key for boolean: EnableTransactions
    1/4/09 12:01:25 AM com.apple.launchd[1] (com.apple.mio.AVCAssistant) Conflict with job: 0x100760.AVCAssistant over Mach service: com.apple.mio.AVCAssistant
    1/4/09 12:01:25 AM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    1/4/09 12:01:25 AM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    1/4/09 12:01:34 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 6 seconds
    1/4/09 12:02:19 AM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[82]) Exited: Terminated
    1/4/09 12:02:19 AM com.apple.launchd[1] ([0x0-0x4004].com.wacom.TabletDriver[87]) Exited: Terminated
    1/4/09 12:02:19 AM com.apple.launchd[1] (com.wacom.wacomtablet[81]) Exited with exit code: 255
    1/4/09 12:02:19 AM com.apple.launchctl.Aqua[122] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    1/4/09 12:02:19 AM com.apple.launchctl.Aqua[122] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/RemoteUI.plist
    1/4/09 12:02:19 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 10 seconds
    1/4/09 12:02:21 AM com.apple.FolderActions.enabled[123] launchctl: Error unloading: com.apple.FolderActions.folders
    1/4/09 12:02:23 AM com.apple.launchctl.System[2] BootCacheControl: could not fetch history: Cannot allocate memory
    1/4/09 12:02:23 AM com.apple.launchctl.System[2] BootCacheControl: could not stop cache/fetch history: Cannot allocate memory
    1/4/09 12:02:28 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/4/09 12:02:28 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/4/09 12:02:28 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/4/09 12:02:28 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/4/09 12:02:28 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/4/09 12:02:28 AM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    1/4/09 12:02:38 AM Finder[140] [QL ERROR] Generator database update takes too long... we will use what we currently have
    1/4/09 12:02:40 AM SystemUIServer[139]
    MenuCracker
    see http://sourceforge.net/projects/menucracker
    MenuCracker is now loaded. Ready to accept new menus. Ignore the failure message that follow.
    1/4/09 12:02:43 AM [0x0-0x17017].com.kensington.mouseworks.background[166] Kensington FastUserSwitch: Session On Console
    1/4/09 12:02:43 AM [0x0-0x17017].com.kensington.mouseworks.background[166] Kensington FastUserSwitch: Session User ID = 501
    1/4/09 12:02:43 AM [0x0-0x17017].com.kensington.mouseworks.background[166] Kensington FastUserSwitch: Installing User Switch Notifications
    1/4/09 12:02:44 AM com.apple.launchd[120] (0x101040.VersionCueCS3monitor) Failed to check-in!
    1/4/09 12:02:45 AM SystemUIServer[139] failed to load Menu Extra: NSBundle </Users/garyp/Library/PreferencePanes/MenuMeters.prefPane/Contents/Resources/Me nuCracker.menu> (loaded)
    1/4/09 12:02:48 AM FontAgent Activator[169] file /InsiderBuild/4.0.3/FAPro/Activation/Daemon/FASDatabaseIndexing.m line 83 caught NSInvalidArgumentException because * -[NSCFDictionary setObject:forKey:]: attempt to insert nil key
    1/4/09 12:02:49 AM SystemUIServer[139] MenuCracker: Loading 'MenuMeterCPUExtra'.
    1/4/09 12:02:50 AM SystemUIServer[139] MenuMeterCPU loaded.
    1/4/09 12:02:51 AM SystemUIServer[139] MenuCracker: Loading 'SSMenuExtra'.
    1/4/09 12:02:53 AM SystemUIServer[139] MenuCracker: Loading 'MenuMeterMemExtra'.
    1/4/09 12:02:54 AM SystemUIServer[139] MenuMeterMem loaded.
    1/4/09 12:02:55 AM SystemUIServer[139] MenuCracker: Loading 'MenuMeterNetExtra'.
    1/4/09 12:02:55 AM SystemUIServer[139] MenuMeterNet loaded.
    1/4/09 12:03:00 AM [0x0-0x1f01f].com.apple.systemevents[182] com.apple.FolderActions.enabled: Already loaded
    1/4/09 12:03:09 AM com.apple.Safari[191] YES
    1/4/09 12:05:06 AM com.apple.launchd[120] (0x10c080.Locum[195]) Exited: Terminated
    1/4/09 12:05:49 AM com.apple.launchd[120] (0x10c080.Locum[226]) Exited: Terminated
    1/4/09 12:07:56 AM [0x0-0x23023].com.apple.Safari[287] Debugger() was called!
    1/4/09 12:18:22 AM com.apple.Safari[385] YES
    1/4/09 12:33:34 AM com.apple.Safari[414] YES
    1/4/09 12:48:45 AM com.apple.Safari[440] YES
    1/4/09 1:01:26 AM com.apple.launchd[1] (com.18james.anacron[457]) Stray process with PGID equal to this dead job: PID 460 PPID 1 anacron
    1/4/09 1:03:59 AM com.apple.Safari[477] YES
    1/4/09 1:16:56 AM Mail[494] Trying to add a To Do UID (36BB6114-79B5-11D7-A41D-00050257BC9E) that already exists in the cache and for the same mailbox. Perhaps this should have been an update. Skipping to avoid cyclic reconciliation.
    1/4/09 1:18:42 AM com.apple.Safari[506] YES
    1/4/09 1:30:03 AM com.apple.launchd[120] (0x10c470.Locum[531]) Exited: Terminated
    1/4/09 11:35:27 AM Mail[610] Trying to add a To Do UID (36BB6114-79B5-11D7-A41D-00050257BC9E) that already exists in the cache and for the same mailbox. Perhaps this should have been an update. Skipping to avoid cyclic reconciliation.
    1/4/09 11:36:09 AM com.apple.Safari[620] YES
    1/4/09 11:36:53 AM dotmacsyncclient[612] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:CBC29DFA-35A7-4820-89FB-2419321BF66B, auto-retries=2, manual-retries=0
    1/4/09 11:40:15 AM [0x0-0x34034].com.apple.Safari[622] Debugger() was called!
    1/4/09 11:41:10 AM Mail[610] GET /Library/Application Support/Mail/Alias.xml (FAILED), httpStatusCode:402, errorType:100, transactionState:5, txnId:7C389A3C-86BD-49BF-8B29-1EB40F3A4F03, auto-retries=0, manual-retries=0
    1/4/09 11:52:43 AM dotmacsyncclient[632] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:193C523E-1AF4-49D3-8003-079EAB844A03, auto-retries=0, manual-retries=0
    1/4/09 11:52:17 AM com.apple.Safari[639] YES
    1/4/09 12:08:06 PM com.apple.Safari[664] YES
    1/4/09 12:08:51 PM dotmacsyncclient[657] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:43140CC6-6048-43B8-8D5C-0E4987A62826, auto-retries=0, manual-retries=0
    1/4/09 12:09:10 PM dotmacsyncclient[665] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:A5D636AB-1E36-4EDC-A2F2-D4113C6290DF, auto-retries=2, manual-retries=0
    1/4/09 12:09:10 PM com.apple.AOSNotification[184] 2009-01-04 12:09:10.487 dotmacsyncclient[665:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:A5D636AB-1E36-4EDC-A2F2-D4113C6290DF, auto-retries=2, manual-retries=0
    1/4/09 12:12:02 PM com.apple.launchd[120] (0x10bf80.Locum[682]) Exited: Terminated
    1/4/09 12:13:27 PM com.apple.launchd[120] (0x10bf80.Locum[685]) Exited: Terminated
    1/4/09 12:24:13 PM com.apple.Safari[701] YES
    1/4/09 12:25:10 PM dotmacsyncclient[694] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:36F91B84-2DC5-4304-92EF-549BA41D192F, auto-retries=1, manual-retries=0
    1/4/09 12:25:18 PM dotmacsyncclient[702] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:DA241077-C668-4D7D-8DFB-1F641FAA776C, auto-retries=2, manual-retries=0
    1/4/09 12:25:18 PM com.apple.AOSNotification[184] 2009-01-04 12:25:18.581 dotmacsyncclient[702:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:DA241077-C668-4D7D-8DFB-1F641FAA776C, auto-retries=2, manual-retries=0
    1/4/09 12:25:35 PM [0x0-0x3f03f].com.apple.systemevents[704] com.apple.FolderActions.enabled: Already loaded
    1/4/09 12:25:43 PM com.apple.loginwindow[23] Shutdown NOW!
    1/4/09 12:25:43 PM com.apple.loginwindow[23] System shutdown time has arrived
    1/4/09 9:42:12 PM com.apple.launchctl.System[2] BootCacheControl: could not open /var/db/BootCache.playlist: No such file or directory
    1/4/09 9:42:12 PM com.apple.launchctl.System[2] BootCacheControl: could not unlink playlist /var/db/BootCache.playlist: Unknown error: -1
    1/4/09 9:42:13 PM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/AVCAssistant.plist
    1/4/09 9:42:13 PM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    1/4/09 9:42:13 PM com.apple.launchd[1] (com.adobe.versioncueCS3) Unknown key: ServiceDescription
    1/4/09 9:42:13 PM com.apple.launchd[1] (com.apple.blued) Unknown key for boolean: EnableTransactions
    1/4/09 9:42:13 PM com.apple.launchd[1] (com.apple.mio.AVCAssistant) Conflict with job: 0x100910.AVCAssistant over Mach service: com.apple.mio.AVCAssistant
    1/4/09 9:42:13 PM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    1/4/09 9:42:13 PM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    1/4/09 9:42:19 PM com.apple.launchd[1] (com.18james.anacron[40]) Stray process with PGID equal to this dead job: PID 44 PPID 1 anacron
    1/4/09 9:42:36 PM org.ntp.ntpd[14] Error : nodename nor servname provided, or not known
    1/4/09 9:44:49 PM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[84]) Exited: Terminated
    1/4/09 9:44:49 PM com.apple.launchd[1] ([0x0-0x5005].com.wacom.TabletDriver[92]) Exited: Terminated
    1/4/09 9:44:49 PM com.apple.launchd[1] (com.wacom.wacomtablet[83]) Exited with exit code: 255
    1/4/09 9:44:49 PM com.apple.launchctl.Aqua[122] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    1/4/09 9:44:49 PM com.apple.launchctl.Aqua[122] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/RemoteUI.plist
    1/4/09 9:44:51 PM com.apple.FolderActions.enabled[123] launchctl: Error unloading: com.apple.FolderActions.folders
    1/4/09 9:45:08 PM SystemUIServer[138]
    MenuCracker
    see http://sourceforge.net/projects/menucracker
    MenuCracker is now loaded. Ready to accept new menus. Ignore the failure message that follow.
    1/4/09 9:45:09 PM Finder[139] [QL ERROR] Generator database update takes too long... we will use what we currently have
    1/4/09 9:45:12 PM [0x0-0x16016].com.kensington.mouseworks.background[163] Kensington FastUserSwitch: Session On Console
    1/4/09 9:45:12 PM [0x0-0x16016].com.kensington.mouseworks.background[163] Kensington FastUserSwitch: Session User ID = 501
    1/4/09 9:45:12 PM [0x0-0x16016].com.kensington.mouseworks.background[163] Kensington FastUserSwitch: Installing User Switch Notifications
    1/4/09 9:45:15 PM SystemUIServer[138] failed to load Menu Extra: NSBundle </Users/garyp/Library/PreferencePanes/MenuMeters.prefPane/Contents/Resources/Me nuCracker.menu> (loaded)
    1/4/09 9:45:15 PM com.apple.launchd[120] (0x101040.VersionCueCS3monitor) Failed to check-in!
    1/4/09 9:45:18 PM SystemUIServer[138] MenuCracker: Loading 'MenuMeterCPUExtra'.
    1/4/09 9:45:19 PM FontAgent Activator[166] file /InsiderBuild/4.0.3/FAPro/Activation/Daemon/FASDatabaseIndexing.m line 83 caught NSInvalidArgumentException because * -[NSCFDictionary setObject:forKey:]: attempt to insert nil key
    1/4/09 9:45:21 PM SystemUIServer[138] MenuMeterCPU loaded.
    1/4/09 9:45:22 PM SystemUIServer[138] MenuCracker: Loading 'SSMenuExtra'.
    1/4/09 9:45:26 PM SystemUIServer[138] MenuCracker: Loading 'MenuMeterMemExtra'.
    1/4/09 9:45:26 PM SystemUIServer[138] MenuMeterMem loaded.
    1/4/09 9:45:27 PM SystemUIServer[138] MenuCracker: Loading 'MenuMeterNetExtra'.
    1/4/09 9:45:27 PM SystemUIServer[138] MenuMeterNet loaded.
    1/4/09 9:45:30 PM [0x0-0x1e01e].com.apple.systemevents[181] com.apple.FolderActions.enabled: Already loaded
    1/4/09 9:46:03 PM com.apple.Safari[191] YES
    1/4/09 9:46:18 PM dotmacsyncclient[160] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:1B2CA0EE-AD01-4148-BFD9-9CF8CF8665D2, auto-retries=2, manual-retries=0
    1/4/09 9:46:51 PM com.apple.launchd[120] (0x10c000.Locum[220]) Exited: Terminated
    1/4/09 9:48:21 PM com.apple.launchd[120] (0x10c8b0.Locum[226]) Exited: Terminated
    1/4/09 9:48:43 PM com.apple.launchd[120] (0x10bfd0.Locum[221]) Exited: Terminated
    1/4/09 9:48:59 PM Mail[301] Trying to add a To Do UID (36BB6114-79B5-11D7-A41D-00050257BC9E) that already exists in the cache and for the same mailbox. Perhaps this should have been an update. Skipping to avoid cyclic reconciliation.
    1/4/09 10:01:18 PM com.apple.Safari[321] YES
    1/4/09 10:02:09 PM dotmacsyncclient[323] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:0A941175-1ADF-40B7-BD65-4BC019E0F310, auto-retries=0, manual-retries=0
    1/4/09 10:03:05 PM dotmacsyncclient[329] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:60D72AB3-8EEF-47DC-83FB-4C65A64D7868, auto-retries=0, manual-retries=0
    1/4/09 10:03:05 PM com.apple.AOSNotification[180] 2009-01-04 22:03:05.674 dotmacsyncclient[329:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:60D72AB3-8EEF-47DC-83FB-4C65A64D7868, auto-retries=0, manual-retries=0
    1/4/09 10:08:47 PM [0x0-0x24024].com.apple.Safari[319] Debugger() was called!
    1/4/09 10:17:41 PM com.apple.Safari[357] YES
    1/4/09 10:18:36 PM dotmacsyncclient[350] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:0BA3B5CC-44ED-450D-9331-A964C246ACE2, auto-retries=2, manual-retries=0
    1/4/09 10:18:47 PM dotmacsyncclient[360] POST /marketeer (FAILED), httpStatusCode:503, errorType:100, transactionState:5, txnId:D55361B4-CC5A-42E3-8A03-766BD098AEF6, auto-retries=1, manual-retries=0
    1/4/09 10:18:47 PM com.apple.AOSNotification[180] 2009-01-04 22:18:47.085 dotmacsyncclient[360:10b] POST /marketeer (FAILED), httpStatusCode:503, errorType:100, transactionState:5, txnId:D55361B4-CC5A-42E3-8A03-766BD098AEF6, auto-retries=1, manual-retries=0
    1/4/09 10:33:48 PM com.apple.Safari[389] YES
    1/4/09 10:36:13 PM dotmacsyncclient[390] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:A66A17AF-E8B4-4F0F-B095-E9EB263D3738, auto-retries=1, manual-retries=0
    1/4/09 10:36:13 PM com.apple.AOSNotification[180] 2009-01-04 22:36:13.641 dotmacsyncclient[390:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:A66A17AF-E8B4-4F0F-B095-E9EB263D3738, auto-retries=1, manual-retries=0
    1/4/09 10:49:45 PM dotmacsyncclient[417] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:8B62AC5C-96DF-4AAF-A22C-C4E66878AE17, auto-retries=0, manual-retries=0
    1/4/09 10:49:11 PM com.apple.Safari[424] YES
    1/4/09 10:50:38 PM dotmacsyncclient[425] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:B31EE160-5B92-4702-9741-09C79144E801, auto-retries=2, manual-retries=0
    1/4/09 10:50:38 PM com.apple.AOSNotification[180] 2009-01-04 22:50:38.436 dotmacsyncclient[425:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:B31EE160-5B92-4702-9741-09C79144E801, auto-retries=2, manual-retries=0
    1/4/09 10:58:59 PM [0x0-0x24024].com.apple.Safari[319] 090104 22:58:59 [Warning] Can't open and lock time zone table: Table 'mysql.timezone_leapsecond' doesn't exist trying to live without them
    1/4/09 10:58:59 PM [0x0-0x24024].com.apple.Safari[319] /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/mysqld: ready for connections.
    1/4/09 10:58:59 PM [0x0-0x24024].com.apple.Safari[319] Version: '4.1.18-classic' socket: '/Users/garyp/Library/Caches/Acrobat/8.0_x86/Organizer70' port: 0 MySQL Classic (Commercial)
    1/4/09 11:04:56 PM dotmacsyncclient[501] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:BB6D22F2-666C-4E09-8FFF-38A40BC54440, auto-retries=2, manual-retries=0
    1/4/09 11:05:20 PM com.apple.Safari[509] YES
    1/4/09 11:16:52 PM com.apple.Safari[596] YES
    1/4/09 11:17:43 PM dotmacsyncclient[598] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:CA7607EB-9D45-4FF4-BC3A-CE82ED0A7D11, auto-retries=0, manual-retries=0
    1/4/09 11:17:43 PM com.apple.AOSNotification[180] 2009-01-04 23:17:43.804 dotmacsyncclient[598:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:CA7607EB-9D45-4FF4-BC3A-CE82ED0A7D11, auto-retries=0, manual-retries=0
    1/4/09 11:20:44 PM dotmacsyncclient[621] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:BFEF2FCD-9568-4BEA-9C67-88EEB4108A42, auto-retries=0, manual-retries=0
    1/4/09 11:30:00 PM com.apple.launchd[1] (0x10d760.cron[700]) Could not setup Mach task special port 9: (os/kern) no access
    1/4/09 11:30:51 PM com.apple.Safari[762] YES
    1/4/09 11:31:42 PM dotmacsyncclient[769] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:676A08C0-B93A-44AA-9ACB-C27A6BEE8F8E, auto-retries=0, manual-retries=0
    1/4/09 11:31:42 PM com.apple.AOSNotification[180] 2009-01-04 23:31:42.128 dotmacsyncclient[769:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:676A08C0-B93A-44AA-9ACB-C27A6BEE8F8E, auto-retries=0, manual-retries=0
    1/4/09 11:35:03 PM com.apple.launchd[1] (org.postfix.master[939]) Stray process with PGID equal to this dead job: PID 941 PPID 1 qmgr
    1/4/09 11:36:16 PM dotmacsyncclient[1016] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:1205F6C6-0527-405F-AA91-06B08990F769, auto-retries=2, manual-retries=0
    1/4/09 11:43:07 PM com.apple.Safari[1078] YES
    1/4/09 11:44:35 PM dotmacsyncclient[1080] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:A198FDAE-57B1-4E92-A692-3FA53AD8A712, auto-retries=1, manual-retries=0
    1/4/09 11:44:35 PM com.apple.AOSNotification[180] 2009-01-04 23:44:35.055 dotmacsyncclient[1080:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:A198FDAE-57B1-4E92-A692-3FA53AD8A712, auto-retries=1, manual-retries=0
    1/4/09 11:51:43 PM com.apple.Safari[1158] YES
    1/4/09 11:52:28 PM dotmacsyncclient[1147] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:B930DB10-C352-49FC-9F6F-464A1517D20A, auto-retries=1, manual-retries=0
    1/4/09 11:52:50 PM dotmacsyncclient[1168] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:9333CE91-B570-4784-AD6C-14DC2301696F, auto-retries=2, manual-retries=0
    1/4/09 11:52:50 PM com.apple.AOSNotification[180] 2009-01-04 23:52:50.854 dotmacsyncclient[1168:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:9333CE91-B570-4784-AD6C-14DC2301696F, auto-retries=2, manual-retries=0
    1/4/09 11:54:47 PM Transmit[1118] Favorite:passwordFromKeychain: no keychain item found for ftp-dom.earthlink.net anitaeubank.com -25300
    1/5/09 12:05:54 AM com.apple.quicklook[1291] Mon Jan 5 00:05:54 Macintosh.local quicklookd[1291] <Error>: Corrupt JPEG data: premature end of data segment
    1/5/09 12:05:54 AM com.apple.quicklook[1291]
    1/5/09 12:05:54 AM com.apple.quicklook[1291] Mon Jan 5 00:05:54 Macintosh.local quicklookd[1291] <Error>: Corrupt JPEG data: premature end of data segment
    1/5/09 12:05:54 AM com.apple.quicklook[1291]
    1/5/09 12:07:54 AM com.apple.Safari[1318] YES
    1/5/09 12:08:19 AM dotmacsyncclient[1308] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:A00494AE-3835-4A0D-9CD2-EFCD204CB74D, auto-retries=0, manual-retries=0
    1/5/09 12:08:47 AM dotmacsyncclient[1323] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:CB4A6E4A-290D-4450-BAFC-8764E2C18648, auto-retries=2, manual-retries=0
    1/5/09 12:08:47 AM com.apple.AOSNotification[180] 2009-01-05 00:08:47.351 dotmacsyncclient[1323:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:CB4A6E4A-290D-4450-BAFC-8764E2C18648, auto-retries=2, manual-retries=0
    1/5/09 12:18:57 AM com.apple.launchd[120] (0x10d400.Locum[1414]) Exited: Terminated
    1/5/09 12:23:34 AM com.apple.Safari[1456] YES
    1/5/09 12:23:47 AM dotmacsyncclient[1446] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:3D1D272C-8EF5-4B47-B9B3-13C56FC02111, auto-retries=2, manual-retries=0
    1/5/09 12:28:01 AM com.apple.launchd[120] (0x10e8e0.Locum[1522]) Exited: Terminated
    1/5/09 12:28:28 AM Disk Inventory X[1526] .scriptSuite warning for attribute 'scriptStyle' of class 'NSTextStorage' in suite 'ExtendedText': 'OAStyle.OAStyle' is not a valid type name.
    1/5/09 12:28:28 AM Disk Inventory X[1526] NSScriptSuiteRegistry does not respond to -_setClassDescription:forAppleEventCode: -- not hooking up extra alias (and thus, breaking some AppleScripts)
    1/5/09 12:29:42 AM Disk Inventory X[1526] NSDocumentController Info.plist warning: The values of CFBundleTypeRole entries must be 'Editor', 'Viewer', 'None', or 'Shell'.
    1/5/09 12:29:42 AM Disk Inventory X[1526] NSDocumentController Info.plist warning: The values of CFBundleTypeRole entries must be 'Editor', 'Viewer', 'None', or 'Shell'.
    1/5/09 12:38:58 AM dotmacsyncclient[1609] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:297F0F65-6057-4BEF-84B9-6DF609BF22BD, auto-retries=2, manual-retries=0
    1/5/09 12:39:14 AM com.apple.Safari[1620] YES
    1/5/09 12:40:02 AM dotmacsyncclient[1623] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:EE946786-3DC2-479E-9335-FCCC4D42BD14, auto-retries=0, manual-retries=0
    1/5/09 12:40:27 AM Disk Inventory X[1526] An instance 0x96f0b0 of class MainWindowController is being deallocated while key value observers are still registered with it. Observation info is being leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x3980c1e0> (
    <NSKeyValueObservance 0x397cb9d0: Observer: 0x397c3250, Key path: document.kindStatistics, Options: <New: YES, Old: NO, Prior: NO> Context: 0x1cbd4, Property: 0x397cb960>
    <NSKeyValueObservance 0x3980c350: Observer: 0x397c4480, Key path: document.kindStatistics, Options: <New: YES, Old: NO, Prior: NO> Context: 0x1cbd4, Property: 0x397cb960>
    1/5/09 12:40:02 AM com.apple.AOSNotification[180] 2009-01-05 00:40:02.062 dotmacsyncclient[1623:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:105 (domain=AYErrorDomain, code=2), transactionState:5, txnId:EE946786-3DC2-479E-9335-FCCC4D42BD14, auto-retries=0, manual-retries=0
    1/5/09 12:41:22 AM [0x0-0x24024].com.apple.Safari[319] 090105 0:41:22 [Note] /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/mysqld: Normal shutdown
    1/5/09 12:41:24 AM [0x0-0x24024].com.apple.Safari 090105 0:41:24 [Note] /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/mysqld: Shutdown complete
    1/5/09 12:42:05 AM Disk Inventory X[1646] .scriptSuite warning for attribute 'scriptStyle' of class 'NSTextStorage' in suite 'ExtendedText': 'OAStyle.OAStyle' is not a valid type name.
    1/5/09 12:42:05 AM Disk Inventory X[1646] NSScriptSuiteRegistry does not respond to -_setClassDescription:forAppleEventCode: -- not hooking up extra alias (and thus, breaking some AppleScripts)
    1/5/09 12:42:12 AM Disk Inventory X[1646] NSDocumentController Info.plist warning: The values of CFBundleTypeRole entries must be 'Editor', 'Viewer', 'None', or 'Shell'.
    1/5/09 12:42:12 AM Disk Inventory X[1646] NSDocumentController Info.plist warning: The values of CFBundleTypeRole entries must be 'Editor', 'Viewer', 'None', or 'Shell'.
    1/5/09 12:46:44 AM com.apple.launchd[120] (0x10dce0.Locum[1677]) Exited: Terminated
    1/5/09 12:49:09 AM com.apple.launchd[120] (0x10dce0.Locum[1744]) Exited: Terminated
    1/5/09 12:50:26 AM com.apple.launchd[120] (0x10dc40.Locum[1749]) Exited: Terminated
    1/5/09 12:52:21 AM Disk Inventory X[1646] An instance 0x9f6ea0 of class MainWindowController is being deallocated while key value observers are still registered with it. Observation info is being leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x39444b20> (
    <NSKeyValueObservance 0x39408490: Observer: 0x393fbb20, Key path: document.kindStatistics, Options: <New: YES, Old: NO, Prior: NO> Context: 0x1cbd4, Property: 0x39408420>
    <NSKeyValueObservance 0x39444d20: Observer: 0x39400e70, Key path: document.kindStatistics, Options: <New: YES, Old: NO, Prior: NO> Context: 0x1cbd4, Property: 0x39408420>
    1/5/09 12:52:00 AM com.apple.launchd[120] (0x10dc40.Locum[1757]) Exited: Terminated
    1/5/09 12:54:30 AM com.apple.Safari[1775] YES
    1/5/09 12:54:50 AM dotmacsyncclient[1764] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:B25AFB25-3CB0-470E-8561-981CE70C593F, auto-retries=2, manual-retries=0
    1/5/09 12:55:27 AM Disk Inventory X[1777] .scriptSuite warning for attribute 'scriptStyle' of class 'NSTextStorage' in suite 'ExtendedText': 'OAStyle.OAStyle' is not a valid type name.
    1/5/09 12:55:27 AM Disk Inventory X[1777] NSScriptSuiteRegistry does not respond to -_setClassDescription:forAppleEventCode: -- not hooking up extra alias (and thus, breaking some AppleScripts)
    1/5/09 12:56:23 AM Disk Inventory X[1777] NSDocumentController Info.plist warning: The values of CFBundleTypeRole entries must be 'Editor', 'Viewer', 'None', or 'Shell'.
    1/5/09 12:56:23 AM Disk Inventory X[1777] NSDocumentController Info.plist warning: The values of CFBundleTypeRole entries must be 'Editor', 'Viewer', 'None', or 'Shell'.
    1/5/09 1:01:31 AM [0x0-0x69069].org.videolan.vlc[1808] [00000001] main libvlc debug: VLC media player - version 0.9.5 Grishenko - (c) 1996-2008 the VideoLAN team
    1/5/09 1:01:31 AM [0x0-0x69069].org.videolan.vlc[1808] [00000001] main libvlc debug: libvlc was configured with ./configure '--enable-release' '--enable-update-check' '--with-macosx-sdk=/Developer/SDKs/MacOSX10.4u.sdk' 'PKGCONFIGPATH=:/opt/local/lib/pkgconfig'
    1/5/09 1:01:31 AM [0x0-0x69069].org.videolan.vlc[1808] [00000001] main libvlc debug: translation test: code is "C"
    1/5/09 1:01:33 AM [0x0-0x69069].org.videolan.vlc[1808] [00000001] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
    1/5/09 1:01:34 AM [0x0-0x69069].org.videolan.vlc[1808] [00000363] a52 decoder: A/52 channels:2 samplerate:48000 bitrate:256000
    1/5/09 1:01:34 AM [0x0-0x69069].org.videolan.vlc[1808] No accelerated IMDCT transform found
    1/5/09 1:01:56 AM [0x0-0x69069].org.videolan.vlc[1808] [00000001] main libvlc: Status file authenticated
    1/5/09 1:03:14 AM com.apple.launchd[120] (0x10d0a0.Locum[1825]) Exited: Terminated
    1/5/09 1:04:18 AM [0x0-0x69069].org.videolan.vlc[1808] [00000379] main update download: /Users/garyp/Downloads/vlc-0.9.8a-intel.dmg authenticated
    1/5/09 1:05:17 AM Disk Inventory X[1777] An instance 0x16825e80 of class MainWindowController is being deallocated while key value observers are still registered with it. Observation info is being leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x18bed330> (
    <NSKeyValueObservance 0x18bca070: Observer: 0x18bc2410, Key path: document.kindStatistics, Options: <New: YES, Old: NO, Prior: NO> Context: 0x1cbd4, Property: 0x18bca000>
    <NSKeyValueObservance 0x18bed470: Observer: 0x18bc3640, Key path: document.kindStatistics, Options: <New: YES, Old: NO, Prior: NO> Context: 0x1cbd4, Property: 0x18bca000>
    1/5/09 1:05:48 AM [0x0-0x6f06f].org.videolan.vlc[1837] [00000001] main libvlc debug: VLC media player - version 0.9.5 Grishenko - (c) 1996-2008 the VideoLAN team
    1/5/09 1:05:48 AM [0x0-0x6f06f].org.videolan.vlc[1837] [00000001] main libvlc debug: libvlc was configured with ./configure '--enable-release' '--enable-update-check' '--with-macosx-sdk=/Developer/SDKs/MacOSX10.4u.sdk' 'PKGCONFIGPATH=:/opt/local/lib/pkgconfig'
    1/5/09 1:05:48 AM [0x0-0x6f06f].org.videolan.vlc[1837] [00000001] main libvlc debug: translation test: code is "C"
    1/5/09 1:05:48 AM [0x0-0x6f06f].org.videolan.vlc[1837] [00000001] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
    1/5/09 1:05:58 AM [0x0-0x6f06f].org.videolan.vlc[1837] [00000001] main libvlc: Status file authenticated
    1/5/09 1:06:43 AM com.apple.launchd[120] (0x10db70.Locum[1859]) Exited: Terminated
    1/5/09 1:08:16 AM com.apple.launchd[120] (0x10a810.Locum[1881]) Exited: Terminated
    1/5/09 1:08:33 AM com.apple.launchd[120] (0x10a810.Locum[1882]) Exited: Terminated
    1/5/09 1:09:58 AM dotmacsyncclient[1897] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:43F06314-E29C-4660-803F-CD312A71B333, auto-retries=2, manual-retries=0
    1/5/09 1:10:12 AM com.apple.Safari[1905] YES
    1/5/09 1:10:23 AM [0x0-0x79079].com.apple.Safari[1907] Debugger() was called!
    1/5/09 1:10:34 AM com.apple.launchd[120] (0x10dee0.Locum[1908]) Exited: Terminated
    1/5/09 1:10:51 AM dotmacsyncclient[1906] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:72130295-5054-4550-A8DD-A7B34A8E6E4F, auto-retries=2, manual-retries=0
    1/5/09 1:10:51 AM com.apple.AOSNotification[180] 2009-01-05 01:10:51.479 dotmacsyncclient[1906:10b] POST /marketeer (FAILED), httpStatusCode:-1, errorType:100 (domain=Error domain 4, code=-4), transactionState:5, txnId:72130295-5054-4550-A8DD-A7B34A8E6E4F, auto-retries=2, manual-retries=0
    1/5/09 9:36:36 AM com.apple.Safari[1998] YES
    1/5/09 9:37:50 AM Mail[2007] Trying to add a To Do UID (36BB6114-79B5-11D7-A41D-00050257BC9E) that already exists in the cache and for the same mailbox. Perhaps this should have been an update. Skipping to avoid cyclic reconciliation.
    1/5/09 9:40:48 AM Mail[2007] GET /Library/Application Support/Mail/Alias.xml (FAILED), httpStatusCode:402, errorType:100, transactionState:5, txnId:333A444A-4D57-4613-8136-B522678517BA, auto-retries=0, manual-retries=0
    1/5/09 9:50:19 AM com.apple.Safari[2014] YES
    1/5/09 9:57:20 AM [0x0-0x80080].com.apple.Safari[2013] Debugger() was called!
    1/5/09 10:01:21 AM com.apple.launchd[120] (0x10be60.Locum[2050]) Exited: Terminated
    1/5/09 10:06:03 AM com.apple.launchd[1] (com.18james.anacron[2056]) Stray process with PGID equal to this dead job: PID 2059 PPID 1 anacron
    1/5/09 10:07:06 AM com.apple.Safari[2073] YES
    1/5/09 10:22:16 AM com.apple.Safari[2100] YES
    1/5/09 10:37:09 AM com.apple.Safari[2138] YES

    If the alternate user account is an admin account and login works correctly, then it appears that there's a conflict or corruption within the main account. If the alternate user account isn't an admin account, create a new admin account. While logged into the appropriate admin account, backup the main account's folder, delete the main account, selecting the save data option (which is stored in /Users/Deleted Users/ as a disk image), recreate the main account using the same username/password combo, log out and back into the recreated main account. If it boots normally, then the problem's solved, open the saved data dmg file in /Users/Deleted Users/, open the /Library/Preferences/ folder from the saved data, open the current /Users/restored account/Library/Preferences/ folder, and slowly copy plist files from the saved data folder to the current one that don't exist in it. Log out and back in to ensure there's no conflict and things still work correctly. Resolving conflicts or identifying corrupt plist files is a laborious process. Good luck.
    See http://discussions.apple.com/thread.jspa?messageID=4703015 for more details on this process.

Maybe you are looking for

  • Dynamic populating the items in the select boxes

    Hi, I need three select boxes on a webpage in such a way that the options in select box 2 should be populated only after selecting some item in "select box 1" and the options in the "select box 3" should be displayed by selecting the options in "the

  • WD ABAP: Drag and drop functionality

    Hi, Is there a UI element/event to simulate the drag and drop functionality in Webdynpro ABAP? I would like to simulate the functionality of context mapping. I have the requirement to show the hierarchy of say Country and state(preferably in tree str

  • Connecting copper to new optic fibre

    I am thinking about changing to optic fibre cable.   Anyone any idea how long the change over takes and does it make any real difference to the speed on the computer.    My computer is  7 years old and although I keep it clear of any real problems, i

  • Error "problem loading more pages"

    Using XP SP3, IE 8 and Acrobat Reader X, I have been trying to look at a document identified by a website as .pdf. I see what appears to be the first page of that document - ie it makes perfect sense in the context of the website - but at the foot of

  • CENVAT -23C-II- ADC in j1iex we need 50% value not 100%

    Hi, We have done import PO and wrt the same PO we done GRN and we select excise item tab as capital goods and complete the GRn as part 1. now we try to complete the J1iex as same vendor excise invoice with capital goods. but we are not getting the CE