Clearing Network Identification Property List

How do I go about clearing the network identification property list?
/Library/Preferences/SystemConfiguration/com.apple.network.identification.plist
I have tried deleting it, but it always regenerates with the same data. I want the property list to just show my current network information and not previous connections.
Thank you.

What exactly are you trying to clear out? If you are referring to wireless networks that you previously joined then go into System Preferences/Network/AirPort/Advanced/AirPort and delete unwanted network info from the 'Preferred Networks' pane

Similar Messages

  • DiskWarrior is telling me Property List data is damaged

    DiskWarrior is telling me that "Property List data is damaged" in four .plist files in the Aperture Library.aplibrary/Database/History/Changes folder. Three say "unexpected EOF" and one says "Value missing for key inside <dict> at line 181". Is there anything I can/should do about this? Should I delete the files? Thanks.
    -Ted Gocal

    Just as a test I took one of my libraries that I do this sort of thing to and removed the Changes folder and ran Aperture on the library. Aperture worked fine. The library behaved just as expected.
    I've never paid much attention to this folder before and it's not clear just what 'changes' they are referring to but I wouldn;t get to worked up about it. Just make sure you have good working backups (as you should have anyway) and remember the next time you run DiskWarrior you'll probably see these errors.
    regards

  • Creating a Dynamic Property LIst

    Hi everyone,
    How to make a dynamic Property list in lingo
    Actually the problem is I am fetching a list of Columns from
    the databse which may vary so I want to make a dynamic PropertyList
    in which I can Set the property and the values based on the number
    of colums in a Database
    For Example: In the DB, I have a Table which contains
    follwing columns
    FName, LName,CompName, Age, Address1, Address2, Email,
    website
    Now I will select specific colums based on some condition. So
    I will be storing the result which would come in a property list.
    So this List needs to be Dynamic i.e it should be getting created
    based on the colums returned from the query.
    Suppose for a specific condition i get Fname, Lname, Email as
    a result so my List should look some thing like This
    objRecord = objResult.rows[1] --Row Returned from the
    Database
    listQueryResult = [#FirstName : objRecord[1], #LastName :
    objRecord[2], #Email : objRecord[3] ]
    The Above List shoud be based on nos of colums returned from
    the Query
    Is there any way by which i can create such a Dynamic
    Property List.
    I hope the Question is Clear
    Hope to get the answer at the earliest
    -Thanks and Regards
    -Atul Saxena

    You can create a new empty property list like this:
    listQueryResult = [:]
    To add a property/value pair, you can use:
    listQueryResult[
    <propertyName>
    ] =
    <value>
    or:
    listQueryResult.setaProp(
    <propertyName>
    <value>
    The above two commands will add the property if it doesn't
    exist, or update a value if the property name is already present in
    the list.
    You may not be aware that you can use strings as property
    names instead of symbols if you like, which you might find easier.
    Couple of examples following your example:
    listQueryResult = [:]
    objRecord = objResult.rows[1] --Row Returned from the
    Database
    listQueryResult["FName"] = objRecord[1]
    listQueryResult["LName"] = objRecord[2]
    (etc)
    Or, if you also have a list of the fieldnames returned from
    the db:
    listQueryResult = [:]
    fieldNames = objResult.fieldNames --Field names for records
    returned from Database
    objRecord = objResult.rows[1] --Row Returned from the
    Database
    repeat with n=1 to fieldNames.count
    thisFieldName = fieldNames[n]
    thisFieldValue = objRecord[n]
    listQueryResult[thisFieldName] = thisFieldValue
    end repeat
    hope this helps!
    - Ben

  • Adjusting system.log with Property List Editor

    Hi,
    I had my system.log set up to rotate every seven days by using the Property List Editor with my older 2.0GHz Mac Mini OS X.5.8. I have upgraded to a faster Mini OS X.6.4 and now the system.log renews every day. Can someone tell me which plist I need to edit to get my system.log to go back to renewing every seven days? I am getting tired of having to change the permissions every day to view the log, and I want a longer time span in each log.
    Thanks,
    Paul

    4paul3 wrote:
    Thank you Charlie that worked great. One thing I should point out is this has to be done from your Admin account in 10.6 and you have to type:
    sudo edit /etc/newsyslog.conf
    Actually, that sudo shouldn't be necessary: TextWrangler should ask you first if you want to unlock the file to make changes. When you want to save it should ask you to authenticate, and then it can save the file. But you're probably right about being in your admin account.
    Now, please accept my apology for not getting to this sooner but I had a medical thing scheduled and I have not been qualified to do Terminal commands or type coherently for quite some time. I’ve only recently had a clear head so I’m getting to this now. Thank you again this is wonderful.
    You're welcome. I'm glad to hear you're feeling better.
    I do have one question though. For future reference for anyone wanting to do this if I want the log to rotate every two weeks instead of every week and save the last seven logs what would be the entries that I would make in the TextWrangler document?
    In that case, I think you'd make the "when" field just a number of hours. In this case, 336 (168 hours per week times 2 weeks):
    # logfilename [owner:group] mode count size when flags [/pid_file] [sig_num]
    /var/log/system.log 640 7 * 168 J
    I haven't tested the two week interval, though, since it's kind of a long time...
    Or, if I wanted to have the log rotate after it reaches 2MB and save the last seven logs what would be the commands to use in the TextWrangler document?
    Just change the "when" field to an asterisk, the "count" field 7, and "size" 2048:
    # logfilename [owner:group] mode count size when flags [/pid_file] [sig_num]
    /var/log/system.log 640 7 2048 * J
    Thank you again for your input it is greatly appreciated!!
    You're welcome. Let me know if any of this doesn't make sense...
    charlie

  • How to connect a "Clear Network" Modem to my Airport Xtreme?

    Hello friends. I recently purchased the clear network modem. I need to know how to connect it to my Airport Extreme and get my local network at home working with 4 computers. Thank you!

    Except that I don't know much about the Extreme, it should be simple.
    Power down the computers, the Extreme, & the Clear Modem, wait 5 minutes, connect an Ethernet cable, (it is one with Ethernet right?), from the Clear Modem to the WAN port of the Extreme, power up the Modem, wait 3 minutes & power up the Extreme, wait 2 minutes & power up the Mac(s).
    Windows directions, but basically the same to setup the Extreme to hand out IPs...
    http://oit.ncsu.edu/resnet/apple-airport-extreme

  • AppleScript 10.9.0 System Events -10006  Update property list file item

    Have AppleScript that runs without error on Mountain Lion 10.8.5, but errors out on Mavericks  10.9.0.
    At end of script, property list items need to be updated and this is when error occurs.
    Put together a subset of the script, see below) that get the error
    Statement reads "set value of property list item "ArrayList001" to ArrayList001"
    Text of error:
         error "System Events got an error: 'xxx.plist' is not a property list file."
         number -10006 from contents of property list file "xxx05.plist"
    =============================================================================
    property myPListFile : "cbmck05.plist"
    property myPListFilePath : ""
    property constPreviousRunDay : "PreviousRunDay"
    on run
       set today to "Date01" as string
              set List001 to {}
              set List002 to {}
              set myPListFilePath to ""
              repeat with i from 1 to 8
                        set end of List001 to (i * 2) as string
              end repeat
              set myPListFilePath to path to desktop folder from user domain as string
              set fileMyPList to (myPListFilePath & myPListFile) as string
    clear_file(fileMyPList)
    -- First time! need to initalize
              tell application "System Events"
      -- create an empty property list dictionary item
                        set the parent_dictionary to make new property list item with properties {kind:record}
      -- create new property list file using the empty dictionary list item as contents
                        set new_plistfile to ¬
      make new property list file with properties {contents:parent_dictionary, name:fileMyPList}
      make new property list item at end of property list items of contents of new_plistfile ¬
      with properties {kind:string, name:constPreviousRunDay, value:today}
      make new property list item at end of property list items of contents of new_plistfile ¬
                                  with properties {kind:list, name:"ArrayList001"}
      make new property list item at end of property list items of contents of new_plistfile ¬
                                  with properties {kind:list, name:"ArrayList002"}
              end tell
              set previousRunDate to today
              set xxList to (repopulate_lists())
              set ArrayList001 to List001
              set ArrayList002 to List002
    -- save info in the plist file
              tell application "System Events"
                        tell property list file fileMyPList
                                  tell contents
                                            set value of property list item constPreviousRunDay to previousRunDate
                                            set value of property list item "ArrayList001" to ArrayList001     --   <<< ------- error caused by the statement
                                            set value of property list item "ArrayList002" to ArrayList002
                                  end tell
                        end tell
              end tell
    end run
    -- ==========================================
    on repopulate_lists()
              set newList to {}
              set List002 to {}
              repeat with i from 1 to 8
                        set end of newList to i as string
              end repeat
              set List001 to newList
              return List001
    end repopulate_lists
    -- ==========================================
    -- Does the file exist?
    on fileExists(f)
              try
      f as string as alias
                        return true
              on error errMsg number errNum
                        return false
              end try
    end fileExists
    -- Delete the  files if exist
    on clear_file(aFile)
              if fileExists(aFile) then
                        tell application "Finder"
                                  set resultObject to delete aFile
                        end tell
              end if
    end clear_file

    Here's an AppleScript handler that partially works around this bug (warning: it turns each list item into a string).
    on plistWrite(plistPath, plistItemName, plistItemValue)
      -- version 1.1, Daniel A. Shockley
      -- 1.1 - rough work-around for Mavericks bug where using a list for property list item value wipes out data
              if class of plistItemValue is class of {"a", "b"} and AppleScript version of (system info) as number ≥ 2.3 then
      -- Convert each list item into a string and escape it for the shell command:
      -- This will fail for any data types that AppleScript cannot coerce directly into a string.
                        set plistItemValue_forShell to ""
                        repeat with oneItem in plistItemValue
                                  set plistItemValue_forShell to plistItemValue_forShell & space & quoted form of (oneItem as string)
                        end repeat
                        set shellCommand to "defaults write " & quoted form of POSIX path of plistPath & space & plistItemName & space & "-array" & space & plistItemValue_forShell
      do shell script shellCommand
                        return true
              else -- handle normally, since we aren't dealing with Mavericks list bug:
                        tell application "System Events"
      -- create an empty property list dictionary item
                                  set the parent_dictionary to make new property list item with properties {kind:record}
                                  try
                                            set plistFile to property list file plistPath
                                  on error errMsg number errNum
                                            if errNum is -1728 then
                                                      set plistFile to make new property list file with properties {contents:parent_dictionary, name:plistPath}
                                            else
                                                      error errMsg number errNum
                                            end if
                                  end try
                                  tell plistFile
                                            try
                                                      tell property list item plistItemName
                                                                set value to plistItemValue
                                                      end tell
                                            on error errMsg number errNum
                                                      if errNum is -10006 then
      make new property list item at ¬
                                                                          end of property list items of contents of plistFile ¬
      with properties ¬
                                                                          {kind:class of plistItemValue, name:plistItemName, value:plistItemValue}
                                                      else
                                                                error errMsg number errNum
                                                      end if
                                            end try
                                  end tell
                                  return true
                        end tell
              end if
    end plistWrite

  • Hello, since I put mountain lion on my macbook pro computer my wi fi has to be "reprogrammed" almost every time I use safari.That is, I have to go to system preferences and reselect the location, etc. now I see an additional network on my list, "wifi"

    can someone please advise me how to correct this recurring problem and also how to remove this second network from my list of available networks. thank you

    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work.
    Isolating an issue by using another user account
    If the problem is still there, try booting into the Safe Mode.  Shut down the computer and then power it back up. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the grey Apple icon and a progress bar appear. The boot up is significantly slower than normal.
    Safe Mode
    Safe Mode - About
    General information.
    Isolating issues in Mac OS X
    Permissions Troubleshooting
    Step by Step to Fix Your Mac

  • I tried to create a new google calendar in ical, but they did not show up, I tried this several times. Now when I sync my iPad via iTunes all these failed attempts are showing up under the ical sync list in iTunes, how can i clear them from this list?

    I tried to create a new google calendar in ical, but they did not show up, I tried this several times.
    Now when I sync my iPad via iTunes all these failed attempts are showing up under the ical sync list in iTunes, how can I clear them from this list?

    See https://bugs.downthemall.net/ticket/2147
    Google Search Bug
    Reported by: openid:nathan wride Owned by:
    Priority: major Milestone:
    Component: Polish/Usability Version: 2.0.10
    Keywords: Google search instant save bug Cc:
    Operating System: Windows
    Description
    Hi Guys
    I have found a bug/annoying thing that occurs frequently on google. When searching, DTA trys to download the search...
    I'll try to attach a screenshot.
    Attachments
    [https://bugs.downthemall.net/attachment/ticket/2147/Screenshot.png Screenshot.png] Download (113.0 KB) - added by openid:nathan wride 4 weeks ago.
    The screenshot that shows the bug.

  • Property List error: Unexpected character b at line 1 / JSON error: JSON text did not start with array or object and option to allow fragments not set.

    Hi,
    I have a MBP 13' Late 2011 and Yosemite 10.10.2 (14C1514).
    Until yesterday, I was using Garmin ConnectIQ SDK and all was working fine.
    Yesterday, I've updated my system with latest security updates and Xcode updates too (Version 6.2 (6C131e)).
    Since, I can't launch the ConnectIQ simulator app, I have this message in console :
    8/04/2015 15:19:04,103 mds[38]: There was an error parsing the Info.plist for the bundle at URL Info.plist -- file:///Volumes/Leto/connectiq-sdk-mac-1.1.0_2/ios/ConnectIQ.bundle/
    The data couldn’t be read because it isn’t in the correct format.
    <CFBasicHash 0x7fa64f44e9a0 [0x7fff7dfc7cf0]>{type = immutable dict, count = 2,
    entries =>
      0 : <CFString 0x7fff7df92580 [0x7fff7dfc7cf0]>{contents = "NSDebugDescription"} = <CFString 0x7fa64f44f0a0 [0x7fff7dfc7cf0]>{contents = "Unexpected character b at line 1"}
      1 : <CFString 0x7fff7df9f5e0 [0x7fff7dfc7cf0]>{contents = "kCFPropertyListOldStyleParsingError"} = Error Domain=NSCocoaErrorDomain Code=3840 "The data couldn’t be read because it isn’t in the correct format." (Conversion of string failed.) UserInfo=0x7fa64f44eda0 {NSDebugDescription=Conversion of string failed.}
    I have looked at this file and it looks like a binary plist
    bplist00ß^P^V^A^B^C^D^E^F^G^H
    ^K^L^M^N^O^P^Q^R^S^T^U^V^W^X^Y^Z^[^\^]^^^_ !"$%&'()'+,^[\CFBundleNameWDTXcodeYDTSDKName_^P^XNSHumanReadableCopyrightZDTSDKBuild_^P^YCFBundleDevelopmentRegion_^P^OCFBundleVersi    on_^P^SBuildMachineOSBuild^DTPlatformName_^P^SCFBundlePackageType_^P^ZCFBundleShortVersionString_^P^ZCFBundleSupportedPlatforms_^P^]CFBundleInfoDictionaryVersion_^P^RCFBundleE    xecutableZDTCompiler_^P^PMinimumOSVersion_^P^RCFBundleIdentifier^UIDeviceFamily_^P^QDTPlatformVersion\DTXcodeBuild_^P^QCFBundleSignature_^P^ODTPlatformBuildYConnectIQT0611[iph    oneos8.1o^P-^@C^@o^@p^@y^@r^@i^@g^@h^@t^@ ^@©^@ ^@2^@0^@1^@5^@ ^@G^@a^@r^@m^@i^@n^@.^@ ^@A^@l^@l^@ ^@r^@i^@g^@h^@t^@s^@ ^@r^@e^@s^@e^@r^@v^@e^@d^@.V12B411RenQ1V14C109Xiphoneos    TBNDLS1.0¡#XiPhoneOSS6.0YConnectIQ_^P"com.apple.compilers.llvm.clang.1_0S8.1_^P^Tcom.garmin.ConnectIQ¡*^P^AW6A2008aT????^@^H^@7^@D^@L^@V^@q^@|^@<98>^@ª^@À^@Ï^@å^A^B^A^_^A?^AT^    A_^Ar^A<87>^A<96>^Aª^A·^AË^AÝ^Aç^Aì^Aø^BU^B\^B_^Ba^Bh^Bq^Bv^Bz^B|^B<85>^B<89>^B<93>^B¸^B¼^BÓ^BÕ^B×^Bß^@^@^@^@^@^@^B^A^@^@^@^@^@^@^@-^@^@^@^@^@^@^@^@^@^@^@^@^@^@^Bä
    I guess it is a normal format but my system seems to be unable to read binary plist ?
    I tried some stuff with plutil
    plutil -lint Info.plist
    Info.plist: Unexpected character b at line 1
    Same for convert
    plutil -convert xml1 Info.plist
    Info.plist: Property List error: Unexpected character b at line 1 / JSON error: JSON text did not start with array or object and option to allow fragments not set.
    I also try to download a fresh version of the connectIQ SDK and no changes.
    Any idea ?
    Thanks

    Step by step, how did you arrive at seeing this agreement?

  • Clearing Network field in shopping cart using BBP_PD_SC_GETDETAIL

    Hi,
    in  Doc_Change badi to clear out the Network value from BBP_PDS_ACC-NETWORK field whenever user enters some value using the Activity Search help.
    i think code has to be written using fm BBP_PD_SC_GETDETAIL but who can we clear network field based on search help.
    Thanks ,
    Goutam.

    Hi Pradeep,
    I still cant find the deduct_ind. How could this happen, the DEDUCT_IND field is not in E_item?
    CALL FUNCTION 'BBP_PD_SC_GETDETAIL'
          EXPORTING
            i_guid    = iv_doc_guid
          IMPORTING
            e_header  = lt_sc_header
          TABLES
            e_item    = lt_sc_item
            e_account = lt_sc_account.
         LOOP AT lt_sc_item INTO ls_sc_item
          WHERE del_ind IS INITIAL AND deduct_ind IS INITIAL.
        ENDLOOP.
    Error: No component exists with the name "DEDUCT_IND", but there is a component with a similar name "DEL_IND".
    Appreciate helps!
    Thanks.

  • Clearing Network field in shopping cart

    Hi,
    in Doc_Change badi to clear out the Network value from BBP_PDS_ACC-NETWORK field whenever user enters some value using the Activity Search help.
    i think code has to be written using fm BBP_PD_SC_GETDETAIL but who can we clear network field based on search help.
    Thanks ,
    Goutam.

    Hi,
    Add the fields into the below structures-
    1- INCL_EEW_PD_ITEM_CSF_SC  (For Item Level)
    2- INCL_EEW_PD_HEADER_CSF_SC (For Header Level)
    And then activate the BADI "BBP_CUF_BADI_2".
    and manage the fields in this badi for display or hide.
    Regards,
    Sachin

  • HP Photosmart Plus B210a all-in-one won't display any networks in the list.

    Hi, I recently purchased a HP Photosmart Plus all in one printer and I've been having trouble with it from day one.
    First off, it won't connect wirelessly.
    It won't display any networks in the list when searched for, it won't take my network details when I manually input them and it won't take any static IP address I've tried from other suggestions.
    Secondly, the print quality is very bad. Streaks and fading are occuring and after using up 70% of my ink trying to sort it out through troubleshooting it's still bad.
    It's extremely important for me to be able to have web access using the printer as all members of my household use it and it'll get fustrating having to car laptops and computers around to print.
    Can anybody help at all?

    Top line says "The wireless radio is not functioning. Contact HP support"
    I take this as a very bad sign and needs replacing?
    The tests I done produce streaks, fading and lines. I printed off two photos, one from a memory card and one from a scan. The memory card produced heavy blocked lines of color and the scan was just dull.
    I'm using a Wanadoo Wireless Livebox and Windows 7 64 Bit
    One other question... is this like a brilliant printer for photos mainly? I'm a Graphics design student and although my final prints are made from home I would like accurate and decent printouts for my portfolios. Should I keep this or go for another one with similar features and better print quality?

  • Etrecheck results and damaged Property List Data

    In the past couple of weeks I have discovered several problems with my (mid-2010) iMac (System: OS X 10.9.4). First of all, Safari does not automatically open when I boot my computer. Although the computer appears to work alright otherwise, I then suddenly began having problems with it failing to scan documents from my HP L7780. Having a large project requiring the scanning of hundreds of documents, I’m at a standstill until I solve this problem.
    Setup:
    1. 120GB Internal SSD with OS X (10.9.4) used as main disk with frequently used applications and documents.
    2. 1TB Internal Hard Disk with seldom used applications and documents.
    3. 1TB External Hard Disk with two partitions:
      A) Backup for 120GB Internal SSD,
      B) Backup for 1TB internal Hard Disk. (The 1TB internal Hard Disk has only 124GB. Obviously, a much better setup would be to have just one 250GB internal SSD and one external backup for that drive.)
    The problem appears to be with the software on the SSD and not the software on the internal hard drive.
    Procedures taken:
    1. Backed up SSD and reinstalled a fresh copy of OS X 10.9.4 via the Recovery partition using ⌘-R.
    2. Attempted to Repair Disk Permissions on SSD again from the Recovery partition. Printout is extremely long.
    3. Ran all the tests on TechTool Pro from the external backup. No problems found.
    4. Ran all the tests on DiskWarrior from the DiskWarrior disk on both the internal Hard Disk and the internal SSD.
    When I scanned the internal Hard Disk with DiskWarrior for files and folders for damage and potential compatibility, no problems were found.
    Concerning the internal SSD, using DiskWarrior I had to rebuild the directory several times to (supposedly) completely repair the disk. When I scanned the internal SSD for files and folders for damage and potential compatibility I FOUND A LONG LIST OF PROBLEMS. I’m listing only two (of dozens) below:
    ******************** BEGINNING OF DISKWARRIOR REPORT ********************
    DiskWarrior scanned the disk named "SSD" checking all files and folders for damage and potential compatibility
    problems.!
    Disk: "SSD"!
    The Property List data was checked in 4,846 files.!
    The Resource Data was checked in 4,623 files.!
    The maximum Folder Depth on this disk is 20. This does not exceed the maximum recommended depth.!
    Location: "Desktop"!
    File: "._browserExtentionVersion.plist"!
    Detected that Property List data is damaged and cannot be repaired.!
    Unexpected character ! at line 1!
    Location: "SSD/Users/danielbollhoefer/Library/Application Support/iSkysoft iTube Studio/ResourceForFree/5_0/
    __MACOSX/50003/BrowserExtentsions/"!
    File: "._Extensions.plist"!
    Detected that Property List data is damaged and cannot be repaired.!
    Unexpected character ! at line 1!
    Location: "SSD/Users/danielbollhoefer/Library/Application Support/iSkysoft iTube Studio/ResourceForFree/5_0/
    __MACOSX/50003/BrowserExtentsions/Safari/"!
    ******************** END OF ABBREVIATED DISKWARRIOR REPORT ********************
    I realize that some of these files are invisible, however I do have InVisible 1.2.1. In checking out some invisible folders I find that they have a white minus sign on a red circle on the bottom right corner of the folder icon which means that (apparently) I do not have Sharing & Permissions for this folder.
    QUESTION: So, how can I delete a damaged plist in this situation?
    In addition, I ran an EtreCheck. Below is a copy of the report:
    ******************** BEGINNING OF ETRECHECK REPORT ********************
    EtreCheck version: 1.9.13 (49)
    Report generated August 13, 2014 at 11:39:27 AM EDT
    Hardware Information: ?
      iMac (27-inch, Mid 2010) (Verified)
      iMac - model: iMac11,3
      1 3.2 GHz Intel Core i3 CPU: 2 cores
      16 GB RAM
    Video Information: ?
      ATI Radeon HD 5670 - VRAM: 512 MB
      iMac 2560 x 1440
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 0:13:33
    Disk Information: ?
      WDC WD10EARX-00PASB0 disk1 : (1 TB)
      S.M.A.R.T. Status: Verified
      EFI (disk1s1) <not mounted>: 209.7 MB
      Hard Disk (disk1s2) /Volumes/Hard Disk: 999.86 GB (875.11 GB free)
      Samsung SSD 840 Series disk0 : (120.03 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      SSD (disk0s2) / [Startup]: 119.04 GB (54.41 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information: ?
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Internal Memory Card Reader
      DYMO DYMO LabelWriter 450
      Apple Computer, Inc. IR Receiver
      Apple Inc. Built-in iSight
    Gatekeeper: ?
      Mac App Store and identified developers
    Kernel Extensions: ?
      [not loaded] com.dymo.usbprinterclassdriver.kext (1.1 - SDK 10.5) Support
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.bombich.ccc.plist Support
      [running] com.dymo.pnpd.plist Support
      [running] com.micromat.TechToolProDaemon.plist Support
    Launch Agents: ?
      [running] com.micromat.TechToolProAgent.plist Support
    User Launch Agents: ?
      [loaded] com.adobe.ARM.[...].plist Support
      [failed] com.google.keystone.agent.plist Support
    User Login Items: ?
      iTunesHelper
      SpeechSynthesisServer
      Mail
      Safari
      xScan
      xScan
      AdobeResourceSynchronizer
    Internet Plug-ins: ?
      FlashPlayer-10.6: Version: 14.0.0.145 - SDK 10.6 Support
      Default Browser: Version: 537 - SDK 10.9
      AdobePDFViewerNPAPI: Version: 11.0.07 - SDK 10.6 Support
      AdobePDFViewer: Version: 11.0.07 - SDK 10.6 Support
      DYMO NPAPI Addin: Version: 1.0 - SDK 10.6 Support
      Flash Player: Version: 14.0.0.145 - SDK 10.6 Outdated! Update
      QuickTime Plugin: Version: 7.7.3
      DYMO Safari Addin: Version: (null) - SDK 10.5 Support
    Safari Extensions: ?
      iTube Studio (Disabled)
      AdBlock-2 (Disabled)
      Awesome Screenshot-2 (Disabled)
      MapTricks
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes: ?
      Flash Player  Support
      TechTool Protection  Support
    Time Machine: ?
      Time Machine not configured!
    Top Processes by CPU: ?
          2% WindowServer
          2% xScan
          1% fontd
          0% coreservicesd
          0% hidd
    Top Processes by Memory: ?
      197 MB com.apple.IconServicesAgent
      115 MB TextEdit
      66 MB xScan
      66 MB mds_stores
      66 MB Safari
    Virtual Memory Information: ?
      13.34 GB Free RAM
      1.27 GB Active RAM
      225 MB Inactive RAM
      1.17 GB Wired RAM
      305 MB Page-ins
      0 B Page-outs
    ******************** END OF ETRECHECK  REPORT ********************
    When attempting to repair permissions in Disk First Aid, there are hundreds (thousands?) of entries stating that they have been repaired. However, when immediately repeating the test, I get the same report.
    Any assistance will be greatly appreciated.

    colimotl wrote:
    1. 120GB Internal SSD with OS X (10.9.4) used as main disk with frequently used applications and documents.
    2. 1TB Internal Hard Disk with seldom used applications and documents.
    I don't think it is related to your problem, but just so you know, you should only run applications from the Applications folder. There are some low-level interactions between the system and software that may be broken if applications are installed elsewhere. I know this is true for help. It could be true about other things as well. If you need to, you can use the Applications folder in your home directory instead.
    File: "._browserExtentionVersion.plist"!
    Detected that Property List data is damaged and cannot be repaired.!
    Unexpected character ! at line 1!
    Location: "SSD/Users/danielbollhoefer/Library/Application Support/iSkysoft iTube Studio/ResourceForFree/5_0/
    __MACOSX/50003/BrowserExtentsions/"!
    File: "._Extensions.plist"!
    Detected that Property List data is damaged and cannot be repaired.!
    Unexpected character ! at line 1!
    Location: "SSD/Users/danielbollhoefer/Library/Application Support/iSkysoft iTube Studio/ResourceForFree/5_0/
    __MACOSX/50003/BrowserExtentsions/Safari/"!
    ******************** END OF ABBREVIATED DISKWARRIOR REPORT ********************
    I realize that some of these files are invisible, however I do have InVisible 1.2.1. In checking out some invisible folders I find that they have a white minus sign on a red circle on the bottom right corner of the folder icon which means that (apparently) I do not have Sharing & Permissions for this folder.
    QUESTION: So, how can I delete a damaged plist in this situation?
    Those files are not damaged. Nor are the plist files. They are AppleDouble files meant for cross platform use on a non-Apple server or inside a zip file. They should never exist in this form on a Mac.
    User Login Items: ?
      iTunesHelper
      SpeechSynthesisServer
      Mail
      Safari
      xScan
      xScan
      AdobeResourceSynchronizer
    Why do you have two xScans here? Try removing everything from Mail down and see if things work better.
    When attempting to repair permissions in Disk First Aid, there are hundreds (thousands?) of entries stating that they have been repaired. However, when immediately repeating the test, I get the same report.
    Don't worry about those: Mac OS X: Disk Utility's Repair Disk Permissions messages that you can safely ignore

  • Unable to clear the drop down list of junk login ID's - I have a Mac OSX

    When I go to sign into my yahoo ID, and I begin to type my e-mail account, a drop down list of junk log in ID's pop up. These are ID which I have entered my mistake in the pass. One of which is my password. I am unable to clear the drop down list of this junk log in ID's. I ask Yahoo how to do it and I was told that this problem is specific of my web browser. I need your help to clear that junk log in ID's. I have a Mac OSX, Version 10/4. Would you be able to explain simple what to do. This problem is annoying as every time I sign in that drop down list appear.
    I would appreciate your assistance.
    Sincerely,
    Socorro Bery

    good afternoon  Limnos i think  i didnt give the right info I didnt download well in a way i did i bought a copy of microsoft excel for mac 2004 i loaded on to my mac then i went and down loaded some software that said i needed to have excel you see my mac is osx 10.4,11 power pc G4 and that is were i had the problem now  the excell loaded allright but the the other programs did not the pop ups say it is not scriptable or can not read dictionary if you can help m,e iam not great with computers but i  along

  • Property Lists: How to insert a variable as a property?

    Hi.
    I am trying to insert a variable in place of a newly defined
    property to be added to a poroperty list.
    This would normally add a new a new property to a poroperty
    list :
    Database [#needtogetvariablehere] = typedPassword
    -- 'Database' is the property list, 'needtogetvariablehere'
    is the new poperty and 'typedPassword' is the new property's value
    - thisall works fine.
    I'd like to generate new property names dynamically using an
    editable text box. How do I replace the new property name '
    nedtogetvariablehere' with a variable?
    I'm sure I've got to put some rounded brackets in somewhere
    but everything I try spits out a syntax error.
    eg:
    myVariable = "blablabla"
    Database [#(myVariable)] = typedPassword
    Any ideas?
    Thanks.

    I don't know of a way, despite the responses so far, to
    convert a variable
    name to a symbol then to use it as a property. You must hard
    code it as you
    have seen in the responses.
    Craig
    Craig Wollman
    Word of Mouth Productions
    phone 212 928 9581
    fax 212 928 9582
    159-00 Riverside Drive West #5H-70
    NY, NY 10032
    www.wordofmouthpros.com
    "dbohea" <[email protected]> wrote in
    message
    news:e7e3p7$mb2$[email protected]..
    > Hi.
    >
    > I am trying to insert a variable in place of a newly
    defined property to
    > be
    > added to a poroperty list.
    >
    > This would normally add a new a new property to a
    poroperty list :
    >
    > Database [#needtogetvariablehere] = typedPassword
    >
    > -- 'Database' is the property list,
    'needtogetvariablehere' is the new
    > poperty
    > and 'typedPassword' is the new property's value -
    thisall works fine.
    >
    > I'd like to generate new property names dynamically
    using an editable text
    > box. How do I replace the new property name '
    nedtogetvariablehere' with
    > a
    > variable?
    >
    > I'm sure I've got to put some rounded brackets in
    somewhere but everything
    > I
    > try spits out a syntax error.
    >
    > eg:
    >
    > myVariable = "blablabla"
    >
    > Database [#(myVariable)] = typedPassword
    >
    >
    > Any ideas?
    >
    > Thanks.
    >

Maybe you are looking for

  • Satellite P300D-10V shut down when playing game

    Hello everyone I bought a Sat P300d-10v last month. At first it was very good but it was always very hot. I thougt that the cause is the weather but it wasn't. When I try to play a game (cod4-prostreet- even easy dos games) my device always shuts dow

  • Statspack: Segregation of non-application workload

    Hello, Oracle 10.2.0.5.0 (32 bit) Windows 2003 R2 Standard Edition I have statspack running at 30 minute interval on this database. I am interested in finding details of the "physical write total bytes" part. Statistic                                

  • New iMAC - Time Warner POP Email Send (SMTP) Not Working

    Greetings, Have used cinci.rr.com account for years across many different types of PCs. New to mac world. My new @mac.com account works fine for sending and receiving. When I added in my cinci.rr.com pop account, I receive fine, but no joy on the SMT

  • I am trying to update Photoshop & Premier Elements 11 and get this Error Code: U43M1D207

    I am trying to update both Photoshop & Premier Elements 11 and get this Error Code: U43M1D207. Can anyone help ?

  • Shape fill colour preview

    Hi , I have been searching around the setting and the net and no luck , wondering how to turn off fill clour preview of a vector shape before the path is closed . I am in Photoshop CC. Thanks