How can I remove the Apple ID authorization only on one computer and authorize another in his place?

how can I remove the Apple ID authorization only on one computer and authorize another in his place?

De-authorize the computer in question.
Then authorize the new computer.
Or de-authorize all computers and authorize only the ones that actually exist.

Similar Messages

  • How can i remove the apple watch app

    this is yet another app i will never use, how can i remove it?

    You can't remove it because the app is part of the system update and any app that is part of the software cannot be removed.
    You can only hide it in a folder so that you can't see it.

  • How can I remove the entire group "On My iPhone" under contact and notes?

    I am using iCloud to sync my contact and notes. It's pretty good right now since it can maintain a signle copy of each without duplicate entries.
    However, the outstanding issue is that I want to remove the entire group "On My iPhone" under contact and notes as a lot of duplicates inside there.
    How can I do that? Or de-duplicateing the entries there is also fine.  Thanks.

    I found a solution for this by using iCloud and iTunes. It is applicable to Mac users.
    For Contacts
    1. Make a source copy of contacts without any duplication in iCloud contact.
    2. Remove any groups in Address Book in your Mac, so that the number of contacts in iCloud is equal to that in All Contacts in Address Book.
    3. Launch iTunes. Connect your iOS device. Go to Summary tab. Mark "Back up to iCloud" button
    4. Go to Info tab, Click "Sync Address Book Contact" and then select "All contact"
    5. Check "Contacts" under "Replace information on this iPhone" at the bottom.
    6. Click "Apply" button at the bottom of the iTunes.
    Your iOS device will be replaced with the "Contacts" from Address Book with "On My Mac" group, which contains zero contacts records.
    7. Uncheck "Sync Address Book Contact" again. A dialog box appears, stating that iTunes will no longer sync contacts to your iOS device. Click "Remove contacts" button in the dialog box.
    8. Click "Apply" button at the bottom of the iTunes.
    9. After sync, you will get a "All on My iPhone" group on your iOS device with zero contacts, one All Contacts showing all contacts records, and the other is the "All iCloud" group containing the source copy from iCloud.
    For Notes
    1. Make sure you have a me.com account enabled in your iCloud for Mail & Notes sync
    2. Using Mail, you can move and de-duplicate the notes and make a final copy in the Notes under iCloud. Clear all notes records under other sources. e.g. On My Mac, Gmail, etc.
    3. Launch iTunes. Connect your iOS device. Go to Summary tab. Mark "Back up to iCloud" button
    4. Go to Info tab, Click "Sync notes" under Other section
    5. Check "Contacts" under "Replace information on this iPhone" at the bottom.
    6. Click "Apply" button at the bottom of the iTunes.
    Your iOS device will be replaced with the "notes" from Mac with "On My Mac" group, which contains zero notes records.
    7. Uncheck "Sync notes" again. A dialog box appears, stating that iTunes will no longer sync notes to your iOS device. Click "Remove notes" button in the dialog box.
    8. Click "Apply" button at the bottom of the iTunes.
    9. After sync, you will no longer get any accounts in Notes. The only copy of Notes is from iCloud.

  • How can I get the apple configurator to retain a devices settings and apps?

    Hi there all!
    I have an iPhone that already has apps and email settings on it.  I want to use the configurator to stop the device being paired with anything else not allow it to connect to any other Macs.  I've connected it, backed it up, enabled supervision, then deployed the profile.  Through out all of this I never get the option to restore device settings and when I click on edit stored backups, it contains nothing.  With supervsion disabled I can restore the backup but, snag is to disallow pairing it needs to be supervised.
    Also, am I right in thinking that once it's supervised I can't install any apps directly from the device ?
    Sorry if these are really noddy questions :-)  I just want to stop the device from being able to connect to or pair with anything other than my mac.
    Thanks
    Will

    Jpegs can't have transparent areas. Most likely you had layers and were forced to save "as a copy", which means that the image which remains open in PSE is not the jpg. A file saved as a copy makes a copy in the save format, but it's not like save as where you now see the newly saved version instead of the original. The original remains open and unsaved onscreen.

  • How can i limit the user to enter only A to Z and space in JFormattedText

    dear
    i want to use JFormatedTextField in two manners
    1.Limit the no of charecters.means in a text field only 20 charecters r allowed.
    2.and also check the enterd charecter must be a to z and space not other chareters r allowed.
    3.same for numbers means 0 to 9 and decimal.
    how can i do by using the JFormated TextFilef.

    Probably lacks in some cases but what the hell.
    * Filename:           JSMaskedTextField.java
    * Creation date:      22-mei-2004
    * Author:                Kevin Pors
    package jsupport.swingext;
    import java.awt.event.KeyEvent;
    import java.util.Arrays;
    import javax.swing.JTextField;
    * A masked textfield is a textfield which allows only a specific mask of
    * characters to be typed. If characters typed do not occur in the mask
    * provided, the typed character will not be 'written' at all. The default mask
    * for this <code>JSMaskedTextField</code> is <code>MASK_ALPHA_NUMERIC</code>
    * @author Kevin Pors
    * @version 1.32
    public class JSMaskedTextField extends JTextField {
        /** Masking for alphabetical lowercase characters only. */
        public static final String MASK_ALPHA_LCASE = "abcdefghijklmnopqrstuvwxyz ";
        /** Masking for alpha-numeric characters (lcase/ucase) only. */
        public static final String MASK_ALPHA_NUMERIC = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ ";
        /** Masking for alphabetical uppercase characters only. */
        public static final String MASK_ALPHA_UCASE = "ABCDEFGHIJKLMNOPQRSTUVWXYZ ";
        /** Masking for numbers only. */
        public static final String MASK_NUMERIC = "0123456789";
        /** Masking for hexadecimals. */
        public static final String MASK_HEXADECIMAL = "0123456789ABCDEF";
         * An array of keyevent constants defining which keys are always to be
         * allowed, no matter what.
        private final int[] ALWAYS_ALLOWED = new int[] { KeyEvent.VK_BACK_SPACE,
                KeyEvent.VK_DELETE, KeyEvent.VK_UP, KeyEvent.VK_DOWN,
                KeyEvent.VK_LEFT, KeyEvent.VK_RIGHT, KeyEvent.VK_SHIFT,
                KeyEvent.VK_HOME, KeyEvent.VK_END};
        /** Boolean specifying whether casing should be ignored. */
        private boolean ignoringCase = true;
        /** Specifying whether the maskin is enabled */
        private boolean isMaskingEnabled = true;
        /** The mask for the textfield. */
        private String mask = MASK_ALPHA_NUMERIC;
         * Creates a default number field.
        public JSMaskedTextField() {
            super(null, null, 0);
            Arrays.sort(ALWAYS_ALLOWED);
         * Creates a number field, with a specified number of columns.
         * @param columns The columnnumber.
        public JSMaskedTextField(int columns) {
            super(null, null, columns);
            Arrays.sort(ALWAYS_ALLOWED);
         * Creates a JSMaskedTextField with a masking.
         * @param mask The masking to be used.
        public JSMaskedTextField(String mask) {
            super(null, null, 0);
            Arrays.sort(ALWAYS_ALLOWED);
            setMask(mask);
         * Gets the masking for this masked textfield.
         * @return Returns the mask.
        public String getMask() {
            return this.mask;
         * Gets whether this JSMaskedTextField should be ignoring casing.
         * @return Returns if the component should be ignoring casing.
        public boolean isIgnoringCase() {
            return this.ignoringCase;
         * Checks whether masking is enabled. Default should be true.
         * @return Returns true if masking is enabled, false if not.
        public boolean isMaskingEnabled() {
            return this.isMaskingEnabled;
         * Sets whether it should be ignoring casing when checking for alpha-chars.
         * @param ignoringCase The ignoringCase to set.
        public void setIgnoringCase(boolean ignoringCase) {
            this.ignoringCase = ignoringCase;
         * Sets the masking for this textfield. The masking will determine which
         * characters can be typed. If the characters in de <code>mask</code> do
         * not occur in the typed character, it won't be typed.
         * @param mask The mask to set.
        public void setMask(String mask) {
            this.mask = mask;
         * Sets the masking enabled. If <code>false</code> this component will
         * behave just like a normal textfield.
         * @param isMaskingEnabled true if masking should be enabled.
        public void setMaskingEnabled(boolean isMaskingEnabled) {
            this.isMaskingEnabled = isMaskingEnabled;
         * Sets text of this textfield. If the blah blah.
         * @see javax.swing.text.JTextComponent#setText(java.lang.String)
        public void setText(String text) {
            for (int i = 0; i < text.length(); i++) {
                if (getMask().indexOf(text.charAt(i)) < 0) { // does not occur
                    return;
            super.setText(text);
         * @see javax.swing.JComponent#processKeyEvent(java.awt.event.KeyEvent)
        protected void processKeyEvent(KeyEvent e) {
            if (!isMaskingEnabled()) {
                return;
            char typed = e.getKeyChar();
            int code = e.getKeyCode();
            for (int i = 0; i < ALWAYS_ALLOWED.length; i++) {
                if (ALWAYS_ALLOWED[i] == code) {
                    super.processKeyEvent(e);
                    return;
            if (typed == KeyEvent.VK_BACK_SPACE) {
                super.processKeyEvent(e);
            if (isIgnoringCase()) {
                String tString = new String(typed + "");
                String ucase = tString.toUpperCase();
                String lcase = tString.toLowerCase();
                if (getMask().indexOf(ucase) < 0 || getMask().indexOf(lcase) < 0) {
                    e.consume();
                } else {
                    super.processKeyEvent(e);
                    return;
            } else { // not ignoring casing
                if (getMask().indexOf(typed) < 0) {
                    e.consume();
                } else {
                    super.processKeyEvent(e);
    }

  • HT5569 I have a new apple id, i'm trying to verify it, but the e-mail I used to set up the old ID is the same that I want to use with the new ID and I get an error message. How can I remove the old ID. i just need one.

    I had an Apple ID, but forgot my password. I created a new Apple ID. I belive I used my hotmail account for my apple ID, but I need to remove it, because the information I used do not let me set up my new Apple ID
    <E-mails Edited by Host>

    Why don't you just go to https://iforgot.apple.com and reset the password on the original ID?

  • In the iclouds settings of my new iphone apears an old not existing account.. so I can't login.. how can I change the apple ID into my actual one in the settings of icloud on my iphone?

    all other settings are correct with my new apple ID... itunes works and all other devises too..

    If the contacts on icloud.com are correct, go to Settings>iCloud, turn Contacts off (if it is on) and choose Delete from My iPhone when prompted.  Now check the contacts on your phone to confirm that you no longer have any contacts on your phone.  If some or all of them are still on your phone, download the free app My Contacts Backup to your phone.  Open the app, tap the gear icon on the bottom right and in the window that opens, scroll to the bottom and tap Remove All Contacts.  Confirm that the contacts are now all deleted from your phone.  Now go to Settings>iCloud and turn Contact on.  The correct contact list from icloud.com should download to your phone.

  • How can you record the screen of any device with no computer and no jailbreak?

    I would like to record the screen to record my gameplay and other stuff. Please help.

    Josh, this was my first gripe when I moved to IronPort toward the end of 2008; I forget the version of Asyncos we were on then. Remember that the design philosophy (as I'm given to understand it) is that you shouldn't have to nursemaid it as much as some other gateways, though achieving that is more a question of developing robust mail policies than simply plugging in the device and running the setup wizard.
    I found the Asyncos GUI a bit of a pain to work with for header analysis, but I've adapted over time. It's only an annoyance now when you need to see an attachment file name that scrolls across three or four screen widths, and by comparison SharePoint gives me more grief in that department (we're on a paleolithic version here).
    For some things we send a copy of quarantined items out to a dedicated mailbox only accessible by staff monitoring our gateways; for more details see my posting in your thread "Can't View Video Files Attached To Emails".

  • HT3702 how can i remove the authorization hold from my card...

    how can i remove the authorization hold from my card

    You can try contacting iTunes support : http://www.apple.com/support/itunes/contact/ - click on Express Lane, then iTunes > iTunes Store
    How much was the amount ? A 'normal' holding charge is a small amount (e.g. equivalent to about $1), and usually happens after you add or change credit card details on your account. Here in the UK it can take a few working days for it to disappear (so a weekend can extend the elapsed time).
    Edit : I don't know what a non-liability certificate is and/or whether Apple can do one.

  • How can I remove the authorize 5 computer from my iTunes?

    How can I remove the authorize 5 computer from my iTunes?

    Deauthorize one computer
    Open iTunes on the computer you want to deauthorize.
    Choose Store > Deauthorize This Computer.
    You might need to show the menu bar to see this option in Windows. In earlier versions of iTunes, you can access this option from the Advanced menu.
    Enter your Apple ID.
    Click Deauthorize.
    If need to deauthorize your computer but you can't access it, you need to deauthorize all computers. After you authorize 2 computers, you'll have the option to deauthorize all computers for your Apple ID. You can deauthorize all computers once per year.
    Deauthorize your computer using iTunes - Apple Support

  • HT201363 My iPhone, iPad and iPod are all associated with the same Apple ID.  How can I remove the iPod and associate it with a new Apple ID without affecting the data on the other devices (note: there is no data on the iPod I want to keep)?

    My iPhone, iPad and iPod are all associated with the same Apple ID.  How can I remove the iPod and associate it with a new Apple ID without affecting the data on the other devices (note: there is no data on the iPod I want to keep)?

    Very simple.  Turn off Find my iDevice, then  Tap Settings, General, Erase, Erase all content and settings.

  • How can I remove the credits from the apple ID and import it to another apple ID?

    How can I remove the credits from the apple ID and import it to another apple ID?
    I want to remove the credit I have from my apple ID to another apple ID.
    Is there a way?

    No, sorry. You cannot transfer an iTunes credit to another Apple ID.
    Cheers,
    GB

  • How can I remove the old apple id from my ipod 4rth gen to log in my new apple id ? (my old apple id keeps showing automatic I can't put my prefer new apple id)

    How can I remove the old apple id from my ipod 4rth gen to log in my new apple id ? (my old apple id keeps showing automatic I can't put my prefer new apple id)

    - Note that apps are locked to the account that purchased them.
    - To update apps you have to sign into the account that purchased the apps. If you have apps that need updating purchased from more than one account you have to update them one at a time until the remaining apps were purchased from one account.

  • HT1420 I already have 5 computers that authorized this account, but I lost 1 and 1 broke. How can I remove the computer off the account?

    I already have 5 computers that authorized this account, but I lost 1 and 1 broke. How can I remove the computer off the account?

    About Authorization and Deauthorization of iTunes - http://support.apple.com/kb/HT1420.

  • How can i remove the U2 Album from my music library

    Dear All,
    In the recent update, one U2 Music album added automatically in my (I think its added by apple in all devices) which i really don't like.
    Please anyone suggest me how can i remove the album from my music library...!!

    Remove iTunes gift album "Songs of Innocence" from your iTunes music library and purchases - Apple Support

Maybe you are looking for

  • VI front panel does not pop up in teststand

    HI, I am new to teststand and would like to seek helps on my application. I have a sequence file consists of several steps. in the SETUP, I have a step to acquire input from the user on which test to run. Having said that, when i run the sequence, i

  • Go live of a new special ledger

    Hi, I need to implement a special ledger, and the company FI is already in production. The problem is that I need to start to work with the special ledger on the date 01.01.20XX, and if I pass the orders on 01.01.20XX the company is still going to en

  • Which table or view is the PO total

    I am trying to modify the Printed Purchase Order Report(Portrait) POXPRPOP Can some one tell me which table the po total are stored for both blanket & standard po's.

  • Need user-exit ....

    Hi Gurus, In vendor line item display(FBL1N) ,when i'm changing Reference no. by going through the Display doc. header button...and save it ,,,it will update in BKPF table...... But for some purpose of mine i need to update in RBKP table (Invoice hea

  • What is AIO methodology in SAP Data Services

    Dear all, Anybody tell me about the AIO (All In One) methodology in SAP DS. Thank you by vinodh