Local Account corruption

I am starting to see a couple of issues with my Windows 7 Pro systems that I am not sure if ZCM's DLU policy might be causing issues with.
I worked on a students computer yesterday where the Novell Login worked as designed but the local log reported the Local profile was corrupt and kills the login. Deleting the local username and renaming the profile folder for that student seems to fix the issue. Could the DLU policy be causing problems with the Local account?
The second item I am seeing more and more of is that the Windows 7 Pro Startup repair seems to be occurring more frequently most recently. The process is random for student computers so I have attributed the issue to the student forcing a shutdown instead of shutting down the computer correctly. At this point I am not so sure. I have a larger number of repairs that cannot be resolved and the laptop needing a complete reinstall.
Any ideas on either of these issues?
Thanks
Richard

We have been having trouble for some time with Local non-roaming Volatile DLU accounts not completely being deleted at shutdown/reboot. When the account is incompletely deleted, the next time that user logs in, it will often cause errors, such as using the "default profile" or "temporary profile" for that user only. Sometimes a single user will have dozens of local profiles on one machine due to this problem, not counting dozens of other local user profiles which should have all been deleted.
I've written a batch file that deletes the left behind remnants of user accounts, at least allowing you to have a clean machine, while resolving the Default and Temporary profile problem. It can be automated to run silently with a simple bundle every time a user logs in. I'm sure there are a million ways to improve it, but this is what I have so far. Also, it's obviously a band-aid solution, not a real fix. It hasn't caused any problems I am aware of to date, and we have been using it in production for a year now.
Please read the comments in the batch before running.
There is also an Administrator Settings area you can update for your own needs.
@ECHO OFF
REM V2.6
SETLOCAL
TITLE Local Profile and User Account cleanup tool
REM ****************FOR USE ON WINDOWS 7 ONLY!****************
REM Not tested on any other version of Windows. May work with
REM Vista and Windows 8.....?
REM If your Local Profiles folder is not the default C:\Users
REM be sure to correct all instances found in this script.
REM (or convert it to a variable if you are really ambitious!)
REM ### WARNING ### WARNING ### WARNING ### WARNING ###
REM DO NOT run this batch script on a computer that has a
REM NON-VOLATILE user account on it. IT WILL DELETE all data
REM in every user's profile on the C: drive!!!!!
REM This script is provided as-is, no warranties etc. etc.
REM It's up to you to perform the proper testing to ensure
REM it doesn't blow up your system, delete your stuff, get you
REM fired, or cause accidental nukular devastation.
REM This script cleans up the 3 major components of all local user
REM accounts. It does not attempt to do a complete registry
REM cleanup, and also has no provision for logging failures
REM aside from displaying them on the screen them as they happen.
REM Because no child should go without a Nukular Bomb to play with. - G. W. Bush
REM OK, I made that bit up.
REM ---------------ADMINISTRATOR SETTINGS BEGIN------------------------
REM Set this variable to 1 to disable user prompting for automation purposes
SET NPSKIP=0
REM *******Set all the users/profiles you DO NOT want erased here (case INSENSITIVE!!):**********
REM %USERNAME% is the currently logged in user. DO NOT REMOVE this entry, or face severe wrath!
SET KEEP="Administrator,All Users,UpdatusUser,Default,Default User,Public,Guest,%USERNAME%"
REM ---------------ADMINISTRATOR SETTINGS END--------------------------
ECHO.
ECHO.
ECHO ---WARNING!!!---
ECHO.
ECHO This script is for VOLATILE DLU computers ONLY!
ECHO It will delete all local users and their files!
ECHO.
IF "%NPSKIP%" == "1" GOTO NP1
choice /M "Are you sure you want to run this script?"
IF ERRORLEVEL=2 EXIT /B
:NP1
REM Inserts a delay on silent run to allow system to finish login tasks.
IF "%NPSKIP%" == "1" TIMEOUT /T 180
REM Enumerates Local user accounts
FOR /F "skip=1 delims=" %%c IN ('wmic useraccount get name') DO CALL :FUCHECK "%%c"
REM Enumerates Local Profiles folder for orphaned profiles
REM NOTE: This deletes ALL subfolders listed under C:\Users
REM even if they are not a user's profile.
REM (EXCEPT folders listed in the profile exceptions above!)
FOR /f "delims=" %%b IN ('dir /b C:\Users') DO CALL :ORPHAN "%%b"
REM Enumerates Registry Hive Profile List
FOR /f "delims=" %%d IN ('reg query "hklm\software\microsoft\windows nt\currentversion\profilelist" /f "S-1-5-21" /k') DO CALL :HIVE "%%d"
GOTO END
:FUCHECK
SET F1=%1
IF %F1% == "" GOTO :EOF
REM Removes quotation marks from variable
SET F1=###%F1%###
SET F1=%F1:"###=%
SET F1=%F1:###"=%
SET F1=%F1:###=%
REM Removes trailing spaces from variable
set "a=%F1%"
:loop
set /a n+=1
for /f "tokens=%n%" %%i in ("%a%") do if not "%%i"=="" set b=%b%%%i && goto:loop
set a=%b:~0,-1%
set b=
SET F1=%a%
set a=
set n=
set i=
ECHO Found user account: %F1%
IF /I "%USERNAME%" == "%F1%" GOTO :EOF
ECHO %KEEP%|find /I "%F1%" > NUL
IF ERRORLEVEL=1 GOTO CLEAN1
IF ERRORLEVEL=0 GOTO :EOF
GOTO :EOF
:CLEAN1
ECHO User profile will now be orphaned and deleted later.
ECHO Deleting User Account for %F1%
net user "%F1%" /del
GOTO :EOF
:ORPHAN
SET F2=%1
REM Removes quotation marks from variable
SET F2=###%F2%###
SET F2=%F2:"###=%
SET F2=%F2:###"=%
SET F2=%F2:###=%
ECHO Found user profile: %F2%
IF /I "%USERPROFILE%" == "C:\Users\%F2%" GOTO :EOF
ECHO %KEEP%|find /I "%F2%" > NUL
IF ERRORLEVEL=1 GOTO CLEAN2
IF ERRORLEVEL=0 GOTO :EOF
REM NOTE that if you are logged in as a user, the script will NOT delete ANY of your
REM User profiles, even ones that are orphaned. Since they are YOUR files, it does
REM not matter. The profiles will be deleted as soon as a different user runs the script.
GOTO :EOF
:CLEAN2
ECHO Deleting User Profile for %F2%
rmdir "C:\Users\%F2%" /s /q
IF NOT EXIST "C:\Users\%F2%" GOTO :EOF
ECHO User Profile erase failed. Retrying after 5 seconds...
REM Using PING LOCALHOST for 5 second delay.
ping 127.0.0.1 -n 6 > NUL
rmdir "C:\Users\%F2%" /s /q
IF NOT EXIST "C:\Users\%F2%" GOTO :EOF
ECHO User Profile erase failed. Retrying after 10 seconds...
ping 127.0.0.1 -n 11 > NUL
rmdir "C:\Users\%F2%" /s /q
IF NOT EXIST "C:\Users\%F2%" GOTO :EOF
ECHO.
ECHO User Profile erase failed. Skipping.
ECHO NOTE: Profile may have been paritally erased and nonfunctional/broken.
ECHO.
ECHO This is usually caused by a program that is currently running that
ECHO has locked a file in the user's profile. Try rebooting and/or ending
ECHO the offending task or stopping the offending service.
GOTO :EOF
:HIVE
SET F3=%1
REM Removes quotation marks from variable
SET F3=###%F3%###
SET F3=%F3:"###=%
SET F3=%F3:###"=%
SET F3=%F3:###=%
REM Grabs first 3 characters and checks to see if it's the last entry, which is an invalid comment output.
IF "%F3:~0,3%" == "End" GOTO :EOF
FOR /F "tokens=3" %%e IN ('reg query "%F3%" /v ProfileImagePath') DO SET REGPATH=%%e
IF "%REGPATH%" == "" (ECHO Found broken registry key. && GOTO REGDELETE "%F3%")
SET REGPATH=%REGPATH:C:\Users\=%
SET "REGPATH=%REGPATH:.="&rem %
ECHO Found user hive entry: %REGPATH%
ECHO %KEEP%|find /I "%REGPATH%" > NUL
IF ERRORLEVEL=1 CALL :REGDELETE "%F3%"
SET REGPATH=
IF ERRORLEVEL=0 GOTO :EOF
SET REGPATH=
GOTO :EOF
:REGDELETE
SET REGPATH=
ECHO Deleting %1
REG DELETE %1 /f
ECHO.
GOTO :EOF
:END
SET F1=
SET F2=
SET F3=
SET KEEP=
SET REGPATH=
ECHO.
ECHO.
ECHO Please REBOOT and log on as a different user and run this
ECHO script again to ensure that all accounts get cleaned up.
ECHO (The idea is to run it twice as two different users.)
ECHO.
IF "%NPSKIP%" == "1" GOTO NP2
PAUSE
:NP2
SET NPSKIP=
ENDLOCAL
REM Brought to you by the number Q, Google, and Me

Similar Messages

  • Office 2011 won't start (crashes) on one of the local accounts. MacBook 2013 Moutain Lion.

    Hi and thank you for your interest,
       recently all of the Microsoft applications refuse to start on one of the local accounts an a late 2013 MackBook Pro. Every time you try to start Word, Excel or any other Office app you get a non-specific message "...quit unexpectedly...". A following log is available, but before I post it I would just like to say that I have tried:
    *using it on other local account and it works
    *fixing permissions
    *cleaning user specific library (all the application support, preferences, saved states, etc.)
    *uninstalling office and manually removing all 'leftovers' [root library and user libraries] 
    *booting in safe mode
    *reinstalling Office
    Still no luck, that's the log:
    Any help would be very welcome, thank you.
    Process:         Microsoft Word [967]
    Path:            /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/Microsoft Word
    Identifier:      com.microsoft.Word
    Version:         14.0.0 (14.0.0)
    Build Info:      Unknown-100825~0
    Code Type:       X86 (Native)
    Parent Process:  launchd [123]
    User ID:         502
    Date/Time:       2013-10-09 13:52:10.069 +0100
    OS Version:      Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Interval Since Last Report:          25598 sec
    Crashes Since Last Report:           13
    Per-App Crashes Since Last Report:   11
    Anonymous UUID:                      6B31F1AB-4004-9D15-8D77-A46DFE8DF8DB
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/../../../MicrosoftCSI.framewo rk/Versions/14/MicrosoftCSI
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib            0x965eca6a __pthread_kill + 10
    1   libsystem_c.dylib                 0x9368bb2f pthread_kill + 101
    2   libsystem_c.dylib                 0x936c2631 abort + 168
    3   libc++abi.dylib                   0x93cbf7e0 abort_message + 151
    4   libc++abi.dylib                   0x93cbd249 default_terminate() + 34
    5   libc++abi.dylib                   0x93cbd289 safe_handler_caller(void (*)()) + 13
    6   libc++abi.dylib                   0x93cbd2f1 std::terminate() + 23
    7   libc++abi.dylib                   0x93cbe3e6 __cxa_throw + 110
    8   com.microsoft.csi_framework       0x06503075 Csi::BeginFinishCsiClientLib() + 524537
    9   com.microsoft.csi_framework       0x06504dc2 Csi::BeginFinishCsiClientLib() + 532038
    10  dyld                              0x8fefccda ImageLoaderMachO::doModInitFunctions(ImageLoader::LinkContext const&) + 230
    11  dyld                              0x8fefcfde ImageLoaderMachO::doInitialization(ImageLoader::LinkContext const&) + 64
    12  dyld                              0x8fef9268 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 356
    13  dyld                              0x8fef91cc ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 200
    14  dyld                              0x8fef91cc ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 200
    15  dyld                              0x8fef90ba ImageLoader::runInitializers(ImageLoader::LinkContext const&, ImageLoader::InitializerTimingList&) + 62
    16  dyld                              0x8feeae05 dyld::initializeMainExecutable() + 211
    17  dyld                              0x8feeeadb dyld::_main(macho_header const*, unsigned long, int, char const**, char const**, char const**, unsigned long*) + 3050
    18  dyld                              0x8feea376 dyldbootstrap::start(macho_header const*, int, char const**, long, macho_header const*, unsigned long*) + 704
    19  dyld                              0x8feea077 _dyld_start + 71
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib            0x965ed9ae kevent + 10
    1   libdispatch.dylib                 0x9389dc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                 0x9389d7a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib            0x965ed0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x9368d0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                 0x9368ce79 _pthread_wqthread + 448
    3   libsystem_c.dylib                 0x93674daa start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib            0x965ed0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x9368d0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                 0x9368ce79 _pthread_wqthread + 448
    3   libsystem_c.dylib                 0x93674daa start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0xbff15634  ecx: 0xbff155ac  edx: 0x965eca6a
      edi: 0xac5b3a28  esi: 0x00000006  ebp: 0xbff155c8  esp: 0xbff155ac
       ss: 0x00000023  efl: 0x00000206  eip: 0x965eca6a   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xac5b8054
    Logical CPU: 0
    Binary Images:
       0xea000 -  0x1e4dff3 +com.microsoft.Word (14.0.0 - 14.0.0) <CAFAB058-3EC0-B31B-D964-F5AEAF1CFF0F> /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/Microsoft Word
    0x2217000 -  0x2230fff +com.microsoft.mbukernel_framework (14.0.0 - 14.0.0) <CB0B3A79-BC3D-2288-502B-C34C74E66953> /Applications/Microsoft Office 2011/*/mbukernel.framework/Versions/14/mbukernel
    0x2245000 -  0x226cfeb +com.microsoft.setupui (14.0.0 - 14.0.0) <47F4D2FA-CC1C-1EF7-1A7C-FC788E45306B> /Applications/Microsoft Office 2011/*/MicrosoftSetupUI.framework/Versions/14/MicrosoftSetupUI
    0x228a000 -  0x24a5fff +com.microsoft.mcp (14.0.0 - 14.0.0) <17CE4C13-7E2B-5228-5828-57648AC2BBF7> /Applications/Microsoft Office 2011/*/MicrosoftComponentPlugin.framework/Versions/14/MicrosoftComponentPlugin
    0x255c000 -  0x25cdfef +com.microsoft.netlib (14.0.0 - 14.0.0) <2F67743A-C388-7BB4-DB47-3FBFB6ABE178> /Applications/Microsoft Office 2011/*/Netlib.framework/Versions/14/Netlib
    0x25e4000 -  0x268affb +com.microsoft.ole (14.0.0 - 14.0.0) <80E188B3-783D-0287-F5D4-8EF036002A43> /Applications/Microsoft Office 2011/*/MicrosoftOLE.framework/Versions/14/MicrosoftOLE
    0x26aa000 -  0x2749fff +com.microsoft.ole_automation (14.0.0 - 14.0.0) <490B77FB-3687-805B-F2FB-A3A036485407> /Applications/Microsoft Office 2011/*/MicrosoftOLEAutomation.framework/Versions/14/MicrosoftOLEAutomation
    0x2778000 -  0x2784feb +com.microsoft.merp (2.2.4 - 2.2.4) <F3EE9FDC-3559-1939-6686-49A7809D4E62> /Applications/Microsoft Office 2011/*/merp.framework/Versions/14/merp
    0x278e000 -  0x2983ff7 +com.microsoft.msxml_library (14.0.0 - 14.0.0) <8D39EFE3-2A3E-E47D-75A0-50021BE39FA6> /Applications/Microsoft Office 2011/*/MSXML.framework/Versions/14/MSXML
    0x29ef000 -  0x310afeb +com.microsoft.office_library (14.0.0 - 14.0.0) <75B13C87-7A76-D9FD-2A73-5DFB8785592A> /Applications/Microsoft Office 2011/*/MicrosoftOffice.framework/Versions/14/MicrosoftOffice
    0x3251000 -  0x40dcff3 +com.microsoft.officeart (14.0.0 - 14.0.0) <CFB46E36-934A-43E0-80E8-15CC09047256> /Applications/Microsoft Office 2011/*/OfficeArt.framework/Versions/14/OfficeArt
    0x4382000 -  0x438cff7 +com.microsoft.oleo (14.0.0 - 14.0.0) <F79D7F77-C341-913E-DE0E-D9D466C4C2AD> /Applications/Microsoft Office 2011/*/MicrosoftOleo.framework/Versions/14/MicrosoftOleo
    0x4394000 -  0x43abff3 +com.microsoft.mathfont (14.0.0 - 14.0.0) <A531311D-04C6-15F9-7BB4-CEAF86C7606E> /Applications/Microsoft Office 2011/*/MicrosoftMathFont.framework/Versions/14/MicrosoftMathFont
    0x43af000 -  0x4827fe7 +com.microsoft.chart (14.0.0 - 14.0.0) <2B54CBC8-6E2C-A675-52B5-00FA17986359> /Applications/Microsoft Office 2011/*/MicrosoftChartPlugin.framework/Versions/14/MicrosoftChartPlugin
    0x4964000 -  0x4aabff7 +com.microsoft.msls3 (14.0.0 - 14.0.0) <6F41B4DE-0329-77F7-D3D7-164858B319D3> /Applications/Microsoft Office 2011/*/MicrosoftPTLS.framework/Versions/14/MicrosoftPTLS
    0x4ab2000 -  0x4ae7ff3 +com.microsoft.msgrlibclient (8.0.0 - 8.0.0) <4927FB87-CE12-B81D-A043-B5436816FDE5> /Applications/Microsoft Office 2011/*/MsgrLibClient.framework/Versions/14/MsgrLibClient
    0x4b07000 -  0x4b49fe7 +com.microsoft.ribbon (14.0.0 - 14.0.0) <20523977-9241-0D23-377F-162FA0F909B9> /Applications/Microsoft Office 2011/*/MBURibbon.framework/Versions/14/MBURibbon
    0x4b6d000 -  0x4bafff7 +com.microsoft.mviewlib (14.0.0 - 14.0.0) <D31CB719-253C-D1DC-E84B-10081DB75305> /Applications/Microsoft Office 2011/*/MViewLib.framework/Versions/14/MViewLib
    0x4bd7000 -  0x4c33ffb +com.microsoft.wlmuser (14.0.0 - 14.0.0) <02031105-A4B6-A686-A184-A20EA2A9B344> /Applications/Microsoft Office 2011/*/WLMUser.framework/Versions/14/WLMUser
    0x4c57000 -  0x4c81fef +com.microsoft.netlib (14.0.0 - 14.0.0) <7C954488-F8EB-51F6-86EC-17646A650EE4> /Applications/Microsoft Office 2011/*/WLMGraphicsDevice.framework/Versions/14/WLMGraphicsDevice
    0x4c9d000 -  0x4cc9ff3 +com.microsoft.netlib (14.0.0 - 14.0.0) <3A810F78-FAD9-4698-C0CF-0E8550BD7FC7> /Applications/Microsoft Office 2011/*/WLMKernel.framework/Versions/14/WLMKernel
    0x4cde000 -  0x586cff3 +com.microsoft.gfx (14.0.0 - 14.0.0) <8B6C1EBD-C7D1-DA9B-45BF-7C27E65C06C5> /Applications/Microsoft Office 2011/*/Gfx.framework/Versions/14/Gfx
    0x58d2000 -  0x5c8cfef +com.microsoft.igx (14.0.0 - 14.0.0) <9DA4006C-C8F6-EB19-A935-81C621418CE8> /Applications/Microsoft Office 2011/*/SmartArt.framework/Versions/14/SmartArt
    0x5d50000 -  0x5db4ff3 +com.microsoft.mbuCloudServices_framework (14.0.0 - 14.0.0) <6C2AD844-0544-D32C-2BA0-B97ECF07E1C0> /Applications/Microsoft Office 2011/*/MicrosoftCloudServices.framework/Versions/14/MicrosoftCloudServices
    0x5dd3000 -  0x5dd7ff3 +com.microsoft.mbustrings (14.0.0 - 14.0.0) <1A188791-7383-6110-E91C-1384D17AA663> /Applications/Microsoft Office 2011/*/mbustrings.framework/Versions/14/mbustrings
    0x5dde000 -  0x5de0fff +com.microsoft.mbulocale (14.0.0 - 14.0.0) <5D387F60-D2B2-9D84-68D7-126C488F3966> /Applications/Microsoft Office 2011/*/mbulocale.framework/Versions/14/mbulocale
    0x5de6000 -  0x5dfbfff +com.microsoft.wlmstrings (14.0.0 - 14.0.0) <542C96FE-CBC5-2ADB-87E9-111D0F7FECF2> /Applications/Microsoft Office 2011/*/wlmstrings.framework/Versions/14/wlmstrings
    0x5e07000 -  0x5e5dfeb +com.microsoft.CocoaUI (14.0.0 - 14.0.0) <D79F50DD-AA9D-FA0B-089F-9668C3D62EC0> /Applications/Microsoft Office 2011/*/CocoaUI.framework/Versions/14/CocoaUI
    0x5e8d000 -  0x5fcafeb +com.microsoft.MicrosoftOfficeDRM (14.0.0 - 14.0.0) <C0FBBD4D-B21E-C0BF-3D65-4235A48B8C46> /Applications/Microsoft Office 2011/*/MicrosoftOfficeDRM.framework/Versions/14/MicrosoftOfficeDRM
    0x5ff5000 -  0x600dfe3 +com.microsoft.threadpool (14.0.0 - 14.0.0) <4C89299A-AECD-4E69-CE08-C4A1DBD3E6E4> /Applications/Microsoft Office 2011/*/ThreadPool.framework/Versions/14/ThreadPool
    0x6019000 -  0x6063fe7 +com.microsoft.menulib (14.0.0 - 14.0.0) <93903FCC-71DA-293E-806B-1FFF43FFD28F> /Applications/Microsoft Office 2011/*/MicrosoftMenuLibrary.framework/Versions/14/MicrosoftMenuLibrary
    0x6079000 -  0x60adfe3 +com.microsoft.urlmon (14.0.0 - 14.0.0) <486DF989-335D-FD28-F769-C75E5CB07E08> /Applications/Microsoft Office 2011/*/StdUrlMoniker.framework/Versions/14/StdUrlMoniker
    0x60ba000 -  0x6111fe7 +com.microsoft.uniscribe_library (14.0.0 - 14.0.0) <B48E8A7D-FADC-7140-E1D8-A060663547CC> /Applications/Microsoft Office 2011/*/Uniscribe.framework/Versions/14/Uniscribe
    0x612a000 -  0x6138ff7 +com.microsoft.mbuinstrument_framework (14.0.0 - 14.0.0) <BC502258-F57F-B03B-F13A-5FE046B73B3D> /Applications/Microsoft Office 2011/*/mbuinstrument.framework/Versions/14/mbuinstrument
    0x6140000 -  0x6150ff7 +com.microsoft.frameworks.wincrypto (14.0.0 - 14.0.0) <094547C9-7DD1-5396-75BA-BBF480945555> /Applications/Microsoft Office 2011/*/WinCrypto.framework/Versions/14/WinCrypto
    0x6157000 -  0x6272ff7 +mbupgx.dylib (14) <26E50DFC-0EFA-76F0-FB25-1EB3655DDEE3> /Applications/Microsoft Office 2011/*/MicrosoftSetupUI.framework/Libraries/mbupgx.dylib
    0x628d000 -  0x6338fff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0x637f000 -  0x6382ff7 +com.microsoft.mbunamedstrings (14.0.0 - 14.0.0) <4F1A0180-A126-7DDB-AB30-9F25CC487C30> /Applications/Microsoft Office 2011/*/mbunamedstrings.framework/Versions/14/mbunamedstrings
    0x638a000 -  0x638bff7 +com.microsoft.CocoaTooltipParser (14.0.0 - 14.0.0) <EDE3D5E7-BAF3-3AC0-1F07-779B12B76DD4> /Applications/Microsoft Office 2011/*/CocoaTooltipParser.framework/Versions/14/CocoaTooltipParser
    0x6392000 -  0x63faff3 +com.microsoft.docex (14.0.0 - 14.0.0) <7E2E7FB8-552E-0DD8-959C-84B79264207D> /Applications/Microsoft Office 2011/*/DocEx.framework/Versions/14/DocEx
    0x640c000 -  0x6424fe3 +com.microsoft.frameworks.winhttp (14.0.0 - 14.0.0) <375A5792-3034-379B-4A75-0FE0C9362C29> /Applications/Microsoft Office 2011/*/WinHttp.framework/Versions/14/WinHttp
    0x6430000 -  0x643bff7 +com.microsoft.credui_framework (14.0.0 - 14.0.0) <F5CFB3C7-00B9-285B-C4AC-222DF70EDF24> /Applications/Microsoft Office 2011/*/MicrosoftCredui.framework/Versions/14/MicrosoftCredui
    0x6445000 -  0x6445fff +com.microsoft.ddcs_framework (14.0.0 - 14.0.0) <82E1FD42-B048-97E5-4DAF-E1BA9FA12DBB> /Applications/Microsoft Office 2011/*/MicrosoftDDCS.framework/Versions/14/MicrosoftDDCS
    0x644a000 -  0x6454fe3 +com.microsoft.frameworks.winapiui (14.0.0 - 14.0.0) <04AD88BD-3E35-0224-4472-6D0937162E4B> /Applications/Microsoft Office 2011/*/WinAPIUI.framework/Versions/14/WinAPIUI
    0x645d000 -  0x6917fe7 +com.microsoft.csi_framework (14.0.0 - 14.0.0) <1AA2E761-7DB9-1F42-3FD9-A0D9B69735E1> /Applications/Microsoft Office 2011/*/MicrosoftCSI.framework/Versions/14/MicrosoftCSI
    0x69e4000 -  0x6ae2fef +com.microsoft.metex (14.0.0 - 14.0.0) <BF9B3355-5BC6-10EB-BDF3-CF3D91C2015D> /Applications/Microsoft Office 2011/*/MetEx.framework/Versions/14/MetEx
    0x6b2c000 -  0x6d89ffb +com.microsoft.XPG (14.0.0 - 14.0.0) <B6C105B5-AF72-4D05-72E6-14A3C9DE4AAA> /Applications/Microsoft Office 2011/*/XPG.framework/Versions/14/XPG
    0x6db7000 -  0x6dbdfe7 +com.microsoft.mbufs (14.0.0 - 14.0.0) <D535B4BC-ACBC-C4DE-8936-4386BFBDF874> /Applications/Microsoft Office 2011/*/MicrosoftFS.framework/Versions/14/MicrosoftFS
    0x6dc5000 -  0x6dd4fe7 +com.microsoft.wlmfile_framework (14.0.0 - 14.0.0) <FAC22A8B-4754-E125-C4C2-EFA9B83075DB> /Applications/Microsoft Office 2011/*/MicrosoftWlmFile.framework/Versions/14/MicrosoftWlmFile
    0x6ddd000 -  0x6e7fff3 +com.microsoft.webservices_framework (14.0.0 - 14.0.0) <CB99BA7C-B8AE-49EA-786C-66BFE6B96963> /Applications/Microsoft Office 2011/*/MicrosoftWebServices.framework/Versions/14/MicrosoftWebServices
    0x6e97000 -  0x6fe3feb +com.microsoft.Oimg (14.0.0 - 14.0.0) <EC0E166E-5EF7-E806-4E20-533072944B68> /Applications/Microsoft Office 2011/*/Oimg.framework/Versions/14/Oimg
    0x8fee9000 - 0x8ff1be57  dyld (210.2.3) <4D38DEED-9837-3202-B8E9-41272D01EA2C> /usr/lib/dyld
    0x90007000 - 0x90008fff  libsystem_sandbox.dylib (220.3) <C532F6A6-7E85-38F3-8660-EC1066DF67BE> /usr/lib/system/libsystem_sandbox.dylib
    0x90009000 - 0x90063fff  com.apple.Symbolication (1.3 - 93) <227F64A9-FC28-3680-BE92-FFAE86FD4866> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x900a4000 - 0x900dffef  libGLImage.dylib (8.10.1) <E29ED217-09B3-3436-A961-B6F8EBAA7BED> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x900ea000 - 0x900ebfff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x900ec000 - 0x900ecfff  com.apple.vecLib (3.8 - vecLib 3.8) <2D2064EB-FDD5-38AB-B722-4AFA4C6EE0C9> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x900ed000 - 0x9014ffff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x90150000 - 0x90150fff  libSystem.B.dylib (169.3) <0A82D354-A1B4-3F3E-8C7E-5047C38D4668> /usr/lib/libSystem.B.dylib
    0x90151000 - 0x90158fff  libsystem_dnssd.dylib (379.38.1) <4F164CA8-4A4F-3B27-B88A-0926E2FEB7D4> /usr/lib/system/libsystem_dnssd.dylib
    0x90159000 - 0x9015dfff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9015e000 - 0x9031affd  libicucore.A.dylib (491.11.3) <FF55E176-7D66-3DBB-AF86-84744C47A02C> /usr/lib/libicucore.A.dylib
    0x9031b000 - 0x90324ff9  com.apple.CommonAuth (3.0 - 2.0) <B28B58CA-C5B1-378E-A969-6A36C7F754D1> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x90325000 - 0x90374ff6  libTIFF.dylib (851) <CC0B94FF-DE56-3CE4-AF93-BCA00C03924B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90375000 - 0x9040dfff  com.apple.CoreServices.OSServices (557.6 - 557.6) <BE4B0D48-1239-3B9B-9905-551336777F09> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9040e000 - 0x9072eff3  com.apple.Foundation (6.8 - 945.18) <BDC56A93-45C5-3459-B307-65A1CCE702C5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9072f000 - 0x907cfff7  com.apple.QD (3.42.1 - 285.1) <BAAC13D2-1312-33C0-A255-FAB1D314C324> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x907d0000 - 0x908c1ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x908c2000 - 0x90d04ff7  com.apple.CoreGraphics (1.600.0 - 333.1) <76C4858B-AD0A-3165-A65D-64729D6F186C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90d05000 - 0x90d5efff  com.apple.QuickLookFramework (4.0 - 555.5) <4E381B7B-7EB5-37FD-9BA7-517DB48D07A7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90d5f000 - 0x90d72ff9  com.apple.MultitouchSupport.framework (237.4 - 237.4) <59197044-E513-3223-9337-6EB0F828CB82> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x90d73000 - 0x90d73ffd  libOpenScriptingUtil.dylib (148.3) <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
    0x90d74000 - 0x90e28fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90e29000 - 0x910a5ff7  com.apple.QuickTime (7.7.1 - 2599.41) <D01684A3-7360-3CE7-B886-DDFDE1BAEA78> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x910a6000 - 0x910afffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x910f5000 - 0x91190fff  com.apple.CoreSymbolication (3.0 - 117) <9ECC6770-6FBB-36B3-A4EE-0B60875019A9> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x91191000 - 0x91193ffb  libRadiance.dylib (851) <2739A726-2E9C-38DC-8A6E-412ABDC14405> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x9119a000 - 0x9119efff  com.apple.IOSurface (86.0.4 - 86.0.4) <6431ACB6-561B-314F-9A2A-FAC1578FCC86> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9119f000 - 0x911a7fff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x911a8000 - 0x911acffc  libGIF.dylib (851) <4821D945-2E32-3007-8E97-4A69807046FF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x911ad000 - 0x911b6fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <89822A83-B450-3363-8E9C-9B80CB4450B1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x911b7000 - 0x911b7fff  com.apple.quartzframework (1.5 - 1.5) <9018BE5B-4070-320E-8091-6584CC17F798> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9120f000 - 0x91226fff  com.apple.GenerationalStorage (1.1 - 132.3) <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9122b000 - 0x914ceff3  com.apple.CoreImage (8.4.0 - 1.0.1) <C25B9EEC-4824-3088-BC08-2EA516C0728C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x914cf000 - 0x914d3fff  com.apple.OpenDirectory (10.8 - 151.10) <B9244697-CB05-3BD3-80A7-D188B3747B03> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x914d4000 - 0x91520fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x91521000 - 0x9163dffb  com.apple.desktopservices (1.7.4 - 1.7.4) <782D711D-7930-324A-9015-686C2F86DBA3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x91645000 - 0x91674ff7  com.apple.securityinterface (6.0 - 55024.4) <7C5E28DC-F8BE-3238-883F-E1646A2AF895> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91675000 - 0x916faff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91ea5000 - 0x91ea5fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x91ea6000 - 0x91f38ffb  libvMisc.dylib (380.10) <D9567F48-ED35-3362-B769-50916D30C601> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91f39000 - 0x91fb4ff3  com.apple.CorePDF (2.2 - 2.2) <5A52A1CF-4801-3E6C-BF6E-E5E75A8DBD8F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x91fdb000 - 0x91fdbfff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9285a000 - 0x92869fff  libGL.dylib (8.10.1) <74BE67B7-9EA0-3F16-B43B-48CB92C9ED27> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9286a000 - 0x9286dff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x9286e000 - 0x928d2ff7  com.apple.datadetectorscore (4.1 - 269.3) <C11C2014-298E-3E2B-9F5D-02CCD3CA4AB3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x928d3000 - 0x92cf0fff  FaceCoreLight (2.4.1) <B12C8721-EFB3-30A2-9A1B-ABCDF5670764> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x92f73000 - 0x92fd9ffc  com.apple.ISSupport (1.9.8 - 56) <D2AC4E10-0B3C-3194-AEB7-1E9964CBC0D0> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x92fda000 - 0x930c3ff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x930c4000 - 0x931f7ff3  com.apple.MediaControlSender (1.7 - 170.20) <7B1AC317-AFDB-394F-8026-9561930E696B> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x931f8000 - 0x93333ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x93334000 - 0x9333afff  libGFXShared.dylib (8.10.1) <99622AD6-7A1D-368E-B163-A38400885B45> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9333b000 - 0x93350fff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93351000 - 0x93393fff  libauto.dylib (185.4) <3098A75E-438E-3F18-BAAC-CD8F1CC7C2F7> /usr/lib/libauto.dylib
    0x93394000 - 0x93475fff  libcrypto.0.9.8.dylib (47.2) <6170B3CB-FA94-3601-A7F7-7F1B953C4F59> /usr/lib/libcrypto.0.9.8.dylib
    0x93476000 - 0x934d0ff3  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <6313E06F-37FD-3606-BF2F-87D8598A9983> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x934d1000 - 0x934d4ff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x934d5000 - 0x93502ffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x93503000 - 0x93513ff7  libsasl2.2.dylib (166) <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
    0x93516000 - 0x93673ffb  com.apple.QTKit (7.7.1 - 2599.41) <9514F791-9ED4-3C00-84F7-D87B5FB254FF> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x93674000 - 0x93731ffb  libsystem_c.dylib (825.40.1) <A5C0B70C-5F14-3BF8-AA5B-B22E7B12A4AE> /usr/lib/system/libsystem_c.dylib
    0x93732000 - 0x93732ffe  com.apple.AOSMigrate (1.0 - 1) <4EA0829E-6AE5-3877-A5B6-032AFDF28D39> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x93733000 - 0x9388cffb  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <461C4CCD-5F52-3D2F-AE22-D0CA7EF3F01A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9388d000 - 0x9388dfff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x93899000 - 0x938abff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x938ac000 - 0x938acfff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x938ad000 - 0x938bbff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x938bc000 - 0x938f1ff7  com.apple.framework.internetaccounts (2.1 - 210) <553BF1E7-B26F-3BE7-BAA9-D80E53E73B0D> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x938f2000 - 0x938feffa  com.apple.CrashReporterSupport (10.8.3 - 418) <03BC564E-35FE-384E-87D6-6E0C55DF16E3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x938ff000 - 0x93924ffb  com.apple.framework.familycontrols (4.1 - 410) <B1755756-BEA2-3205-ADAA-68FCC32E60BD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x93925000 - 0x93944ff3  com.apple.Ubiquity (1.2 - 243.15) <E10A2937-D671-3D14-AF8D-BA25E601F458> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x93947000 - 0x93959fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x939fc000 - 0x93a03fff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x93a04000 - 0x93c5dff5  com.apple.JavaScriptCore (8536 - 8536.30) <24A2ACA7-6E51-30C6-B9AE-17A77E511735> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93c5e000 - 0x93ca5ff7  com.apple.framework.CoreWiFi (1.3 - 130.13) <1961CC70-C00D-31DE-BAB5-A077538CD5CB> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x93ca6000 - 0x93cb4fff  com.apple.opengl (1.8.10 - 1.8.10) <385E048A-FFB2-348A-8F80-572C2494A776> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93cb5000 - 0x93cbbfff  com.apple.phonenumbers (1.1 - 47) <DD22B3D1-DA4B-3794-9D73-E90D49A1F88E> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x93cbc000 - 0x93cdefff  libc++abi.dylib (26) <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
    0x93cdf000 - 0x93ce6ff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x93ce7000 - 0x93d2bff7  libGLU.dylib (8.10.1) <5520818E-F290-3942-80B8-370CF9C9B54C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93da9000 - 0x93dc6fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x93dc7000 - 0x93ed4ff3  com.apple.ImageIO.framework (3.2.2 - 851) <36EEBDDC-0619-327E-826F-4413217C9D21> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x93ed5000 - 0x93ef2ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x93f33000 - 0x93f7aff3  com.apple.CoreMedia (1.0 - 926.106) <B1999B3E-F0D3-34CB-A2E7-08CE45B744D9> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x93fac000 - 0x93fc3ff4  com.apple.CoreMediaAuthoring (2.1 - 914) <DE0D100E-96AA-3E85-AFB0-43832E9B4C54> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x93fc4000 - 0x93fc5fff  libremovefile.dylib (23.2) <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x93ff2000 - 0x93ffdffb  com.apple.DirectoryService.Framework (10.8 - 151.10) <ABBD7712-B220-36FC-90FE-0C19D02D21C4> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x94088000 - 0x940bdff5  libssl.0.9.8.dylib (47.2) <A0802BCF-121C-39C8-8712-B8E90ABDF502> /usr/lib/libssl.0.9.8.dylib
    0x940be000 - 0x940befff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <E54083A7-7467-3C3C-B30F-EE14C8D781A1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x940bf000 - 0x940c1ffd  libCVMSPluginSupport.dylib (8.10.1) <F7CD59FE-314A-366E-9A27-CE5BD1D438BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x940c2000 - 0x94119ff3  com.apple.HIServices (1.20 - 417) <B8410ABC-E0DB-31EB-B923-17F3B65B5F4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9411a000 - 0x9417bff7  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <C1D471E9-B4D6-3A59-975C-B3B3A25E6058> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9417c000 - 0x941c4ff5  com.apple.opencl (2.2.19 - 2.2.19) <968DD067-49D0-3B71-A96B-B3579698D992> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x941c9000 - 0x941d5ff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x942d4000 - 0x94307ff3  com.apple.GSS (3.0 - 2.0) <EFFA5947-B6BA-3171-B667-9CCB17E0FF2A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x94308000 - 0x945a2ff7  com.apple.AddressBook.framework (7.1 - 1170) <9A7DDF7F-5081-3708-8965-E564953EEE39> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x945a3000 - 0x945bcffb  com.apple.frameworks.preferencepanes (15.1 - 15.1) <D788C8BE-5A13-3EA3-93FA-9B5CEEFE249B> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x945bd000 - 0x947a5ffb  com.apple.CoreFoundation (6.8 - 744.19) <DDD3AA21-5B5F-3D8F-B137-AD95FCA89064> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x947a6000 - 0x94b5effa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x94b5f000 - 0x94b63ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x94b64000 - 0x94bb2ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <15B4EFFC-22D1-3517-BE8C-7947DAA24729> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x94bfa000 - 0x94c26ff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x94c27000 - 0x94f13fff  com.apple.AOSKit (1.051 - 152.4) <31156351-70C4-381A-810D-8E5A937EF95C> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
    0x94f14000 - 0x9502cff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x9502d000 - 0x95037ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x9507f000 - 0x9509bfff  libPng.dylib (851) <8814CC4D-A472-32CD-8D5C-24F35240F28B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9509c000 - 0x9509cffd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <CFAAB1B1-DBC7-3FF1-97BA-065C6620360D> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9509d000 - 0x951ebffb  com.apple.CFNetwork (596.5 - 596.5) <E2EE5B64-4DFD-3D5E-BB38-9DD0899FFB42> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x951ec000 - 0x9520cffd  com.apple.ChunkingLibrary (2.0 - 133.3) <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x9520d000 - 0x95268fff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x95269000 - 0x952b9ff7  com.apple.CoreMediaIO (309.0 - 4163.1) <2CB854AA-072B-3829-B7D9-133CFEC6272F> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x952ba000 - 0x95322ff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <230C6EEC-A926-3720-82DB-25D0FAAEF962> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x95323000 - 0x9553afff  com.apple.CoreData (106.1 - 407.7) <EC4B8297-8E01-3778-A8A4-E8747F91109D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9553b000 - 0x95547ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x95548000 - 0x955c4ff3  com.apple.Metadata (10.7.0 - 707.12) <D9221655-56FE-332C-82FF-0CA7EDD521C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x955c5000 - 0x95699ff3  com.apple.backup.framework (1.4.3 - 1.4.3) <6EA22ED3-BA18-3A37-AE05-5D6FDA3F372F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9569a000 - 0x9569dffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x963d7000 - 0x963f5ff3  com.apple.openscripting (1.3.6 - 148.3) <F3422C02-5ACB-343A-987B-A2D58EA2F5A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96437000 - 0x964b1ff7  com.apple.securityfoundation (6.0 - 55115.4) <4843FAEA-8161-34B3-A1F1-720154884E34> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x964b2000 - 0x96561ff7  com.apple.CoreText (260.0 - 275.17) <433387A6-69C1-32A5-9B61-9E2F6A5F9040> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x96562000 - 0x965b9ff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x965ba000 - 0x965d3fff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x965d4000 - 0x965d7ff3  com.apple.AppleSystemInfo (2.0 - 2) <4639D755-8A68-31C9-95C4-7E7F70C233FA> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x965d8000 - 0x965f2ffc  libsystem_kernel.dylib (2050.48.12) <9B50E922-DCEA-3066-A9B2-613A6D2C5C69> /usr/lib/system/libsystem_kernel.dylib
    0x965f3000 - 0x965fcfff  com.apple.CommerceCore (1.0 - 26.2) <B05709DD-3755-3635-B0CC-6CBBD17CFBD5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x965fd000 - 0x96661ff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x96662000 - 0x966bdff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <3C43A555-0A22-3D7C-A3FB-CFADDDA43E9B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x966be000 - 0x966c1fff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x966cd000 - 0x966cdfff  com.apple.Carbon (154 - 155) <17F1B675-E054-3D2C-900B-C9CE69F1FC31> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x966ce000 - 0x96743ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BEE998BC-E4A5-3BA0-A6B5-31A1DFA1522C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96744000 - 0x96752ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x96753000 - 0x96763ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96764000 - 0x9676efff  com.apple.DisplayServicesFW (2.7.2 - 357) <5042CDAE-5580-3204-B675-745DA083E7AA> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9676f000 - 0x96798fff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x96799000 - 0x967dbffb  com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x967dc000 - 0x967e2fff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x967e3000 - 0x9684afe7  libvDSP.dylib (380.10) <A9BB03FC-F70B-388F-8917-F8CE69F2164A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9684b000 - 0x96b0bff3  com.apple.security (7.0 - 55179.13) <000FD8E9-D070-326A-B386-51314360FD5C> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x96b0c000 - 0x96b0dffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x96b0e000 - 0x96b44ffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x96b45000 - 0x96b53fff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x96c65000 - 0x96c65fff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96c66000 - 0x96cc0ffb  com.apple.AE (645.6 - 645.6) <44556FF7-A869-399A-AEBB-F4E9263D9152> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x96cc1000 - 0x96ef1fff  com.apple.QuartzComposer (5.1 - 287.1) <6C0C66F9-BC18-3216-88CC-BAE86937448B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x96ef2000 - 0x96f37ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x96f38000 - 0x96f3fffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x96f40000 - 0x96f4afff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x96f4b000 - 0x96f4effc  libCoreVMClient.dylib (32.5) <CA150AC5-F98C-3F96-8B11-715B75A89C80> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x96f4f000 - 0x971bcffb  com.apple.imageKit (2.2 - 673) <CDB2AC11-6D60-34A7-83F9-F6E7DA25F97B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x971bd000 - 0x971c7fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x971c8000 - 0x97d84ff3  com.apple.AppKit (6.8 - 1187.40) <94E92235-7AD9-37EF-9B7C-B79074762370> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x97d85000 - 0x97f0eff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x97f0f000 - 0x97f18ffe  com.apple.aps.framework (3.0 - 3.0) <26A02202-9CCA-37A5-AD26-234F55D51471> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x97f19000 - 0x981c7ffb  com.apple.MediaToolbox (1.0 - 926.106) <37A0FC0E-9BC6-3B6B-9F06-489813758F67> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x981c8000 - 0x982d3ff7  libJP2.dylib (851) <0D40428F-B7BE-307B-BEDB-256A7FED9804> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x982d4000 - 0x982f1fff  libxpc.dylib (140.43) <C628073D-51A0-3541-A665-1121520508C6> /usr/lib/system/libxpc.dylib
    0x982f2000 - 0x983e6ff3  com.apple.QuickLookUIFramework (4.0 - 555.5) <5A62C87F-5F74-380B-8B86-8CE3D8788603> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x983e7000 - 0x983f4ff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x983f5000 - 0x9841aff7  com.apple.CoreVideo (1.8 - 99.4) <A26DE896-32E0-3D5E-BA89-02AD23FA96B3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9841b000 - 0x9843ffff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x98490000 - 0x98491fff  libquarantine.dylib (52.1) <094A1501-373E-3397-B632-8F7C5AC8EFD5> /usr/lib/system/libquarantine.dylib
    0x98492000 - 0x98939ffb  com.apple.CoreAUC (6.22.03 - 6.22.03) <054DADA8-A077-3BF0-8BEA-C568E7360E75> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9893a000 - 0x98a47057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x98b00000 - 0x98b0bfff  libcommonCrypto.dylib (60027) <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9> /usr/lib/system/libcommonCrypto.dylib
    0x98b39000 - 0x98bd6ff7  com.apple.PDFKit (2.8.5 - 2.8.5) <F5D6A1C9-3EC1-312C-839F-6C13708B2CF2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x98bd7000 - 0x98c08fff  com.apple.DictionaryServices (1.2 - 184.4) <A31BB2CE-6965-3610-8B11-EA26EC6D7EEA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x98c09000 - 0x98c6ffff  com.apple.print.framework.PrintCore (8.3 - 387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x98c70000 - 0x9906cfeb  com.apple.VideoToolbox (1.0 - 926.106) <C1A411F0-7B7E-3669-83E5-FAEF2BAA8949> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x9906d000 - 0x990dcffb  com.apple.Heimdal (3.0 - 2.0) <C007CED7-DDC9-3BA1-8077-294FAE9C78D5> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x990dd000 - 0x9911fff7  libcups.2.dylib (327.7) <6FAC537D-7EC3-3E82-B6E8-F87DE07546B5> /usr/lib/libcups.2.dylib
    0x99120000 - 0x99120fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <D4F5AB2C-0727-39FD-8EE9-E4DD3D78EB2E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x99121000 - 0x9912dffe  libkxld.dylib (2050.48.12) <44C8E278-D8CA-3CF4-B3F4-0299654EB341> /usr/lib/system/libkxld.dylib
    0x9912e000 - 0x9916dff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9916e000 - 0x99175ffe  com.apple.agl (3.2.1 - AGL-3.2.1) <F13F8669-5FC5-386C-9100-523D2BBF23CE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x99176000 - 0x99177fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x99216000 - 0x99217ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x992ef000 - 0x992f3ffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x992f4000 - 0x9933eff7  com.apple.framework.CoreWLAN (3.4 - 340.18) <A874C0A7-9CE0-3434-A38D-7EE61AD35DD7> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x9933f000 - 0x99341fff  com.apple.securityhi (4.0 - 55002) <F95F4BF5-2290-3CC4-A37A-4852F0AE6FAE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x99342000 - 0x99367ff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <F6A88D89-AB4A-3217-9D65-C2C259B5F09B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x99368000 - 0x99426ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x99427000 - 0x9959fff5  com.apple.QuartzCore (1.8 - 304.3) <F2EFC117-CDC6-3252-A4A8-880965764385> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x995a0000 - 0x99983fff  com.apple.HIToolbox (2.0 - 626.1) <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x99cfd000 - 0x99d4bffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x99d4c000 - 0x99d83ffa  com.apple.LDAPFramework (2.4.28 - 194.5) <F05946C0-D3BE-379A-A00E-D2BA6B4EE48D> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x99dc7000 - 0x99debfff  libJPEG.dylib (851) <2425AE18-C181-3371-922F-4A09C1AC71CD> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x99dec000 - 0x99dedfff  libdnsinfo.dylib (453.19) <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x99dee000 - 0x99eecff7  libFontParser.dylib (84.6) <7D3EB3CC-527E-3A74-816A-59CAFD2260A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x99eed000 - 0x99f84ff7  com.apple.ink.framework (10.8.2 - 150) <A9C3B735-7D5F-3D7D-AA70-2CC852D09CDE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x99f85000 - 0x99f9bfff  com.apple.CFOpenDirectory (10.8 - 151.10) <CDA91E5D-6F99-3001-BD31-82585FCF5CA2> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x99f9c000 - 0x99fb1fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x99fb2000 - 0x9a05cfff  com.apple.LaunchServices (539.9 - 539.9) <C0E0CFFF-3714-3467-87DA-4A6F0AF1953B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9a08d000 - 0x9a392ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <4DB4B0C9-1377-3062-BE0E-CD3326ACDAF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9a393000 - 0x9a48bff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x9a48c000 - 0x9a48efff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x9a48f000 - 0x9a4baff9  com.apple.framework.Apple80211 (8.5 - 850.252) <74845A5A-3660-3B50-BDB3-334275E0B461> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        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: 887
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=255.1M resident=95.8M(38%) swapped_out_or_unallocated=159.3M(62%)
    Writable regions: Total=54.7M written=1268K(2%) resident=2096K(4%) swapped_out=0K(0%) unallocated=52.7M(96%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    MALLOC                             43.3M
    MALLOC guard page                    48K
    Memory tag=35                      3868K
    Stack                              65.5M
    VM_ALLOCATE                         940K
    __DATA                             13.2M
    __DATA/__OBJC                       400K
    __IMAGE                             528K
    __IMPORT                              4K
    __LINKEDIT                         39.6M
    __OBJC                             2868K
    __OBJC/__DATA                       120K
    __PAGEZERO                            4K
    __TEXT                            215.5M
    __UNICODE                           544K
    mapped file                        44.9M
    shared memory                        12K
    ===========                      =======
    TOTAL                             431.1M
    Model: MacBookPro10,1, BootROM MBP101.00EE.B03, 4 processors, Intel Core i7, 2.4 GHz, 8 GB, SMC 2.3f36
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 512 MB
    Graphics: NVIDIA GeForce GT 650M, NVIDIA GeForce GT 650M, PCIe, 1024 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533642465238432D50422020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533642465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xEF), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f2 12718, 3 service, 21 devices, 3 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SD256E, 251 GB
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8510, 0x1a110000 / 3
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2512, 0x1d180000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0263, 0x1d182000 / 5
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8286, 0x1d181300 / 8

    I may have a solution:
    I was able to boot from my LaCie FireWire 800 hard drive backup. This was my daily backup so the data was only a few hours old. That told me I did not have on motherboard issue – thank you very much who's ever out there looking over my shoulder.
    I then removed both internal drives and was able to power cycle the SSD drive via my PowerBook G4 from February 2005 thank you very much PowerBook G4.
    After booting several times from the FireWire drive (to test that the external drives which used to be the internal drives were actually visible and they were), I then reinstalled the 2 internal drives but not before totally reformatting the SSD drive. For at least the third time in the last five years my daily and weekly backups along with the program superduper have saved my buttinsky...
    At this time some 100 Gb of my 326 on my SSD is copied over. I realize I am not out of the woods yet because after fully copying all the data I have to be able to boot from that SSD drive in the main compartment.
    And I really think this was nothing more than me deleting invisible files on the main hard drive thinking that this was just some maintenance task that I could do and instead I totally corrupted the SSD.
    I will post this now and I'm probably 2 to 4 hours away from having everything copied over and then seeing if it actually boots and works.  I'll post back then or if it's too late here in Belgium then tomorrow.
    What I've realized is that it's great to have backups and also great to have an eight-year-old PowerBook G4 but I'm definitely going to need a fully backed up recent Mac in case this would ever happen again.  It's an expensive route to go but better than recovering from another heart attack well another one I guess I had one today I'm not sure.

  • Live account corrupt

    Hello,
       I have a question about a corrupt user profile in Windows 8.1.  Unfortunately it is now no longer on just one machine, but on 3.  I know how to fix a local account in Windows 8.1, as that is the same process for Windows XP - 7. 
    How do I go about fixing a Microsoft Live account thought that has become corrupted on more than one computer?
    Michael R. Mastro II

    Well over half of the programs I use do not work.  I click on the link from the start menu and it will not load up, for instance I click on Microsoft Word, nothing happens.  Now if I go into the folder via Explorer I can launch Word perfectly
    fine.  If I put a CD in my computer to listen to music, it brings up the XBox Music app (which is not the default), and says I need to sign in to use the app.  Unfortunately the sign in does not work and it says it cannot connect to the XBox service. 
    The default setting for a CD is Windows Media Player, I checked after it brought up the XBox Music App.  Also all games that are tied to the XBox service, will not work, they crash to the desktop immediately.  I have brought this up on the XBox
    forums, but it landed on deaf ears since no one will reply to this in over a month (That is great customer service).  Now on all my computers I have a separate local account I use as an Administrator, but the Microsoft account also has Administrator privileges. 
    When ever I install a program I allow it for everyone to use.  Now if I go to my local account, everything works perfectly fine.  Word will load the moment I click on it, I put in a CD and Windows Media Player comes up, since it can't use the XBox
    service.  I went in on the live account and verified that the start menu links point to the programs (like Word), and they do.  So the Live account must be corrupted in some form.  This is completely annoying to have to go through the extra
    steps to get a program to launch, I feel like I am back in the Windows 3.1 days.
    Michael R. Mastro II

  • Incorrect password error on local account - can't log in

    Yesterday I set-up my father's new Toshiba Satellite C55-B5300. I set the computer up with a local account rather then a Microsoft Live. 
    After the first restart and trying to log on today, I was unable to access the account. When entering the password I instantly got "The password is incorrect. Try again." I checked to make sure the password was correct. Made sure caps lock was disabled
    and used the preview option to see I was typing in correctly. I must have tried enter the password 50 times and then finally it logged in.
    Once logged in, using the command prompt, I opened "netplwiz" and unchecked the option for the user to require a password. I then restarted the computer. Upon restart it instantly went to "Welcome" with the loading circle, but quickly came
    back with the incorrect password error.
    On this attempt to log in, I've tried typing the password over and over. Sometimes it will instantly give me the error and sometimes it goes to the welcome with loading circle before eventually giving me the password error. 
    I have no idea how I got logged in the first time and now I have no idea how to get back in.

    Hi,
    According to your description ,it seems that the machine is stuck in the login interface.
    I recommend you to get into the advanced startup option to solve this issue.
    To get into the advanced startup option:
    Keep press Shift and choose the restart option from the power icon.
    1.Choose Automatic Repair to repair the machine
    Troubleshoot \Advanced options \Automatic Repair
    2.If #1 won`t help ,considering this issue happened after the reinstallation,it may be caused by the corrupt installation.I recommend you to reinstall the machine again . 
    Best regards

  • Local account couldn't be established

    I just got a new laptop with Windows 8.1.  When I was setting it, I was forced to sign into Microsoft account. When I tried to change to local account it says because of some problem it can't be changed to local account with code 0x 80004005

    Samjha,
    Welcome to the HP Forum.
    Generally, as you may have found by now, the error might be "access denied - insufficient privilege".
    Reference:
    How to Fix 0x 80004005 Error
    You will have to track down and resolve the particular reason you do not have control over the account.
    Commentary:
    I do NOT recommend that you use any kind of a Registry Cleaner on Windows 8.  You are, of course, your own administrator; you must make that decision for yourself.
    ===========================================================================
    A Suggested workaround:
    Have you tried creating an additional account on the computer - "local account" ?
    It is a good idea to have an extra admin account on the computer -- it allows you another way to access your computer in the event that your main account is locked up, corrupted, or temporarily unavailable.
    You must remember to add any additional accounts to File History backups to protect the account contents.
    Open the file > Click on Download > Click “Open in Adobe Reader”
    Create a User Account with Administrative Privileges – Windows 8-8.1
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    HP will never call you on the phone and ask for money to 'keep your PC safe'.
    Say “No, thank you,” and hang up!
    Cybercriminals might call you on the telephone and claim to be from Microsoft.
    See: Microsoft Safety & Security Center
    Mark my answer “Accept as Solution” when it provides a solution or workaround!
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Click the Kudos Thumbs-Up!
    It is a nice way to say “Thank You" for the help.
    Although I strive to reflect HP's best practices, I do not work for HP. 
    Kind Regards,
    Dragon-Fur

  • Windows 8 Sysprep - Can't skip local account creation and autologon fails, wrong admin password.

    Using Windows 8 x64 Enterprise, Sysprep pauses to ask me to create a local user, which I don't want.
    If I enable SkipSystemOOBE and SkipUserOOBE in OOBE under Microsoft-Windows-Shell-Setup sysprep (in oobe mode) will skip user creation and autologon works.  But it only works correctly once.  If I run sysprep again, when it tries to autologon
    it will say that I have the wrong password for the local account.  After I type in the password manually it works.  If I use the same password for the local administrator account as for the autologon account, it looks to have the encrypted password
    twice with an equal sign after it.
    What I need to know:
    How to skip local user account creation (we run on a domain but I have it connect through scripts later)
    How to fix the autologon issue
    Do I need the local administrator account enabled for this to work?
    I have my unattend.xml file attached.
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="oobeSystem">
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <AutoLogon>
    <Password>
    <Value>[removed]</Value>
    <PlainText>false</PlainText>
    </Password>
    <Username>[removed]</Username>
    <LogonCount>2</LogonCount>
    <Enabled>true</Enabled>
    </AutoLogon>
    <FirstLogonCommands>
    <SynchronousCommand wcm:action="add">
    <Order>1</Order>
    <CommandLine>c:\folder\abatchfile.bat</CommandLine>
    <RequiresUserInput>false</RequiresUserInput>
    </SynchronousCommand>
    </FirstLogonCommands>
    <OOBE>
    <HideEULAPage>true</HideEULAPage>
    <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
    <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
    <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
    <NetworkLocation>Work</NetworkLocation>
    <HideLocalAccountScreen>true</HideLocalAccountScreen>
    <ProtectYourPC>3</ProtectYourPC>
    </OOBE>
    <TimeZone>Eastern Standard Time</TimeZone>
    <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
    <RegisteredOrganization>Company Name</RegisteredOrganization>
    <RegisteredOwner>CompanyName</RegisteredOwner>
    </component>
    <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <UserLocale>en-US</UserLocale>
    <UILanguage>en-US</UILanguage>
    <SystemLocale>en-US</SystemLocale>
    <InputLocale>en-US</InputLocale>
    </component>
    </settings>
    <settings pass="specialize">
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <ComputerName>*</ComputerName>
    </component>
    </settings>
    <cpi:offlineImage cpi:source="wim:[removed]/sources/install.wim#Windows 8 Enterprise" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>

    The user accounts-creation page in Windows Welcome is suppressed if a user or a group is added to a local security group. Add a user or a group to a local security group by doing one of the following:
    Create a local user.
    Add a domain user to a local security group with the Microsoft-Windows-Shell-Setup | UserAccounts unattended installation setting.
    To suppress the user accounts-creation page in Windows Welcome, without creating a local user, use one of the following workarounds:
    Workaround 1
    If the computer is already joined to a domain, use the following XML example to add the Domain Users security group to the Local Users security group.
    <DomainAccounts>
     <DomainAccountList wcm:action="add">
      <DomainAccount wcm:action="add">
      <Group>Users</Group>
      <Name>Domain Users</Name>
      </DomainAccount>
      <Domain>FabrikamDomain</Domain>
      </DomainAccountList>
    </DomainAccounts>
    Because joining a domain automatically adds the Domain Users security group to the Local Users security group, the DomainAccounts command does not affect the membership of the Local Users group. However, using this XML example to join a domain will also suppress
    the user accounts-creation page in Windows Welcome.
    Workaround 2
    Use the Sysprep/Quit command to set the following registry value to 1:
    HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\OOBE\UnattendCreatedUser
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • How can I install WebOfTrust for a local account and save the profile so that it transfers to domain accounts that log on to that specific computer?

    We are creating images through ghost server to clone onto several laptops and one of the features we need to have configured is the Web of Trust extension in Firefox. I have configured a local account on the machine and set up Web of Trust and then copied the profile image in regedit to the default profile image and saved this. WOT works for local accounts but whenever I try domain accounts, Web of Trust needs to be disabled and re-enabled.

    Try using Web of Trust support:
    http://www.mywot.com/en/support
    Or post in their user support forum:
    http://www.mywot.com/en/forum

  • How do I create a local account from a network login from the command line?

    I am connecting to my organization's domain using 3rd party software which doesn't allow for using the GUI for creating local accounts.  How can I do this through the command line or is there a better way to script it?  Thanks in advance!

    What you're looking for, I think, is mobile accounts with portable home directories.
    Portable Home Directories in 10.8...: Apple Support Communities
    Configuring OS X Server 10.8 – Open Directory and PHD

  • How do I change a mobile account to a local account without server admin?

    Our company split into two seperate companies. We moved and the server stayed. All of our machines were on the server and had portable home directories. We no longer connect to a server. And the server we were connected to is no more. So we can't access it at all. Reinstall is not an option.
    I want to know if it's possible to change a mobile account back to a local account. Login takes FOREVER!! Is there anyway to fix this.
    Whenever I log into my administrator account on the machine, login is very quick.
    Are there some preferences I can delete or change? I went into Directory Access on my machine and unchecked the LDAPv3 and all of the other check boxes just to make sure, but it didn't have any effect.
    I also tried deleting the "Mirrors" folder, but when I log back in, it's there again.

    No one knows anything? I just thought it would be some preference file that I need to find and either change or delete.
    If anyone knows anything, please reply. The login issue is so frustrating.

  • Strange behaviour on OD Master (unwanted creation of local account)

    Hi all,
    we use an Apple XServe running Mac OS X Leopard Server 10.5.1 as our main file server machine (AFP, SMB/CIFS, OpenDirectory Master, iChat, Webserver, SVN) at our institute. All of our network users' accounts are managed within the LDAP directory of this server.
    We have got two additional local accounts (for administrative purpose only) on our server.
    Two of our OD users are using synchronized mobile home directories. Each time they connect their MacBooks to the network, their home directories get synchronized between MacBook and XServe.
    This is, in generally, running quite fine.
    One of these two mobile synchronized users from time to time (some days) encounters a strange problem since we upgraded our XServe from Tiger to Leopard. When it happens, he suddenly isn't able to login to any service running on the XServe (SSH, iChat, AFP).
    Looking into the server's logs we encountered strange messages regarding the account of the affected user ("xxxxx"):
    | system.log.5.bz2:Dec 15 20:24:35 whitehouse
    |/System/Library/CoreServices/ManagedClient.app/Contents/MacOS/ManagedClient[83 154]:
    | -xaImportUser: Imported "xxxxx" with home "/Volumes/Holmes/Users/xxxxx" into
    | DSLocal because account was found in directory services.
    | system.log.5.bz2:Dec 15 22:47:15 whitehouse
    | /System/Library/CoreServices/ManagedClient.app/Contents/MacOS/ManagedClient[831 54]:
    | -xaRemoveInactiveExternalAccounts: removing "xxxxx" with home
    | "/Volumes/Holmes/Users/xxxxx" from DSLocal because account is not active.
    | system.log.5.bz2:Dec 15 22:47:18 whitehouse com.apple.loginwindow[83147]:
    | -xaImportUser: Imported "xxxxx" with home "/Volumes/Holmes/Users/xxxxx" into
    | DSLocal because account was found in directory services.
    | system.log.5.bz2:Dec 15 22:47:18 whitehouse com.apple.loginwindow[83147]:
    | -xaRemoveInactiveExternalAccounts: removing "xxxxx" with home
    | "/Volumes/Holmes/Users/xxxxx" from DSLocal because account is not active.
    | system.log.5.bz2:Dec 15 22:51:24 whitehouse
    | /System/Library/CoreServices/ManagedClient.app/Contents/MacOS/ManagedClient[221 ]:
    | -xaImportUser: Imported "xxxxx" with home "/Volumes/Holmes/Users/xxxxx" into
    | DSLocal because account was previously found in directory services.
    When looking at "/var/db/dslocal/nodes/Default/users/", we found out that the user has got a local account (there is a "xxxxx.plist" within this directory), but who created it (ManagedClient.app?) and why?
    Of course, there aren't any local accounts for our other OD users (but only for our two local administrative accounts).
    Looking into "xxxxx.plist" shows that the account is of the type "LocalCachedUser".
    So it seems as following: As soon as this "xxxxx.plist" is created, user "xxxxx" cannot login to any service anymore.
    The question is: Why is it created? Why only for this user? We have at least one other user who uses a synchronized home directory. But for him this hasn't happpened, yet.
    I have looked into the affected account's settings regarding synchronized home directories using Workgroup Manager (and also "ldapsearch" at the command line). I don't see any different settings between the affected account "xxxxx" and the other ones.
    Does anybody know why "xxxxx" gets a local cached account on the server from time to time? Shouldn't this type of account be created on a "third" machine (e.g. at on of our MacMinis) when user "xxxxx" logs in on it?
    I would be very glad if someone could point us into the right direction. Thank you very much in advance!
    Best regards,
    Steffen

    Hi,
    today the user whose account has been affected came back from Christmas holidays. Simply deleting the file "/var/db/dslocal/nodes/Default/users/xxxxx.plist" on the server fixed the problem.
    He is now able to login via SSH, iChat, and so on, again.
    So it is very obvious that the existence of the local cached Account (represented by "xxxxx.plist" within "/var/db/dslocal/nodes/Default/users/") was the reason for denying the authentication to the services.
    Now one question is left: Why was it created?
    Any ideas are welcome!
    Best regards,
    Steffen

  • On Windows Server 2008, local account passwords are reset when the server is rebooted. Why, and how do we fix?

    We are running a commercial application on a Windows 2008 Server. After reboot, we cannot access the application because two services fail to start. The reason they fail to start is that the passwords to the local user accounts tied to those services have
    either been deleted or reset to a different value. In order to restart the application, we must reset the passwords of these two local accounts, then stop and restart all the application's services.  According to the application's maker, the accounts
    must be local.
    My colleague believes the passwords are being deleted or reset as a result of a global domain policy.  Is this likely?
    Assuming my colleague is correct, is there anything we can do locally to prevent these passwords from being deleted or reset when the server reboots?  If not, what is the most granular change we can ask our AD adminstrators to make to the policy, so
    that these local accounts are not touched at reboot.
    Thanks.

    Hello,
    have you configured the accounts to have the permission "Log on as a service"? I have seen that this is not given to the account and therefore the service fails to start.
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://blogs.msmvps.com/MWeber
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    Twitter:  

  • Local Account can't connect to address server

    Hi there, since a few days my addresses and calendar are not synced anymore. I found out, I can't connect with my local accounts to my local mac os x server mavericks on the same machine anymore. The same days I changed something on my security and firewall settings, maybe there is a problem. Anyone knows, what I have to do, please?
    The following error messages are printed in console log:
    04.08.14 05:09:22,738 com.apple.preferences.internetaccounts.remoteservice[27121]: [CardDAVPlugin-ERROR] Unable to find additional info dictionary for key: /principals/__uids__/E276D199-408C-44EA-AA27-9AA0142D3B47/
    04.08.14 05:09:23,283 com.apple.preferences.internetaccounts.remoteservice[27121]: [CardDAVPlugin-ERROR] Unable to find additional info dictionary for key: /principals/__uids__/E276D199-408C-44EA-AA27-9AA0142D3B47/
    04.08.14 05:09:23,284 com.apple.preferences.internetaccounts.remoteservice[27121]: [CardDAVPlugin-ERROR] No 'AddlInfoKey' present to save: {

    Now I have the first Part of the solution. First I had to empty the Folder ~/Library/Caches/ . Than I deleted the File ~/Library/Preferences/com.apple.internetaccounts_old.plist . Not sure, the last one is necessary. And third step was, I recreated the accounts from inside iCal and the Address Book.
    But now I still can't connect from my iPhone to the Server... Any suggestions?

  • Help needed to log into an Open Directory account which has the same username as the local account

    Hello,
    I have successfully setup a Mac OS X Lion Server and it is an Open Directory Master. On the server Ihave created an account with the name 'Connor'. I have numerous Macs (allrunning OS X 10.7 Lion) connected to this server but on one of the Macs thereis a local account with the name 'Connor' too (the local and networked accountshave different passwords). I want to log into the Open Directory account onthat mac. So, I have done an authenticated bind to the server, but when I go tolog in the password box shakes. I think the computer thinks I am trying to loginto the local account and not the Open Directory account. On Windows, I canlog into either the local accounts or the networked accounts by typing\LOCAL-COMPUTER-NAME\Connor. So, I was wondering if there was a similar commandto do this on Mac.
    I don't think I haveworded this very well, so if someone doesn't understand please ask me somequestion about the problem and I will try and explain it better.
    Any help would be greatlyappreciated,
    Connor

    Maybe I didn't make myself clear. I have used directory utility to do an authenticated bind to my server. I also have no problem logging into other accounts in the Open Directory. But, I just can't log into the account which has the same name both in the Open Directory and locally.
    Was there something I missed in Directory Utility? Could you please help me if this is so.
    Thanks for replying so quickly

  • How do i create a local account in mac mail?

    I have lost the account "On My Mac" How do I get it back or create a new local account

    Thank you for your answer but unfortunately I did not ask the question or state the problem correctly. I am able create a new mailbox on my mac but I would like to get this to show up in My Contacts as a Local Account.
    Maybe I should ask th question another way by stating that I wish to create a group of contacts locally on my mac from the contacts that are on iCloud. Is this possible?

  • Sending mail to local local account name...

    imsimta version:
    SunOS mars 5.10 Generic_125100-08 sun4u sparc SUNW,Sun-Fire-V240
    Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit)
    libimta.so 6.3-3.01 (built 20:10:10, Jul 12 2007; 32bit)
    We are tying to send email on our mail server to a local username using the /usr/lib/sendmail -Am command. (We were trying to use "mailx" but we kept getting "savemail panic" error messages saying that postmaster couldn't be found.) Our objective is to get the output of our backups sent to a local account which is a username in messaging server.
    We consistently get "user unknown" errors. I've tried Mail, mailx and the sendmail program to get the messages sent. Here is an example of a local delivery case. We get similar results if we send to "[email protected]".
    =====
    # Mail -v backups
    Subject: asdf
    asd
    EOT
    # backups... Connecting to [127.0.0.1] via relay...
    220 host.company.com -- Server ESMTP (Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit))
    EHLO host.company.com250-host.company.com
    250-8BITMIME
    250-PIPELINING
    250-CHUNKING
    250-DSN
    250-ENHANCEDSTATUSCODES
    250-EXPN
    250-HELP
    250-XADR
    250-XSTA
    250-XCIR
    250-XGEN
    250-XLOOP CFD464A5630A2B67F8E19F470E7B2A1F
    250-STARTTLS
    250-ETRN
    250-NO-SOLICITING
    250 SIZE 0
    STARTTLS220 2.5.0 Go ahead with TLS negotiation.
    EHLO host.company.com250-host.company.com
    250-8BITMIME
    250-PIPELINING
    250-CHUNKING
    250-DSN
    250-ENHANCEDSTATUSCODES
    250-EXPN
    250-HELP
    250-XADR
    250-XSTA
    250-XCIR
    250-XGEN
    250-XLOOP CFD464A5630A2B67F8E19F470E7B2A1F
    250-ETRN
    250-NO-SOLICITING
    250 SIZE 0
    MAIL From:<[email protected]> SIZE=49
    250 2.5.0 Address and options OK.
    RCPT To:<[email protected]>
    DATA550 5.1.1 unknown or illegal alias: [email protected]
    554 5.5.0 No recipients have been specified.
    RSET250 2.5.0 Ok.
    RSET250 2.5.0 Ok.
    hal... Using cached ESMTP connection to [127.0.0.1] via relay...
    MAIL From:<> SIZE=1073250 2.5.0 Address and options OK.
    RCPT To:<[email protected]>
    DATA550 5.1.1 unknown or illegal alias: [email protected]
    554 5.5.0 No recipients have been specified.
    RSET250 2.5.0 Ok.
    RSET250 2.5.0 Ok.
    postmaster... Using cached ESMTP connection to [127.0.0.1] via relay...
    MAIL From:<> SIZE=2097250 2.5.0 Address and options OK.
    RCPT To:<[email protected]>
    DATA550 5.1.1 unknown or illegal user: [email protected]
    554 5.5.0 No recipients have been specified.
    RSET250 2.5.0 Ok.
    Closing connection to [127.0.0.1]
    QUIT221 2.3.0 Bye received. Goodbye.
    =====
    I am guessing that this problem is related to another issue where I cannot create a user called "root" in the mail server user base. (maybe not, though).
    Is there a way to use the local mail programs (that depend on sendmail) to send to a Sun Messaging Server account on that same machine?
    Hal Huntley

    halsri wrote:
    Is there a way to use the local mail programs (that depend on sendmail) to send to a Sun Messaging Server account on that same machine?The approach I have taken with this in the past is to add system-specific aliases to the Messaging Server aliases file e.g.
    <snip /opt/SUNWmsgsr/config/aliases>
    [email protected]: [email protected]
    [email protected]: [email protected]
    </snip>
    Then run ./imsimta cnbuild;./imsimta restart
    Regards,
    Shane.

Maybe you are looking for