Mysterious Sidebar Number in Finder?

In my finder window, on the sidebar to the left, I have all my normal things listed. Among them at the top are Devices. The first being my computer and its name that I gave it when I first set it up. Well right next to this computer are parenthesis with a number that seems to keep growing almost everyday. For example, it looks like this, less the icon: CBMBP (8)
Then below it, it has the normal things like idisk and my hard drive and stuff. I just cant figure out for the life of me what the heck the number means next to my computer name. I am hooked up to a wireless network but when I have disabled that, that did not seem to do anything. Could one of you mac experts please tell me what the heck this is? Thanks in advance.

I take it CBMBP would be the Computer Name set in Sharing preferences? I would check that out and possible change the Computer Name.

Similar Messages

  • Is there a folder limit in the sidebar of a finder window?

    Is there a limit to the number of folders one can put in the sidebar of a finder window? For example, I am supportng a user that currently has 47 folders in the sidebar, and would like to add more, but she can only insert them at a certain point in the list (after this point the finder will just not allow you to add anything to the sidebar). If a folder is inserted, other folders don't disappear, they just get moved down, which is why I'm thinking it's not a hard limit. The point at which the finder won't insert new items is fairly random as well, but above this point is never a problem.
    Is there a way around this? IS it a pref problem? I didn't try moving her prefs file(s) because she has an important function at my company and can't afford much downtime.
    Any help would be greatly appreciated.

    Hi jkrish,
    Based on my research, a table is limited by available client and server memory (or browser page size constraints) theoretically. If you are on a 32-bit machine, the worker process that is processing this has less than 2 gigabytes of memory to work with,
    probably closer to 1 gigabyte when you factor in kernel mode memory. If you are going to be serving up large reports like this, you probably need a 64-bit setup with at least 4 gigs of memory or more on the box. This setup will allow the worker process to
    allocate more than 2 gigs of usable memory to complete these large requests without issue.
    Furthermore, adding page breaks can improve the performance of published reports because only the items on each page have to be processed as you view the report. So in order to reduce the report process time, I suggest that you can try to add page break.
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Set sidebar width of (Finder window 1) to 0 - (no longer working for me)

    on script_title()
    Filename : finderwindowprops.scpt (Script Debugger)
    Author : Bill Hernandez
    Version : 1.0.0
    Updated : Thursday, December 14, 2006 ( 6:01 PM )
    end script_title
    -- ---------+---------+---------+---------+---------
    on script_notes( )
    Setting the sidebar width for finder windows is not working consistently,
    nor correctly for me. I had written several scripts to standardize the
    display of windows on screen several months ago, and they have quit working
    during the last couple of versions of the OS, not sure what has happened ?
    end script_notes
    -- ---------+---------+---------+---------+---------
    on run
    tell me
    set this_folder to (path to current user folder)
    SetupWindow(this_folder)
    if (ChooseTest() = 1) then
    TestOne(this_folder)
    else
    TestTwo(this_folder)
    end if
    set str to ""
    set str to str & "The Sidebar Width Should be Zero" & return & return
    set str to str & "It had worked well several months ago when I was doing some "
    set str to str & "window stacking, but it seems to be broken for me..." & return & return
    set str to str & "iMacG5 running OSX 10.4.8" & return & return
    ShowMsg(str, 10)
    end tell
    end run
    -- ---------+---------+---------+---------+---------
    on SetupWindow(whichFolder)
    tell application "Finder"
    activate
    set counter to 1
    try
    open whichFolder
    select Finder window 1
    on error
    set win to make new Finder window
    end try
    set bounds of (Finder window counter) to {20, 60, 700, 700}
    set current view of (Finder window counter) to icon view
    set toolbar visible of (Finder window counter) to true
    set sidebar width of (Finder window counter) to 300
    set w_props to get properties of Finder window 1
    set str to ""
    set str to str & "The Sidebar Width Should be 300" & return & return
    set str to str & "Sidebar Width : " & ((sidebar width) of w_props)
    my ShowMsg(str, 0)
    end tell
    end SetupWindow
    -- ---------+---------+---------+---------+---------
    on TestOne(whichFolder)
    tell application "Finder"
    activate
    set counter to 1
    try
    open whichFolder
    select Finder window 1
    on error
    set win to make new Finder window
    end try
    set bounds of (Finder window counter) to {20, 60, 600, 600}
    set current view of (Finder window counter) to list view
    set toolbar visible of (Finder window counter) to true
    set sidebar width of (Finder window counter) to 0
    set w_props to get properties of Finder window 1
    set str to ""
    set str to str & "The Sidebar Width Should be Zero" & return & return
    set str to str & "Sidebar Width : " & ((sidebar width) of w_props)
    my ShowMsg(str, 0)
    end tell
    end TestOne
    -- ---------+---------+---------+---------+---------
    on TestTwo(whichFolder)
    tell application "Finder"
    activate
    set w_props to {}
    set w_props to w_props & {sidebar width:0}
    set w_props to w_props & {current view:list view}
    set w_props to w_props & {toolbar visible:true}
    set w_props to w_props & {statusbar visible:true}
    set w_props to w_props & {bounds:{20, 60, 400, 600}}
    try
    open whichFolder
    select Finder window 1
    on error
    set win to make new Finder window
    end try
    set w_ref to Finder window 1
    set properties of w_ref to w_props
    set w_props to get properties of Finder window 1
    set str to ""
    set str to str & "The Sidebar Width Should be Zero" & return & return
    set str to str & "Sidebar Width : " & ((sidebar width) of w_props)
    my ShowMsg(str, 0)
    end tell
    end TestTwo
    -- ---------+---------+---------+---------+---------
    on ChooseTest()
    tell application "Finder"
    activate
    set s to ""
    set s to s & "The sidebar width is inconsistent no matter which method I use." & return & return
    set s to s & "Sometimes there is a sidebar, sometimes there is none, particularly "
    set s to s & "with a window that already exists." & return & return
    set s to s & "Method one seems to work better, but does not always hide the sidebar." & return & return
    set s to s & "Please select a choice..."
    set b1 to "TestOne"
    set b2 to "TestTwo"
    set aReturn to display dialog s buttons {b1, b2} default button {b2}
    if (button returned of aReturn = b1) then
    return 1
    else
    return 2
    end if
    end tell
    end Choose
    -- ---------+---------+---------+---------+---------
    on ShowMsg(s, howLong)
    tell application "Finder"
    activate
    if (howLong = 0) then
    set theTIme to 3
    else
    set theTIme to howLong
    end if
    set b1 to "OK"
    display dialog s buttons {b1} default button {b1} giving up after theTIme
    end tell
    end ShowMsg
    -- ---------+---------+---------+---------+---------

    This is a re-post since I learned how to format the output a little nicer...
    on script_title()
       Filename : finderwindowprops.scpt (Script Debugger)
       Author : Bill Hernandez
       Version : 1.0.0
       Updated : Thursday, December 14, 2006 ( 6:01 PM )
    end script_title
    -- ---------+---------+---------+---------+---------
    on script_notes()
       Setting the sidebar width for finder windows is not working consistently,
       nor correctly for me. I had written several scripts to standardize the
       display of windows on screen several months ago, and they have quit working
       during the last couple of versions of the OS, not sure what has happened ?
    end script_notes
    -- ---------+---------+---------+---------+---------
    on run
       tell me
          set this_folder to (path to current user folder)
          SetupWindow(this_folder)
          if (ChooseTest() = 1) then
             TestOne(this_folder)
          else
             TestTwo(this_folder)
          end if
          set str to ""
          set str to str & "The Sidebar Width Should be Zero" & return & return
          set str to str & "It had worked well several months ago when I was doing some "
          set str to str & "window stacking, but it seems to be broken for me..." & return & return
          set str to str & "iMacG5 running OSX 10.4.8" & return & return
          ShowMsg(str, 10)
       end tell
    end run
    -- ---------+---------+---------+---------+---------
    on SetupWindow(whichFolder)
       tell application "Finder"
          activate
          set counter to 1
          try
             open whichFolder
             select Finder window 1
          on error
             set win to make new Finder window
          end try
          set bounds of (Finder window counter) to {20, 60, 700, 700}
          set current view of (Finder window counter) to icon view
          set toolbar visible of (Finder window counter) to true
          set sidebar width of (Finder window counter) to 300
          set w_props to get properties of Finder window 1
          set str to ""
          set str to str & "The Sidebar Width Should be 300" & return & return
          set str to str & "Sidebar Width : " & ((sidebar width) of w_props)
          my ShowMsg(str, 0)
       end tell
    end SetupWindow
    -- ---------+---------+---------+---------+---------
    on TestOne(whichFolder)
       tell application "Finder"
          activate
          set counter to 1
          try
             open whichFolder
             select Finder window 1
          on error
             set win to make new Finder window
          end try
          set bounds of (Finder window counter) to {20, 60, 600, 600}
          set current view of (Finder window counter) to list view
          set toolbar visible of (Finder window counter) to true
          set sidebar width of (Finder window counter) to 0
          set w_props to get properties of Finder window 1
          set str to ""
          set str to str & "The Sidebar Width Should be Zero" & return & return
          set str to str & "Sidebar Width : " & ((sidebar width) of w_props)
          my ShowMsg(str, 0)
       end tell
    end TestOne
    -- ---------+---------+---------+---------+---------
    on TestTwo(whichFolder)
       tell application "Finder"
          activate
          set w_props to {}
          set w_props to w_props & {sidebar width:0}
          set w_props to w_props & {current view:list view}
          set w_props to w_props & {toolbar visible:true}
          set w_props to w_props & {statusbar visible:true}
          set w_props to w_props & {bounds:{20, 60, 400, 600}}
          try
             open whichFolder
             select Finder window 1
          on error
             set win to make new Finder window
          end try
          set w_ref to Finder window 1
          set properties of w_ref to w_props
          set w_props to get properties of Finder window 1
          set str to ""
          set str to str & "The Sidebar Width Should be Zero" & return & return
          set str to str & "Sidebar Width : " & ((sidebar width) of w_props)
          my ShowMsg(str, 0)
       end tell
    end TestTwo
    -- ---------+---------+---------+---------+---------
    on ChooseTest()
       tell application "Finder"
          activate
          set s to ""
          set s to s & "The sidebar width is inconsistent no matter which method I use." & return & return
          set s to s & "Sometimes there is a sidebar, sometimes there is none, particularly "
          set s to s & "with a window that already exists." & return & return
          set s to s & "Method one seems to work better, but does not always hide the sidebar." & return & return
          set s to s & "Please select a choice..."
          set b1 to "TestOne"
          set b2 to "TestTwo"
          set aReturn to display dialog s buttons {b1, b2} default button {b2}
          if (button returned of aReturn = b1) then
             return 1
          else
             return 2
          end if
       end tell
    end ChooseTest
    -- ---------+---------+---------+---------+---------
    on ShowMsg(s, howLong)
       tell application "Finder"
          activate
          if (howLong = 0) then
             set theTIme to 3
          else
             set theTIme to howLong
          end if
          set b1 to "OK"
          display dialog s buttons {b1} default button {b1} giving up after theTIme
       end tell
    end ShowMsg
    -- ---------+---------+---------+---------+---------

  • Why can't I get any devices to show in the sidebar of a finder window?

    Until recently I had devices (hard drives, DVD's, disk images, etc show up under devices in the sidebar of a finder window. Now none of these items show up. In Finder Preferences>Sidebar>Devices I nave all 4 checked (Bob's Mac Pro, Hard disks, External disks and CDs, DVDs and iPods). I tried rebooting. I tried unchecking the 4 boxes and rechecking them to no avail. It's annoying that I have to find an icon on the desktop to open these items. Any suggestions?
    This is a Mac Pro running 10.9.5.

    Do a backup.
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Select Library. Then go to Preferences/com.apple.finder.plist and com.apple.sidebarlists.plist.  Move the .plists to your desktop.
    Re-launch Finder by restarting the computer and test. If it works okay, delete the plists from the desktop.
    If the same, return the .plists to where you got it  from, overwriting the newer one.
    Thanks to leonie for some information contained in this. 

  • HT5390 mac os x is there a maximum on connected servers in the sidebar of the Finder window?

    Hello,
    I have a server with four partitions connected to my mac. At startup they
    automatically connect, and show up in the sidebar. Or... that's how it was for years.
    The new Mountain Lion sidebar shows only two of them, and it is impossible to
    put the others in the sidebar. It refuses to add them.
    Is there a limit of servers(partitions) that may be added to the left sidebar of the finder?
    ps. Maybe i am the only one that has this issue.
    I look for a .plist preference file to delete, but i don't know which one.
    Thanks
    Hans

    Hello Hans,
    Normally in Client OSX the limit is 10.
    Mount that Share once, then once the Globe Icon shows up on the Desktop, drag that Globe Icon to the right side of the Dock between Applications & Trash. You now have a Dynamic Mount, a quick click on the Icon in the Dock will connect you.
    On the multiple Shortcuts...
    Mount them all, when show up on the Desktop, then create a new Folder maybe named Shares on/in the Desktop, drag all those Shares shown on the Desktop to that Folder, (you can even rename them once there, if you wish), drag that Folder to the right side of the Dock between Applications & Trash, this should give you a popup menu to select from.:-)
    To automount them, drag those Aliases to the Accounts Pref Pane's Login Items Window.

  • I recently burned a photos on a few DVDs using finder. Now I have unwanted files in the sidebar of the finder window that are unresponsive and can not be deleted. I have 3 "untitled DVD " files and 1 "spaces app"

    I recently burned  photos on a few DVDs using finder. Now I have unwanted files in the sidebar of the finder window that are unresponsive and can not be deleted. I have 3 "untitled DVD " files and 1 "spaces app" file. The unwanted files occur under "Places"
    What do i have to do to clean up my  finder sidebar?
    HJ

    Hold down the command button while dragging he items out of the finder window.

  • Is there anyway to track my ipod based on serial number if find my iphone isn't one?

    Is there anyway to track my ipod based on serial number if find my iphone isn't one?

    f you have previously set up/configured the FindMyIPod service in the iPod's settings, you might be able to track it that way by going to www.icloud.com and signing in with your Apple ID.  Then click the FindMyiPod icon.  This also requries that the iPod Touch be still powered on, connected to a nearby Wi-Fi network whose location has been correctly entered into Apple's location database) and not have been restored by somebody else who my have located the device.
    Otherwise, I'm afraid you are out of luck and will need to look for it as you would anything else you lose. You should report the lost item to the local authorities and change any and all passwords to any accounts you may have set up or accessed with the device. Apple can do nothing to help.
    Reporting a lost or stolen Apple product
    B-rock

  • HELP.i lost my iphone 4s  in BANGLADESH. i have imei  number  and serial number. how  find my device  .

    Help.I  lost  my iphone 4s  in Bangladesh.I have imei number and serial number .how find my iphone 4s?

    Unless you have Find My Phone activated, you cannot find it.
    What To Do If Your iDevice Is Lost Or Stolen
    iPhone, iPod Touch, and iPad
    If you activated Find My Phone before it was lost or stolen, you can track it only if it is connected to the Internet by Wi-Fi or cellular. What you cannot do is track your device using a serial number or other identifying number. You cannot expect Apple or anyone else to find your device for you. You cannot recover your loss unless you insure your device for such loss. It is not covered by your warranty.
    If your iPhone, iPod, iPod Touch, or iPad is lost or stolen what do you do? There are things you should have done in advance - before you lost it or it was stolen - and some things to do after the fact. Here are some suggestions:
    This link, Re: Help! I misplaced / lost my iPhone 5 today morning in delta Chelsea hotel downtown an I am not able to track it. Please help!, has some good advice regarding your options when your iDevice is lost or stolen.
      1. Reporting a lost or stolen Apple product
      2. Find my lost iPod Touch
      3. AT&T. Sprint, and Verizon can block stolen phones/tablets
      4. What-To-Do-When-Iphone-Is-Stolen
      5. iCloud- Use Lost Mode
      6. What to do if your iOS device is lost or stolen
      7. 6 Ways to Track and Recover Your Lost/Stolen iPhone
      8. Find My iPhone
      9. Report Stolen iPad | Stolen Lost Found Online
    It pays to be proactive by following the advice on using Find My Phone before you lose your device:
      1. Find My iPhone
      2. Setup your iDevice on iCloud
      3. OS X Lion/Mountain Lion- About Find My Mac
      4. How To Set Up Free Find Your iPhone (Even on Unsupported Devices)

  • My old phone doesn't turn and I want to get the serial number for it to see if it's eligible for the battery replacement with Apple. Can I use the IMEI number to find the serial number?

    My old phone doesn't turn and I want to get the serial number for it to see if it's eligible for the battery replacement with Apple. Can I use the IMEI number to find the serial number?

    Call applecare.  They can look up the IMEI number in their system to see if the device is eligible.
    AppleCare US phone number: (800)-694-7466
    Contact Apple for support and service
    http://support.apple.com/kb/HE57

  • How can i find my iPhone 4 is genuine? Can i use serial number to find out ?

    How can i find my iPhone 4 is genuine? Can i use serial number to find out ?

    Yes.  Enter your serial number here:
    https://selfsolve.apple.com/agreementWarrantyDynamic.do

  • I placed a personal folder in the sidebar of the finder. It had NB folders inside. This sidebar folder accidentally got dragged and went "poof" into a cloud of smoke. I cannot find the folder or it's NB contents anywhere. Help years of work!

    Hi,
    I need your help Please, I fear I might have lost years worth of work. 
    I had created 3 personal folders In my Home folder.
    I then created a new folder called "active folder" and dragged these 3 folders inside, removing them from the Home folder.
    I then dragged my newly created folder "Active Folder" to the Sidebar of the finder.
    When I had closed finder and reopened it - the "active Folder" folder was unable to open.
    A friend tried to help- dragged "active folder" off the sidebar.. and it disappeared with a cloud effect.
    I cant find that folder or its NB contents anywhere,
    Please help me with some advice if you can.
    Not using tiger or Lion.*

    When you created that "active folder," where did you create it?  And after you added it to the sidebar, what did you do with it?  If the data is truly nowhere to be found on your system, even using EasyFind, then I suspect you mistakenly deleted it, thinking that you had copied it to the sidebar.  That would explain why you later found that the "active folder" was unable to open from the sidebar.  The sidebar is just another way to access the original item, and if you deleted the original item, it can't do its job.
    Unfortunately, if this is what you did and you don't have any backups, you may be out of luck.  I don't know what you mean by saying you "did the whole data recovery 1's and 0's," but if you haven't already done so, you should try some dedicated data recovery software, to see if those deleted files may still be on the drive.  See Recovering deleted files.
    Ultimately, this is not a flaw in the Mac system, it is a flaw in your use of it.  I strongly recommend some reading to get up to speed:
    http://www.apple.com/support/mac101/
    http://www.amazon.com/Mac-OS-Lion-For-Dummies/dp/111802205X/
    http://www.reedcorner.net/guides/backups/
    http://www.takecontrolbooks.com/backing-up

  • HT4061 I lost my iPhone I need serial number to find it how can have serial number??

    I lost my iPhone I need serial number to find it how can have serial?

    iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • Any way to find serial number from find my iphone

    Any way to find serial number from find my iphone?
    We have about 2 dozen or so devices out in the field but I just got notice that a new iCloud account was added to a device registered for my company. The name is unknown to any of us in IT and Find My iPhone reveals that it is at a strange location. Any way to find out WHICH device it is, besides "David's iPad"? And if you have an iPad2 would it say, "iPad 2?" or still iPad?

    Any way to find serial number from find my iphone?
    No.
    And if you have an iPad2 would it say, "iPad 2?" or still iPad?
    It would say whatever the device has been named as by the person who set it up.

  • The have stolen my laptop, how can I find it? is it possible to use serial number to find it?

    they have stolen my laptop macbook pro i7, still new and got all my research, how can i find it and is it possible to use the serial number to find it? please help

    Unless you have an active MobileMe account with Find My Phone activated for the laptop and the laptop is connected to a WiFi site, then you cannot locate it. File a police report and file with your insurance company.

  • My iphone was stolen, and if I can through the serial number to find my IMEI?

    My iphone was stolen, and if I can through the serial number to find my IMEI?

    http://support.apple.com/kb/HT1267

Maybe you are looking for