Update to existing User Tip

This is an update to Date and Time in the Menu Bar (10.3, 10.4) to account for the fact that it is also applicable in 10.5.
In addition it corrects the appearance of 4 horizontal rules in the table which appear because the Jive software is broken if you give it valid HTML. I cannot correct the double spacing in the table, which again is Jive misbehaving with stuff between <pre> and </pre> tags. If you know a way around this, while preserving the single horizontal spacing to keep the table aligned, please modify it accordingly.
Tip follows:
Put the Date in the Menu Bar (10.3, 10.4, 10.5)
To put the date, as well as the time, into the Menu Bar in 10.3 or higher is not the same as in 10.2 and earlier (see the corresponding FAQ for 10.2), and to complicate things further, the format strings used are different. I have run this on an English language version for several years with no apparent problems – others have reported that it works on systems localised to French and German.
This change can only be accomplished using the Terminal application, which you will find in /Applications/Utilities. If you are not comfortable using commands at a command line prompt, do not attempt this change.
Note You should not attempt to type these commands directly, rather use copy and paste to get the commands into a Textedit document (set to Plain Text from the Format menu). Be warned that sometimes copying and pasting from a browser window puts an additional space at the end of a line, so if a command wraps, check that the line has exactly one space where it wraps, and no end-of-line character there. Extra space happens to matter in the "defaults" command because the line wrap tends to occur inside a quoted format string.
The commands below will give, for example, "Thu 2 Dec, 02:15 pm" in the menu bar. If you're in the USA, you might prefer to have the month precede the day, so you would reverse the order of the 'd' and 'MMM' format specifiers. Note that if you put the day-of-week format specifier (EEE) in the string, you will get two days listed if the "Show the day of the week" box is checked in System Preferences > Date & Time > Clock, so un-check that.
Edit the format to your choice (see below for the different codes), then when you are happy with it, paste it into Terminal, and press the return key. If it works, Unix won't tell you – it is very concise. So, one command at a time, and press return after each.
First, take a backup of the existing preference file. Only do this the first time you attempt this – the idea is to keep a copy of the original Apple file. The first command gets to the right directory:
cd ~/Library/Preferences
Then copy the existing file, preserving modification dates, etc:
cp -p .GlobalPreferences.plist .GlobalPreferences.plist.orig
Now set our desired format ALL ONE LINE, please:
defaults write -g AppleICUTimeFormatStrings -dict-add 2 "d MMM, hh':'mm':'ss' 'a"
It is important now to immediately reset the Menu Bar, or our changes will be undone!
killall SystemUIServer
This will cause your Right Hand Menu Bar to disappear and then re-appear in the new format. (This often resets the "Show the day of the week" and "Show seconds" options in "Date & Time", so you may wish to change these). If all looks OK, it is a good idea to save a copy (but you need to have executed the 'cd' command above first):
cp .GlobalPreferences.plist .GlobalPreferences.plist.bak
My experience with this indicates that your changes can be lost if you go into System Preferences > International > Formats and click either of the "Customise" buttons for Date and Time (even if you then "Cancel"). If this happens, it is easy to restore things from this copy:
cd ~/Library/Preferences
cp .GlobalPreferences.plist.bak .GlobalPreferences.plist
killall SystemUIServer
To go back to the Apple default settings, use the same command sequence but replace ".bak" by ".orig".
Formats for Date/Time
<pre> Symbol Meaning Presentation Example
G era designator (Text) AD
y year (Number) 1996
M month in year (Text & Number) July & 07
d day in month (Number) 10
h hour in am/pm (1~12) (Number) 12
H hour in day (0~23) (Number) 0
m minute in hour (Number) 30
s second in minute (Number) 55
S millisecond (Number) 978
E day of week (Text) Tuesday
e day of week/local (1~7) (Number) 2
D day of year (Number) 189
F day of week in month (Number) 2 (2nd Wed in July)
w week in year (Number) 27
W week in month (Number) 2
a am/pm marker (Text) PM
k hour in day (1~24) (Number) 24
K hour in am/pm (0~11) (Number) 0
z time zone (Text) Pacific Standard Time
' escape for text
'' single quote '</pre>
The count of pattern letters determines the format, as follows:
(Text): 4 or more, use full form, (Number): the minimum number of digits. Shorter numbers are zero-padded to this amount (e.g. if "m" produces "6", "mm" produces "06"). Year is handled specially; that is, if the count of 'y' is 2, the Year will be truncated to 2 digits. (e.g., if "yyyy" produces "1997", "yy" produces "97".)
(Text & Number): 3 or over, use text, otherwise use number. (e.g., "M" produces "1", "MM" produces "01", "MMM" produces "Jan", and "MMMM" produces "January".)
This table, with additional notes, can be found at the International Components for Unicode (ICU) User Guide website. Reprinted by permission from International Business Machines Corporation copyright (2000 - 2004).

Put the Date in the Menu Bar (10.3, 10.4, 10.5)
To put the date, as well as the time, into the Menu Bar in 10.3 or higher is not the same as in 10.2 and earlier (see the corresponding FAQ for 10.2), and to complicate things further, the format strings used are different. I have run this on an English language version for several years with no apparent problems – others have reported that it works on systems localised to French and German.
This change can only be accomplished using the Terminal application, which you will find in /Applications/Utilities. If you are not comfortable using commands at a command line prompt, do not attempt this change.
Note You should not attempt to type these commands directly, rather use copy and paste to get the commands into a Textedit document (set to Plain Text from the Format menu). Be warned that sometimes copying and pasting from a browser window puts an additional space at the end of a line, so if a command wraps, check that the line has exactly one space where it wraps, and no end-of-line character there. Extra space happens to matter in the "defaults" command because the line wrap tends to occur inside a quoted format string.
The commands below will give, for example, "Thu 2 Dec, 02:15 pm" in the menu bar. If you're in the USA, you might prefer to have the month precede the day, so you would reverse the order of the 'd' and 'MMM' format specifiers. Note that if you put the day-of-week format specifier (EEE) in the string, you will get two days listed if the "Show the day of the week" box is checked in System Preferences > Date & Time > Clock, so un-check that.
Edit the format to your choice (see below for the different codes), then when you are happy with it, paste it into Terminal, and press the return key. If it works, Unix won't tell you – it is very concise. So, one command at a time, and press return after each.
First, take a backup of the existing preference file. Only do this the first time you attempt this – the idea is to keep a copy of the original Apple file. The first command gets to the right directory:
cd ~/Library/Preferences
Then copy the existing file, preserving modification dates, etc:
cp -p .GlobalPreferences.plist .GlobalPreferences.plist.orig
Now set our desired format ALL ONE LINE, please:
defaults write -g AppleICUTimeFormatStrings -dict-add 2 "d MMM, hh':'mm':'ss' 'a"
It is important now to immediately reset the Menu Bar, or our changes will be undone!
killall SystemUIServer
This will cause your Right Hand Menu Bar to disappear and then re-appear in the new format. (This often resets the "Show the day of the week" and "Show seconds" options in "Date & Time", so you may wish to change these). If all looks OK, it is a good idea to save a copy (but you need to have executed the 'cd' command above first):
cp .GlobalPreferences.plist .GlobalPreferences.plist.bak
My experience with this indicates that your changes can be lost if you go into System Preferences > International > Formats and click either of the "Customise" buttons for Date and Time (even if you then "Cancel"). If this happens, it is easy to restore things from this copy:
cd ~/Library/Preferences
cp .GlobalPreferences.plist.bak .GlobalPreferences.plist
killall SystemUIServer
To go back to the Apple default settings, use the same command sequence but replace ".bak" by ".orig".
Formats for Date/Time
Symbol Meaning Presentation Example
G era designator (Text) AD
y year (Number) 1996
M month in year (Text & Number) July & 07
d day in month (Number) 10
h hour in am/pm (1~12) (Number) 12
H hour in day (0~23) (Number) 0
m minute in hour (Number) 30
s second in minute (Number) 55
S millisecond (Number) 978
E day of week (Text) Tuesday
e day of week/local (1~7) (Number) 2
D day of year (Number) 189
F day of week in month (Number) 2 (2nd Wed in July)
w week in year (Number) 27
W week in month (Number) 2
a am/pm marker (Text) PM
k hour in day (1~24) (Number) 24
K hour in am/pm (0~11) (Number) 0
z time zone (Text) Pacific Standard Time
' escape for text
'' single quote '
The count of pattern letters determines the format, as follows:
(Text): 4 or more, use full form, (Number): the minimum number of digits. Shorter numbers are zero-padded to this amount (e.g. if "m" produces "6", "mm" produces "06"). Year is handled specially; that is, if the count of 'y' is 2, the Year will be truncated to 2 digits. (e.g., if "yyyy" produces "1997", "yy" produces "97".)
(Text & Number): 3 or over, use text, otherwise use number. (e.g., "M" produces "1", "MM" produces "01", "MMM" produces "Jan", and "MMMM" produces "January".)
This table, with additional notes, can be found at the International Components for Unicode (ICU) User Guide website. Reprinted by permission from International Business Machines Corporation copyright (2000 - 2004).

Similar Messages

  • Update / Modify existing users attribute in AD

    Dear all,
    I have several 100 users across a few OUs and I need to mass update the mailNickname attribute for them.
    To explain further there are a lot of users which have their mailNickname attribute set so FirstnameSurame and I want to change it to FirstIntial.Surname. Can I do this with a csv file?

    This script from the repository could help get you where you need to be:
    Update User attributes from CSV
    What verison OS are your DCs running?
    This could help if you need VB
    Update User Attributes from CSV File (v1.1)
    And last maybe a freeware like below could help
    Bulk AD Users
    If it answered your question, remember to “Mark as Answer”.
    If you found this post helpful, please “Vote as Helpful”.
    Postings are provided “AS IS” with no warranties, and confers no rights.
    Active Directory: Ultimate Reading Collection

  • I changed emails.  My user ID will not let me get into my phone to do any updates, but the user id is associated with an email address that no longer exists

    I changed emails.  My user ID will not let me get into my phone to do any updates, but the user id is associated with an email address that no longer exists

    What a mess the Apple ID, and associating emails, ID etc has got itself in
    I have a new iPad but after 2 days of trying all sorts still can't sync it because it is says it is associated to the other via the iCloud
    I can't use my alternate email address to setup a new Apple ID account as it says it's already used or associated, but I haven't knowingly done anything
    One message says "This email address is already in use or you may already have an Apple ID associated with this email address. Please try again or sign in using your existing Apple ID."
    I am at a complete loss on what to do

  • Every time I try to update my existing apps I'm not successful and I get a message saying it can't connect. I've try changing my password and still no success.

    I'm getting a can not connect message every time I try to update my existing apps that need to be updated. I even put in a new password thinking that was the problem. Can someone please help me. This has been going on for two weeks.

    Hello Priscilla43,
    The following article provides tips and suggestions that can help restore your connection to the iTunes Store.
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    Cheers,
    Allen

  • How to Apply a Newly Created Access Policy on Existing Users in OIM????????

    How to Apply a Newly Created Access Policy on Existing Users in OIM?
    When the rule is getting failed the user is getting removed from the group but resource is not getting revoked. This is happening only for the old uses..for the users which i created now it working fine..i mean its resource is getting revoked.
    (Retrofit access policy" is checked on the Access Policyand Revoke if not longer applied is checked.)
    For the old users i see the POl_Key is null, for new users i see a value '10'. So i updated the pol_key for old users same as it got generated for new users '10'.
    i even updated the form version too but still revoke doesn't work.
    I cant go for the below approach..
    In order to apply a newly created Access Policy on existing users, one has to make sure that:
    1) "Retrofit access policy" is checked on the Access Policy.
    2) Then run the "Set User Provisioned Date" Schedule task to apply the Access Policy on the existing users in OIM.
    Note: After 9.1.0.1 BP03 the access policy execution has been moved to a new scheduled task "Evaluate User Policies" as mentioned inDocument 839368.1 :How to Use Access Policies to Provision with Groups.
    Is there any other approach i can try.. if you have any idea please reply me asap
    Thanks..

    Thanks for the reply kevin..
    We decided to try the Schedule task (Set User Provisioned Date).
    But i see one problem here after seeing this post in metalik --> Can Access Policies Manage The Life-cycle Of Users Created via Reconciliation? [ID 1136540.1]
    According to this post Access Policies framework does not manage users who are obtained either through trusted reconciliation or target reconciliation.
    Is there any custom way to achieve this??
    How does the access policy framework revoke resource work? (revoke if no longer applies)??
    Edited by: IDMuser19 on Jun 21, 2011 11:43 PM

  • PF attribute modification in Access Policy for existing users.

    Hi Guys,
    I have an access policy for provisioning a resource. Suppose if I make some changes for the process form attribute value inside the access policy,How can I have the same attribute value reflected in the process form of users who are already provisioned by the access policy?
    Direct database update wont be a good idea here as I am having multiple access policies for the same resource. Is there any table which is having the relation between provisioned resource and curresponding access policy if at all I have to go for a custom scheduled task?
    Thanks,

    Does this solution also supposed to work in OIM 11g? I Tried it but data on the main form does not get reflected on the process form of existing users. For child data it does work.
    Edited by: bsteen on Aug 5, 2011 5:21 AM

  • What is the best tool for updating an existing Domain?

    What I want to do is create an installation program that updates an existing domain
    with a new server and a new application targeted to that server. The installation
    program has to work with any valid domain and needs to be easy for the end-user.
    Using a script to extend an existing domain using the configuration wizard insilent mode seems like a real good approach. The problem is that a Server is NOT
    a configuration object type available when extending an existing domain. So I
    can’t add a new server to an existing domain with this approach.
    Using ANT tasks – wlconfig and wlserver would probably do the trick. The issuehere is that the domain admin server must be running, and my preference is that
    this not be the case. Using JMX has the same issue.
    So what I’m I left with in terms of tools? Anything? Or do I have to manipulatethe config.xml file directly? Is this a good idea?
    Has anyone else faced a similar scenario, and what solution did you come up with?
    Thank You

    ANT and wlconfig is a way.
    config.sh has an off-line tool for updates.
    whshell is an alternative to ANT.
    We are working on a solution to unify all of this in Diablo.
    cheers
    mbg
    "Greg" <[email protected]> wrote in message
    news:3fa294c7$[email protected]..
    >
    What I want to do is create an installation program that updates anexisting domain
    with a new server and a new application targeted to that server. Theinstallation
    program has to work with any valid domain and needs to be easy for theend-user.
    >
    Using a script to extend an existing domain using the configurationwizard in
    silent mode seems like a real good approach. The problem is that a Serveris NOT
    a configuration object type available when extending an existing domain.So I
    can't add a new server to an existing domain with this approach.
    Using ANT tasks - wlconfig and wlserver would probably do the trick. The
    issue
    here is that the domain admin server must be running, and my preference isthat
    this not be the case. Using JMX has the same issue.
    So what I'm I left with in terms of tools? Anything? Or do I have to
    manipulate
    the config.xml file directly? Is this a good idea?
    Has anyone else faced a similar scenario, and what solution did you comeup with?
    >
    Thank You

  • What does the Mac App store mean for existing users of Aperture?

    I was wondering how the Mac App store will affect existing users of the software. I have purchased Aperture and upgrades since its launch but because I've not purchased through the App store, how will I gain access to future upgrades?
    When I go to the Aperture app in the store it shows as being installed but as I've not purchased it through the store, will I be eligible for future upgrades or will Apple expect me to purchase again?

    There is no way Apple can update Aperture 3 without offering that update to every user, regardless of where the app was purchased. So, expect that Aperture 3.1.2 or whatever will be available to you in some fashion.
    When the next paid Upgrade (to Aperture 4?) comes along, then we'll have to see what arrangements the offer.
    Regards
    TD

  • Time Machine Backup [Update Needed] for User

    So I made a time machine backup of my MacBook Pro to put on my MacBook Air, and when I did it created 2 users. One says Administrator (my normal one) and the other says [Update Needed]
    However, when I log on to the [Update Needed] user, everything is the exact same. I just cant figure out what update it's referring to. When I go to system preferences > Users/Groups, only the Admin user is listed there.
    Any ideas on how to fix?

    dgordon412 wrote:
    (80 GB, had only 200 MB free)
    That's likely corrupted your system. You should have a minimum of 10% - 15% free at all times. That's almost certainly why it wouldn't restart.
    even though i just erased everything, and 74.2 GB show as free.
    There must be something else on the drive; if you erase it, it should have just under 80 GB free. Is there another partition?
    Did you erase with a Leopard Install disc or a Snow Leopard disc? If you used a Leopard disc, that might explain showing only 74.2 GB free (it counts differently).
    If so, use your +Snow Leopard+ install disc to do a complete reformat, and try to restore the backup. A Leopard disc cannot restore a Snow Leopard backup. Even the Snow Leopard disc may not work, as it's just too full and/or your system was damaged by getting too full.
    All my previous backups seem to fit fine, but apparently the last time Time Machine backed up more from my disk than can fit on my disk! It seems having a hard disk close to full is enough to render a backup effectively useless.
    Having an OSX drive that full will make your Mac extremely sluggish, cause data corruption and/or loss, apps to crash, etc.
     Guess I'll have to restore from a previous backup, then manually copy the newer files. Just wanted to alert others to this insane problem, so it doesn't happen to them.
    If you can get your Mac running, you need to make several GBs of space immediately.
    If all else fails, reformat the internal HD and install OSX from your Snow Leopard Install disc, then use +Setup Assistant+ after the Welcome video to transfer +*most, but not all+* of your stuff from the backup. Omit the contents of one or more large sub-folders in a home folder (such as Photos, Music, or Movies).
    See #19 in [Time Machine - Frequently Asked Questions|http://web.me.com/pondini/Time_Machine/FAQ.html] (or use the link in *User Tips* at the top of this forum), for details.

  • Attention existing users - Signing up for Adobe Story

    As an existing user, you now have the option of signing up for a free  1-year subscription of CSLive or just Adobe Story.
    In case you get stuck somewhere during the process of signing up, the  best solution is to just wait for a few minutes and re-launch the  application. This allows the time (usually not more than a minute or  two) for your account to get updated with the latest subscription  details.
    We understand that this is not the best experience and are working hard to resolve it before our next update.
    Please feel free to reach out to [email protected] for any login-related issue.
    Hope you enjoy the latest features!
    Sincerely,
    Adobe Story team

    Hi Srinath,
    After today, will it still be possible to sign up to use Adobe Story?  I've got some folks I'm collaborating with and I know they have Adobe ID's, but I'm not sure if they've actually signed up to use Story yet.  Will they be locked out tomorrow?
    Thanks,
    Brent Anderson

  • font color="green" How to Find Users Tips (FAQs) on iChat /font

    Hi,
    Some of the more regular Visitors to this Forum may have noticed that above the Topic List is a "Recent Tips" area that has the most recently Updated Users Tips.
    There more, (you may wonder where FAQ 1 is for example).
    One way to find them is to use the Search feature just above your Profile and My Post an Setting Links in the box on the right.
    Many of the Former FAQS and Users tips have had the Search tag kichat added to them.
    Using this and changing the date option to All How to Find Users Tips (FAQs) on iChat">brings up 16 Links in this Example Search
    One of the Level 4 Posters, Red Dwarf, once spent some time going through the whole of the Users Tips Library and posting them in to two formats.
    This link is to the iChat section within his 'by Forum/application' listing.
    There is another 'By Author' Version
    The Whole Users Tips Library is here. IT has a header item that tells you who can post/Suggest new Contributions with a link to that additional forum.
    I hope you find this useful.
    10:06 PM Tuesday; April 14, 2009

    The Section above the topic List in this Forums contains Recent Users Tip section and ifo about Perian 1.1.3 has been added recently.
    (In relation to this post's date)
    8:54 PM Wednesday; May 6, 2009
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • User Tips General Procedure

    Hey all,
    I was thinking of drafting a user tip or two for the FCE forum and I thought I'd first ask here regarding the couple questions more experienced posters might have the answer to.
    1. Is it even worth posting a User Tip seeing as the forum transformation is happening in the near future? Will these tips remain prominent in the new forum layout? (this one is mainly directed toward the Hosts.)
    2. Would you recommend posting a separate tip for each narrow topic, or a large combined one such as "Basic Troubleshooting Procedure in Final Cut Express" that addresses more than one common problem?
    Thanks for the advice!
    Sasha

    Hi,
    I still use the Users Tips Contribution Forum (your post reminded me to check my last).
    If you happen to know the knowledge base lettering to aid Searches I would include that in the leading info (Such as kichat or kisight)
    I tend to write items that address a specific topic issue and address it to as many versions of iChat as possible. (As I specialise in iChat)
    Examples
    I do have this in support of that as well.
    I know iFelix keeps these Pages
    Pondini seems to have a Users Tip on Time Machine that is Title/links to external pages. Keeps the Users tip Short(er), groups the topic but keeps the detail somewhere else which can be easier to update.
    I started with Users Tips then realised I had more info than I could get in the Tips (Old Forum Software) so started keeping a web site. (it now has a life of it's own )
    Basically, as Eric says, it is do as you feel.
    However if you plan to cover everything you can think of I would think of combining the two.
    I use Level4 And save the Message as a Snippet (to Save a Copy) so that I can edit newer version when required)
    I would certainly recommend keeping something locally preferably something that can handle the HTML links and formatting you use.
    10:23 PM Wednesday; November 24, 2010

  • Invalid Existing Users email user name or password

    In trying to setup a second email account and I am prompted for the user name and password of the Existing Users email account.  I assume that this information is the same as that needed to access my regular email account, such as through Outlook.  However, I get an invalid user name or password response when I attempt to log in.  Is the BlackBerry system asking for different information than what I am providing?
    Solved!
    Go to Solution.

    Hi there!
    Sorry for the delay!
    1) Who is the "Existing User"?
    2) What exactly is prompting your for credentials? What does the screen look like? What did you do (exactly) to get the prompt?
    We need some details to figure out what you are seeing...you are our eyes and hands...we can help, but we need the details in order to do so.
    Get back to us with some more details and we'll try to help.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • What's the average time for a User Tip to get published?

    Hello fellow Discussions members.
    I have posted [a tip in the User Tips Contributions Forum concerning the interworking of Apple Mail and Gmail IMAP|http://discussions.apple.com/thread.jspa?threadID=1692982] on 3rd of September 2008 and in a follow-up post announced that it's ready for publication the same day. I never got any feedback, complaints or objections, so I assume the tip is ok. I followed the given directions on the procedure word-for-word.
    Now, if you enter the User Tips Contributions Forum you can read the following concerning the process of publication (step 4):
    *Approximately 5 days* after you announce that your tip is completed (if there is no objection from another user), a Host will lock the thread and either move your completed tip to the User Tips Library or edit the existing tip. (My emphasis)
    So, obviously, the 5 day period is by now long exceeded and I was just wondering if my post will ever get published... Don't get me wrong, it's ok if it takes more than a month for a tip to get published - as long as potential contributors get informed that way. *What I find irritating is the statement about the 5 day period as it's obviously misleading.* Either my tip is inappropriate (in which case I expect a notification) or it is all right and gets published during the stated period. Neither happened up to this day. So, what gives?
    I'd appreciate any feedback concerning this. Thanks in advance for your replies.
    floba

    a brody, thanks for your quick reply. Although you might get a different impression from my post, I am patient All I ask for is to honestly state the time a publication may take. I come to the conclusion that the talk about "approximately 5 days" is complete eyewash!
    floba

  • Existing Users Login to Setup Email

    Just got a new Blackberry Curve 3G today through Sprint.  Sprint transferred my contacts - fine. 
    When i went to setup my email, it says "Existing Users - If you want to access your email settings or you changed your device, login"
    I have no idea what the User name and password is as I have never set it up on this phone before. 
    Sprint tells me this is a Blackberry issue. 
    How can I either get my user name and reset my password, or
    reset both my username and password?
    Solved!
    Go to Solution.

    R3N01R wrote:
    Yes they setup the contacts from my old blackberry. 
    How do I set the BIS account up new?
    If you had an existing BlackBerry account, then you're an existing user
    You would have a login and password for that account. If you don't have that, call Sprint customer service and tell them you need to reset that account, and have this new device PIN/IMEI associated with the account.
    If nothing else, Sprint needs to delete the old BIS account from your records and add it new again, voila, a new account.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for