How can I stop credential manager single sign on prompting me for a password for every untrusted connection?

How can I set defaults for credential manager? I keep having to close a dialogue box prompting me for my credentials for untrusted sites, when I don't have passwords for these sites. I click 'close' and it disappears, but it slows things down.

Hi mikehoft,
Welcome to the Apple Support Communities!
I understand that you are receiving repeated prompts to sign in with your account when you open iTunes on your Windows computer. It sounds like to me, because you mention Automatic Downloads, that you are being prompted to authorize your account. If this is the case, I would recommend working through all of the troubleshooting, in order, in the attached article to resolve this issue. 
iTunes repeatedly prompts to authorize computer to play iTunes Store purchases - Apple Support
Best regards,
Joe

Similar Messages

  • How can I stop Yahoo mail from automatically loading my user id and password when I access Yahoo Mail through Firefox?

    When I access Yahoo Mail through Firefox, as soon as Yahoo mail opens, my userid and password have already been entered. I do not want this to happen since other people use this computer. How can I stop this? this does not happen when I access through Internet Explorer.

    It looks like your password is stored in the password manager. See [https://support.mozilla.com/en-US/kb/make-firefox-remember-usernames-and-passwords?s=remembering+passwords&as=s#w_viewing-and-deleting-passwords Viewing and Deleting passwords]. Moreover, your Firefox version (3.6.18) is outdated. Go to Help < Check for Updates.

  • How can I stop my iphone from signing my emails "Johnny Appleseed"?

    When I send an email from my iphone it identifies the sender as "Johnny Appleseed" causing much confusion, how do I stop this?

    Go into Settings>Mail, Contacts, Calendars. Is this happening at the bottom in the signature section, or in the header of the mail where your email address is? If it is the signature, then go to the Signature area of the Mail settings. If this is in the header, then go to the account in question and edit your account information to include your name instead of Johnny.

  • How can I get rid of the sign in prompt when I use google?

    I just upgraded firefox. I am searching in google and every time I put in a search or turn a page I get a sign-in box asking for my goole password. How can I get rid of this, it is a nuisance.

    Do you use any add-ons to enhance your privacy on Google? To make sure those also are the latest versions, try updating your extensions on the Add-ons page. Either:
    * Ctrl+Shift+a
    * orange Firefox button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then, above the list, click the "gear" button and "Check for Updates".
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    orange Firefox button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?
    Also, I believe Google requires third party cookies. This support article has the steps for making sure you are accepting website cookies: [[Websites say cookies are blocked - Unblock them]].

  • How Can I Determine the Size of the 'My Documents' Folder for every user on a local machine using VBScript?

    Hello,
    I am at my wits end into this. Either I am doing it the wrong way or it is not possible.
    Let me explain. I need a vb script for the following scenario:
    1. The script is to run on multiple Windows 7 machines (32-Bit & 64-Bit alike).
    2. These are shared workstation i.e. different users login to these machines from time to time.
    3. The objective of this script is to traverse through each User Profile folder and get the size of the 'My Documents' folder within each User Profile folder. This information is to be written to a
    .CSV file located at C:\Temp directory on the machine.
    4. This script would be pushed to all workstations from SCCM. It would be configured to execute with
    System Rights
    I tried the script detailed at:
    http://blogs.technet.com/b/heyscriptingguy/archive/2005/03/31/how-can-i-determine-the-size-of-the-my-documents-folder.aspx 
    Const MY_DOCUMENTS = &H5&
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set objShell = CreateObject("Shell.Application")
    Set objFolder = objShell.Namespace(MY_DOCUMENTS)
    Set objFolderItem = objFolder.Self
    strPath = objFolderItem.Path
    Set objFolder = objFSO.GetFolder(strPath)
    Wscript.Echo objFolder.Size
    The Wscript.Echo objFolder.Size command in the script at the above mentioned link returned the value as
    '0' (zero) for the current logged on user. Although the actual size was like 30 MB or so.
    I then tried the script at:
    http://www.experts-exchange.com/Programming/Languages/Visual_Basic/VB_Script/Q_27869829.html
    This script returns the correct value but only for the current logged-on user.
    Const blnShowErrors = False
    ' Set up filesystem object for usage
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set objShell = CreateObject("WScript.Shell")
    ' Display desired folder sizes
    Wscript.Echo "MyDocuments : " & FormatSize(FindFiles(objFSO.GetFolder(objShell.SpecialFolders("MyDocuments"))))
    ' Recursively tally the size of all files under a folder
    ' Protect against folders or files that are not accessible
    Function FindFiles(objFolder)
    On Error Resume Next
    ' List files
    For Each objFile In objFolder.Files
    On Error Resume Next
    If Err.Number <> 0 Then ShowError "FindFiles:01", objFolder.Path
    On Error Resume Next
    FindFiles = FindFiles + objFile.Size
    If Err.Number <> 0 Then ShowError "FindFiles:02", objFile.Path
    Next
    If Err.Number = 0 Then
    ' Recursively drill down into subfolder
    For Each objSubFolder In objFolder.SubFolders
    On Error Resume Next
    If Err.Number <> 0 Then ShowError "FindFiles:04", objFolder.Path
    FindFiles = FindFiles + FindFiles(objSubFolder)
    If Err.Number <> 0 Then ShowError "FindFiles:05", objSubFolder.Path
    Next
    Else
    ShowError "FindFiles:03", objFolder.Path
    End If
    End Function
    ' Function to format a number into typical size scales
    Function FormatSize(iSize)
    aLabel = Array("bytes", "KB", "MB", "GB", "TB")
    For i = 0 to 4
    If iSize > 1024 Then iSize = iSize / 1024 Else Exit For End If
    Next
    FormatSize = Round(iSize, 2) & " " & aLabel(i)
    End Function
    Sub ShowError(strLocation, strMessage)
    If blnShowErrors Then
    WScript.StdErr.WriteLine "==> ERROR at [" & strLocation & "]"
    WScript.StdErr.WriteLine " Number:[" & Err.Number & "], Source:[" & Err.Source & "], Desc:[" & Err.Description & "]"
    WScript.StdErr.WriteLine " " & strMessage
    Err.Clear
    End If
    End Sub
    The only part pending, is to achieve this for the 'My Documents' folder within each User Profile folder.
    Is this possible?
    Please help.

    Here are a bunch of scripts to get folder size under all circumstances.  Take your pick.
    https://gallery.technet.microsoft.com/scriptcenter/site/search?query=get%20folder%20size&f%5B0%5D.Value=get%20folder%20size&f%5B0%5D.Type=SearchText&ac=2
    ¯\_(ツ)_/¯

  • How can I stop the update to Internet explorer 9 pop up window that appears every time I open my Firefox, I don't want Explorer 9. Help!

    It is an annoying popup window that should not be allowed to persist I say no every time. I found a fix for it in the UK but none for Canada.

    hello, can you try to replicate this behaviour when you launch firefox in safe mode once? if not, probably an addon is interfering here...
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

  • How can I stop firefox from requesting me to verify or change my password when I log into Monster?

    Whenever I log into my Monster account the first thing that pops up is do you want to change your password? Change Dont Change. I have to click on one of the boxes before this will go away. It is very annoying and I would like to have it removed.

    The site may be using JavaScript to make changes to the password field that cause Firefox to display the update dialog.

  • How can I stop Itunes from asking to allow to check for Iphone updates?

    Everytime I start Itunes it tells me it wants to check for updates of my Iphone software. There is no way to turn it off - except for allowing it to do it automatically - which I dont want eather.
    Its anoying and the reason why I like apple is because its not in your face al the time asking for updates...

    Have you tried opening iTunes on the laptop and checking the option "Prevent iPods and iPhones from syncing automatically" in iTunes>Preferences>Devices (or Edit>Preferences>Devices in Windows)?

  • Help! My Mouse pad is not working properly. The arrow cannot be controlled, it just keeps jumping all over the page. How can I stop this?

    Help! My Mouse pad is not working properly. The arrow cannot be controlled, it just keeps jumping all over the page. How can I stop this?

    There are several possible causes for this issue. Please take each of the following steps that you haven't already tried until it's resolved. Some may not apply in your case.
    1. Follow the instructions in this support article, and also this one, if applicable. A damaged or defective AC adapter could be the cause, even if it's the right kind.
    2. Press down all four corners of the trackpad at once and release. If there's any effect, it's likely to be temporary, and in that case the unit must be serviced or replaced.
    3. Open the Bluetooth preference pane in System Preferences and delete all pointing devices other than the trackpad, if applicable. Disconnect any USB pointing devices. By a "pointing device," I mean a peripheral that moves the cursor, such as a trackpad, mouse, trackball, or graphics tablet. A plain keyboard is not a pointing device.
    4. Start up in safe mode and test, preferably without launching any third-party applications. If you don't have the problem in safe mode, but it comes back when you restart as usual, stop here and post your results. Do the same if you can't start in safe mode. If there was no difference in safe mode, go on to the next step.
    5. Reset the System Management Controller.
    6. If you're using a Bluetooth trackpad, investigate potential sources of interference, including USB 3 devices.
    7. A swollen battery in a portable computer can impinge on the trackpad from below and cause erratic behavior. If you have trouble clicking the trackpad, this is likely the reason. The battery must be replaced without delay.
    8. There's a report that a (possibly defective) Thunderbolt Ethernet adapter can cause the built-in trackpad of a MacBook to  behave erratically. If you're using such an adapter, disconnect it and test.
    9. There's also a report of erratic cursor movements caused by an external display that was connected but not turned on.
    10. If none of the above applies, or if you have another reason to think that your computer is being remotely controlled, remove it from the network by turning off Wi-Fi (or your Wi-Fi access point), disconnecting from a Bluetooth network link, and unplugging the Ethernet cable or USB modem, whichever is applicable. If the cursor movements stop at once, you should suspect an intrusion.
    11. Make a "Genius" appointment at an Apple Store to have the machine and/or external trackpad tested.

  • HT5622 How can I stop someone using my Apple ID ?

    My ex has been using my Apple ID account, reciving my pictures messages ect and he might off brought things on my account how can I stop him using my Apple ID account?

    Change your Password.
    Go to My Apple ID and click Manage your account

  • How can I stop Spotlight from indexing external drives?

    I work in an environment where we plugin several different costumer harddrives all day long as part of our working process. Often only to extract one file from a given drive. Therefore its annoying that Spotlight automatically starts indexing these drives, because it slows down everthing, but also because our windows costumers suddenly see these weird mac files on their drives, that are invisible to the macuser. The Privacy setting is not of much use, as its impossible to add oru costumers drives to the list - we simply don't know the drive until we see it.
    How can spotlight stop indexing?

    The Privacy option is okay for private users, but at work we receive alot of harddrives from costumers and we simply cannot spend the extra time waiting for a drive to be indexed every time it is connected. That drive may never be connected again as it belongs to a costumer, and it is impossible for us to add drives to the Privacy pane, because we do not know they exist before we see them infront of us. The ption to disable all external drives from being indexed would be great. Or that the indexing can be stopped in the spotlight menu, or that the indexing will not start until 10 minutes after the drive has been mounted - and only if the drive is inactive.

  • How can I stop the X509Anchors password box from popping up?

    I was messing around with some certificates trying to get Office Communicator to work on my Mac here at work.
    Ever since then the keychain dialog box continually pops up asking for my X509Anchors password. I know the password, my problem is that this dialog box continually pops up. CalendarAgent is the main app that keeps trying to access it, though others do occasionally as well.
    These are the steps I used to access the X509Anchors keychain and change certs:
    http://www.aikidokatech.com/?p=42
    How can I stop this dialog box from popping up asking for my password every 2 minutes?
    I'm currently on OS 10.8.2

    That entry in your keychain may be damaged. In the /Applications/Utilities/ folder, launch Keychain Access. At the left, the upper item selected should be login, and the lower on Passwords. At the right, locate (if it's obviously named), the item for X509Anchors and remove it. Close Keychain Access. Then next time you visit the site this is for, it will ask for your login information as if it were your first visit. Enter your info and a new keychain link will be created.

  • My desktop pages keep collapsing into my doc. How can I stop this?

    I have an iMac 500 with the Lion 10.6 OS. When I try to move a page I'm working on to a different part of the desktop my mouse doesn't pick it up and move it. Instead it collapses the page into my dock at the bottom of the screen. How can I stop this collapsing feature?

    Chris, thank you for your response. It is appreciated. What you mentioned was my original problem with the SIM (the fact that it did not mesh well with Apple). After plenty of frustration and money wasted, a technician advised me to de-activate iMessage and FaceTime because I was getting charged 0.30 euro for every call and every text. I followed this suggestion and after testing it out, then the phone seemed to be working fine without the extra charge problems.
    This morning when I woke up, I checked my credits on the phone and I had lost another 1.20 euro during the night. When I called PosteMobile, they told me that I had sent another 4 messages to that same UK number. I'm not sure how this is possible, and when I try to explain my situation to them, they are not the friendliest people. I've used WIND before in Italy as a provider without any problems, and they are not listed on the link that you sent me for Italy, so I don't understand why PosteMobile is giving me so many problems.
    I was also wondering if there is a way to block my phone from sending messages to this number? (Although, I don't even know the last 3 digits of the number). Sorry if I'm rambling, but I don't know how to resolve this problem without starting a new contract with another service provider.

  • When i open a new tab, it closes 3 seconds later automatically. how can I stop this?

    When I open a new tab, I cannot view it, the tab closes automatically. I then reload the tab and it closes again after 3 seconds. How can I stop this? I never had this problem before.
    == This happened ==
    Every time Firefox opened
    == About two weeks ago, 2nd week in June 2010

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • How can I stop trash emails e.g. re: ***** enlargement?

    How can I stop trash emails e.g.  re ***** enlargement. I get loads every day. They went away for a while  but now they're back.
    Please help

    The Mail app on the iPad doesn't have any filters/rules that you can set on it - if you log into the account on your provider's website does that allow your to set any ?

Maybe you are looking for

  • Saving and viewing aspx/pdfs in iBooks or other apps

    I am having trouble saving some aspx files in iBooks and other apps (airsharing, goodreader, zoomit).  The links to the files look like links to pdfs.   Safari displays them fine. However, once the file is displayed on the screen and I click on "open

  • Duplicate records-problems

    Hi gurus We created a text datasource in R/3 and replicated it into BW 7.0 An infopackage (loading to PSA) and DataTransferProcess was created and included in a process chain. The job failed because of duplicate records. We now discovered that the se

  • Safari Crashin Problem

    Everytime I load safari the webpage quits.... this is the error message report I get...Can anyone shed some light on this? OS Version: 10.4.7 (Build 8J135) Report Version: 4 Command: Safari Path: /Applications/Safari.app/Contents/MacOS/Safari Parent:

  • Flash is now freezing my whole computer since last upgrade 14?

    Windows 7/ 64 bit Firefox29 Flash player 14 Active X 13 ?  (Not sure why these are different) Since my last flash upgrade I haven't been able to play any games like farmville 2. When I try my game freezes every few seconds, and then my whole computer

  • TS1424 how do i cancel a download that will take 39 hours?

    how do i cancel a download that will take 39 hours?