Which "diagnostics.wadcfg" is used ?

I am learning to configure diagnostics in microsoft azure. In order to configure the diagnostics we can use visual studio as suggested in this MSDN article.
And whatever changes we do all gets saved to the "diagnostics.wadcfg" file present under role in the cloud project.
We can also add our own "diagnostics.wadcfg" file to the root folder of our worker role also. And add configuration setting to it. As suggested in these articles [1] and [2].
Can somebody tell me whats the difference between "diagnostics.wadcfg" files present in both the places and there precedence. Is the config in the root approach an older one, and with the new template the config gets associated with the role
itself ?

Hi Jnanas,
Thanks for your posting!
Currently, when we configure the Azure diagnostics configuration, Azure SDK and VS could auto-create a new file named "diagnostics.wadcfg" into Role node. No matter where this file, You could use the programmatically method to configure Azure Diagnostics.
But only the file under the Role node, we could use the custom Plan, like this picture:
In your reference:
You can configure Azure Diagnostics in the following ways:
Programmatically, in either code or a role, or from code that's running in a separate configuration application.
From the role designer in Visual Studio or by directly modifying the configuration files. The configuration file, diagnostics.wadcfg, is added to your project.
If you take either of these approaches, your changes will take effect the next time that you deploy the cloud service to Azure or run the service in the emulator.
By using Server Explorer to change the diagnostics settings for a running cloud service.
The second and third ways are stored this file on the Role node. So if you use the latest version of VS, I suggest you can add the diagnostics.wadcfg file into your role designer. For the
blogs , the Azure SDK version is outdate.
Regards,
Will
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • How to revert to diagnostics.wadcfg configuration from wad-control-container blob.

    Hello all,
    In our project at some point in the past we have enabled Diagnostics module for getting our log entries in Azure Storage. We added <Import moduleName="Diagnostics" /> to ServiceDefinition.csdef file and then enabled logs transfering and performance
    counters gathering in WebRole.OnStart method via DiagnosticMonitor.Start():
    DiagnosticMonitorConfiguration cfg = DiagnosticMonitor.GetDefaultInitialConfiguration();
    cfg.OverallQuotaInMB = 8192;
    cfg.Logs.ScheduledTransferLogLevelFilter = LogLevel.Verbose;
    cfg.Logs.ScheduledTransferPeriod = TimeSpan.FromSeconds(30);
    cfg.Logs.BufferQuotaInMB = 1000;
    // Define performance counter configuration.
    foreach (var counterName in PERFORMANCE_COUNTERS_NAMES)
    PerformanceCounterConfiguration perfCounterConfiguration = new PerformanceCounterConfiguration();
    perfCounterConfiguration.CounterSpecifier = counterName;
    perfCounterConfiguration.SampleRate = TimeSpan.FromSeconds(5);
    cfg.PerformanceCounters.DataSources.Add(perfCounterConfiguration);
    cfg.PerformanceCounters.BufferQuotaInMB = 1024;
    cfg.PerformanceCounters.ScheduledTransferPeriod = TimeSpan.FromMinutes(1);
    DiagnosticMonitor.Start("Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString", cfg);
    Then using Windows Azure Management Portal we activated Verbose monitoring mode and added several additional performance counters there in order to try the feature. I assume that doing that through the portal we actually modified wad-control-container blob
    so we got new performace counters configuration.
    Later we've realized that it would be better to manage all diagnostic configuration in diagnostics.wadcfg. We removed the code from role start and added diagnostics.wadcfg file to the project that declares the same we did before via code. When we redeployed
    we saw that the configuration remained as it was before - it didn't change at all. It still included new performance counters we added through the portal. It is because the order of precedence, where wad-control-container blob has the highest priority. So
    we deleted all the blobs from wad-control-container in order to revert back to diagnostics.wadcfg and redeployed the service. New blob was created in wad-control-container. It included everything from diagnostics.wadcfg as we expected and
    again we saw these custom performance counters we added via portal time ago. See below the blob content:
    <?xml version="1.0"?>
    <ConfigRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <DataSources>
    <OverallQuotaInMB>8192</OverallQuotaInMB>
    <Logs>
    <BufferQuotaInMB>1024</BufferQuotaInMB>
    <ScheduledTransferPeriodInMinutes>1</ScheduledTransferPeriodInMinutes>
    <ScheduledTransferLogLevelFilter>Verbose</ScheduledTransferLogLevelFilter>
    </Logs>
    <DiagnosticInfrastructureLogs>
    <BufferQuotaInMB>1024</BufferQuotaInMB>
    <ScheduledTransferPeriodInMinutes>5</ScheduledTransferPeriodInMinutes>
    <ScheduledTransferLogLevelFilter>Warning</ScheduledTransferLogLevelFilter>
    </DiagnosticInfrastructureLogs>
    <PerformanceCounters>
    <BufferQuotaInMB>4096</BufferQuotaInMB>
    <ScheduledTransferPeriodInMinutes>5</ScheduledTransferPeriodInMinutes>
    <Subscriptions>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\Memory\Available Mbytes</CounterSpecifier>
    <SampleRateInSeconds>10</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\Processor(_Total)\% Processor Time</CounterSpecifier>
    <SampleRateInSeconds>10</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Requests/Sec</CounterSpecifier>
    <SampleRateInSeconds>5</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Requests Executing</CounterSpecifier>
    <SampleRateInSeconds>5</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Requests In Application Queue</CounterSpecifier>
    <SampleRateInSeconds>5</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Requests Failed</CounterSpecifier>
    <SampleRateInSeconds>30</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Requests Timed Out</CounterSpecifier>
    <SampleRateInSeconds>30</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET\Requests Rejected</CounterSpecifier>
    <SampleRateInSeconds>30</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET\Worker Process Restarts</CounterSpecifier>
    <SampleRateInSeconds>600</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <!-- OLD unnecessary counters that were added manually through the portal START-->
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\Memory\Available MBytes</CounterSpecifier>
    <SampleRateInSeconds>180</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\Web Service(_Total)\ISAPI Extension Requests/sec</CounterSpecifier>
    <SampleRateInSeconds>180</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\Web Service(_Total)\Bytes Total/Sec</CounterSpecifier>
    <SampleRateInSeconds>180</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Errors Total/Sec</CounterSpecifier>
    <SampleRateInSeconds>180</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET\Requests Queued</CounterSpecifier>
    <SampleRateInSeconds>180</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <!-- OLD unnecessary counters that were added manually through the portal END-->
    </Subscriptions>
    </PerformanceCounters>
    <WindowsEventLog>
    <BufferQuotaInMB>0</BufferQuotaInMB>
    <ScheduledTransferPeriodInMinutes>0</ScheduledTransferPeriodInMinutes>
    <Subscriptions />
    <ScheduledTransferLogLevelFilter>Undefined</ScheduledTransferLogLevelFilter>
    </WindowsEventLog>
    <Directories>
    <BufferQuotaInMB>256</BufferQuotaInMB>
    <ScheduledTransferPeriodInMinutes>5</ScheduledTransferPeriodInMinutes>
    <Subscriptions>
    <DirectoryConfiguration>
    <Path>C:\Resources\directory\ac17d63416cf41c8acfebbbcb3d90052.Mbo.Services.Web.DiagnosticStore\CrashDumps</Path>
    <Container>wad-crash-dumps</Container>
    <DirectoryQuotaInMB>256</DirectoryQuotaInMB>
    </DirectoryConfiguration>
    </Subscriptions>
    </Directories>
    </DataSources>
    <IsDefault>false</IsDefault> <!-- DEFAULT IS SET TO FALSE AGAIN -->
    </ConfigRequest>
    We tried to directly edit this XML. We removed redundant counters and changed IsDefault to "true" value in the XML and updated the blob in the wad-control-container using Azure Management Studio. Next time we redeployed the service - the counters
    again appeared in the configuration and IsDefault reverted to false again.
    Does anyone know how to permanently revert to managing diagnostics configuration only via diagnostics.wadcfg file and force the Azure to forget about manual edits we did via the portal?
    We use Azure SDK 1.4. 
    Thanks in advance for any insights!
    Vitaly

    Hi Vitaly,
    Did you try to change diagnostics configuration in VS? Like this:
    I suggest you could click the "Edit", and select your diagnostics metrics. Also, I want you double check your  re-deployment  project whether is right. Please try it.
    By the way, I suggest you could upgrade your SDK version and refer to this sample:
    http://www.windowsazure.com/en-us/develop/net/common-tasks/performance-profiling/
    http://msdn.microsoft.com/en-us/library/windowsazure/hh411542.aspx
    Any question or result, please let me know.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • In itunes 10.6, when I click to burn a cd, it takes 10 minutes for the  "Burn Settings" screen that allows me to choose which cd burner to use to be displayed. I have tried setting the UpperFilters to "GEARAspiWDM" and LowerFilters to null. Any suggestion

    In itunes 10.6, when I click to burn a cd, it takes 10 minutes for the  "Burn Settings" screen that allows me to choose which cd burner to use to be displayed. I have tried setting the UpperFilters to "GEARAspiWDM" and LowerFilters to null. Any suggestions?

    Many thanks for the diagnostics.
    Failed while scanning for CD / DVD drives, error 2380.
    Error while opening iTunes CD driver.  This could be caused by a corrupted iTunes file or a conflict with other older CD burning applications, either currently installed or previously installed and uninstalled incorrectly.
    With that one, I'd start with solution 3 from the following document:
    iTunes for Windows: Optical drive is no longer recognized, or "Disc burner or software not found" alert after install

  • Some strings for which expression pedal is used is recorded well but during esch playback I have to move the modulation wheel. How can I resolve to hear my instrument during playback without twikking on the wheel !

    Some strings for which expression pedal is used is recorded well but during esch playback I have to move the modulation wheel. How can I resolve to hear my instrument during playback without twikking on the wheel !

    I am having the same problems. My guess is that a lot of people are having the same problems and just living with it. Those of us who know where to go on the Internet come here to find a fix.
    It seems Verizon has some explaining to do. Maybe they should try Beta testing new software a little better. I would rather have to wait longer for something that works. I am sure that some manager or director said this is close enough, deploy it and we will see what happens. Well, you are seeing the problems. Time to fix your mistake.
    All of us are telling our friends about the problems. The longer this goes on, the more people we will tell about it.
    Wouldn't you rather us be telling our friends that their is an error in the new interface and that you are working hard to fix it?
    If you want to be up front about this, then just tell us. We are adults and can handle it. If you made a mistake, own up to it and give us some credit for doing your Beta testing in the field.
    Customer Service is all about telling the truth and if you made a mistake, admit it and lets move on with a fix. I do not want to be told again that I should be able to unplug it, power cycle it, try the on-board diagnostics, etc., etc.......
    I am going to be repsonding on a daily basis to keep this topic at the top of the list.
    Time to come clean. You will feel better Verizon.
    Let's talk tomorrow.

  • What is "FND : Diagnostics %"  profile option used for ?

    What is "FND : Diagnostics %" profile option used for ?
    How is it different from "FND : Debug%" profiles ?

    I guess my above update was misleading (Sorry for that) .. Please find below more details about (FND: Diagnostics) and (FND: Debug Log Enabled):
    Both profile options are used to configure logging, the difference between them is (FND: Debug Log Enabled) is a database profile option used to configure logging while (FND: Diagnostics) is used to configure logging to screen.
    Logging to screen provides:
    - The ability to enable logging on a per HTTP request or per HTTP session basis.
    - Dynamic configuration which does not require restarting any servers or changing any log profiles.
    - A convenient lightweight mechanism to diagnose performance issues. Each message is timestamped to the millisecond.
    If Logging to Screen is enabled, then the Java log messages generated for a particular HTTP Request-Response are buffered in memory and appended to the end of the generated HTML page.
    This feature does not affect any existing configurations of file or database logging. File or database logging continues to behave per the configured middle tier log properties and/or log profile values.
    Note that this mechanism currently provides only Java layer messages. Regular file or database logging should be used if messages from other layers (e.g., PL/SQL) are needed.
    In brief ..
    FND: Diagnostics (Self-Service) --> To see this, Login as that user and navigate to self-service, Click the Diagnostics link in the upper right corner
    - Default = “No”
    - Recommendation = “No”
    - Requires APPS password to use Examine function
    - Usually set to “Yes” during development

  • In Adobe Acrobat 9 which I have been using for a long time (Widows 7) says, You cannot use this prod

    In Adobe Acrobat 9 (Wndows 7) which I have been using for a long time now it says I cannot use it withoutv repairing.  It instructs me to uninstall & reinstall...

    I have not run into this yet with my AA9 and Win7, but have been seeing posts about it. I would try a repair before I would do an uninstall and reinstall. You might also turn off javascript for a bit in case there has been some javascript that has caused problems (ok, making wild guesses). If you do decide to uninstall, be sure to deactivate first, uninstall, run http://labs.adobe.com/downloads/acrobatcleaner.html, and remove any left over parts of the Acrobat folder. Then proceed to the reinstall and updates.
    There is a question about whether being able to use it is correct, or you are just getting some message that is a spam that somehow got into your system (again, a possible javascript issue). Besides turning off javascript, you could also try isolating the javascripts to moving them to a temporary directory and seeing if one is causing the problem.

  • XSLT mapping - Which transformation engine is used in PI 7.0

    Hi,
    In my favorite xslt tool I can choose which transformation engine I want to use while executing the xsl.
    Which Transformation engine is used in PI 7.0 ?
    (Nice to test with the same as PI have....)
    Br, Martin

    Hi ,
    as per my knowledge PI 7.0 uses XALAN parcer to execute XSLT Mapping programs,its available in in PI server it slelf.
    Regards,
    Raj

  • Be grateful for your help with Photoshop Elements which I have been using for several years.

    Be grateful for your help with Photoshop Elements which I have been using for several years.  Does Elements need to have access to ‘My Pictures’ on Windows as when I remove Photos from ‘My Pictures’, Elements later, when backing up, gives a message that it is unable to ‘reconnect’ to the same picture on elements.  On other occasions when removing a photo from Elements catalogue I also get a similar message when backing up saying ‘unable to reconnect’.  1. Is there a relationship between Elements and My Pictures and is Elements dependant on    the Windows ‘My Pictures’? 2. Why does some photos in Elements in some cases cause them to multiply e.g. double; triple; quadruple; and on occasions even more?  Is there something I need to do to stop this or an easy way I can remove the multiples without spending hours doing it manually one by one?  Am I doing something wrong? My O/S is Windows XP SP2 and windows Vista on my Laptop.  I have been using Elements 5 and have just purchased Photoshop Elements 8.0. (Upgrade) and about to install it. Be grateful for any advice as I do enjoy using the program if only I can resolve this issue.  I am not a PC wiz and mainly use Elements to catalogue photos from which I compile collections and from them slide shows with music.  Any advice appreciated Sonny.t PS Have tried to post this previously but without success so hoping to see message appear and a +response

    The organizer doesn't care where you send your photos when you download them via the downloader or where they happen to be when you first bring them in if you use the Get Photos command, but once your pics are in the Organizer, you *must* move them from within organizer or it can't find them. You don't have to use My Pictures at all if you don't want to, but regardless of the folder where you put your photos, if you want them someplace else, you use organizer to do it.

  • How to set up set which NIC card to use for multicast?..

              I just downloaded Rolling Patch 1 for WLS6.0SP2.
              While reading the README file it says
              " ISSUE 42518: Provided a way to set which NIC card to use for multicast traffic
              Can anyone tell me how to set this?. on my WebApplication server it has two NIC
              cards and I want to use the NICcard which is being used to talk to internal network
              for multicast messages.
              One more thing,
              Can anyone one tell how to search for bugs (ISSUES) in weblogic. I am looking
              place where I enter ISSUE number and should get the detailed description of bug/issue
              etc..
              Thanks for helping,
              Nilesh
              

              Thanks Kumar, I'll try this.
              Does this -Dweblogic.interfaceAddress used only for multicast. Or this is also
              used to talk to AdminServer?.
              The other problem I am facing is when I restart the AdminServer in recovery mode
              it's not finding my WebApp servers, because my webapp servers are on public network
              and my admin (management) server is on private network.
              please look at http://newsgroups.bea.com/cgi-bin/dnewsweb?cmd=article&group=weblogic.developer.interest.management&item=1217&utag=
              , for more details about my problem.
              Thanks,
              Nilesh
              Kumar Allamraju <[email protected]> wrote:
              ><!doctype html public "-//w3c//dtd html 4.0 transitional//en">
              ><html>
              >You should be able to do it via console in 6.1
              ><br>Not sure if it was added in 6.0
              ><p>For 6.0 you can set this via command line
              ><br>java -Dweblogic.interfaceAddress=<addr>
              ><p>You need 6.0 SP2 RP1
              ><p>--
              ><br>Kumar
              ><p>Nilesh Shah wrote:
              ><blockquote TYPE=CITE>I just downloaded Rolling Patch 1 for WLS6.0SP2.
              ><br>While reading the README file it says
              ><br>" ISSUE 42518: Provided a way to set which NIC card to use for multicast
              >traffic
              ><br>"..
              ><p>Can anyone tell me how to set this?. on my WebApplication server it
              >has two NIC
              ><br>cards and I want to use the NICcard which is being used to talk to
              >internal network
              ><br>for multicast messages.
              ><p>One more thing,
              ><p>Can anyone one tell how to search for bugs (ISSUES) in weblogic. I
              >am
              >looking
              ><br>place where I enter ISSUE number and should get the detailed description
              >of bug/issue
              ><br>etc..
              ><p>Thanks for helping,
              ><p>Nilesh</blockquote>
              ></html>
              >
              

  • I am confused about something.  How do I read a book on my MacBook Pro?  I can't find the iBook app anywhere, which is what I use on my iPad.  The book I want to read is in my iTunes but I can't click on it.  My iBook library does not show up in iTunes.

    I am confused about something.  How do I read a book on my MacBook Pro?  I can't find the iBook app anywhere, which is what I use on my iPad.  The book I want to read is in my iTunes but I can't click on it.  Some of my iBooks show up in my iTunes but they are "grayed" out.  The only books that respond in iTunes are audiobooks and that's not what I'm looking for.  Is this a stupid question?

    Nevermind - I answered my own question, which is I CAN"T READ ANY BOOKS I purchased in iBooks on my MacBook Pro.  If I want to read on my mac I have to use Kindle or Nook.  Which means any book I've already purchased through iBooks has to be read on my iPad.  Kind of a drag because there are times when it's more convenient for me to read while I'm sitting with my Mac.

  • I accidentally set up two accounts.  One account with my old e-mail address which I've been using for years and has all of my purchases on it.  Now I have a new account with my current e-mail address. How do I disable this new account?

    I accidentally set up two accounts.  One account with my old e-mail address which I've been using for years and has all of my purchases on it.  Now I have a new account with my current e-mail address. How do I disable this new account?  I need to disable the new e-mail address account so that I can add it as an additional e-mail to my old account.  THEN, how do I make this new e-mail address my primary e-mail for this old account?

    Did yoo go to Settings>iTunes and App Stores and sign out and sign back in?
    Next see:
    Frequently Asked Questions About Apple ID

  • HT1311 I changed my apple id and have a gift card credit on the old account which I no longer use.  How do I transfer the gift card $ to my new apple id?

    I changed my apple id and have a gift card credit on the old account which I no longer use.  How do I transfer the gift card $ to my new apple id?

    Click here and request assistance.
    (75296)

  • In which country should I use my Apple ID?

    Hello!
    I have bought an used iPhone almost 2 weeks ago and I try to know my device better,
    so I would like to ask some questions
    Questions are about country and location associated with my Apple ID, App Store, iTunes and apps overall.
    To let you begin solve my problem, first I need to say something:
    1. I have created Apple ID without credit card information (using iTunes, 'none' in the credit cards information)
    2. I am from Poland and I have created my Apple ID in Poland (also I've written that I am from Poland while I was creating my Apple ID)
    3. I don't know which country I should associate my Apple ID with
    3. I have recently downloaded many, many apps for my iPhone 4s (using Apple ID associated with Poland country)
    4. I have done many photos, video recordings, messages etc.
    5. I am (currently) using Polish App Store and Polish iTunes Store.
    Here's my problem to solve and my questions to answer:
    1. What disadvantages I have, if I am using Polish iTunes & App Store? (and not for example USA?)
    2. I discovered iTunes Radio is only available in USA (so I have changed Apple ID's country information to United States )
         Why it isn't in any other country?
    3. Once I have downloaded many apps on my iPhone (with Apple ID's country information - Poland) and updated some apps,
         after changing country of Apple ID I have noticed, that there aren't any apps in 'Purchased' section, nor in 'Not on this phone' section.
         There were only apps which I have downloaded using USA Apple ID information.
         The same thing goes with iTunes and downloaded songs in 'Songs' section. (not in Music. in iTunes Store)
         Why it looks like that?
    4. Does Wish List on iTunes Store/App Store changes, when I change country of my Apple ID?
    5. Are sections in the App Store such as 'Editors' Choice', 'App of the Week', 'Top Charts' 'Single of the Week', 'Going to the Cinema'
        are different in every country's App/iTunes Store?
    6. Which apps are only available in United States and not in other countries/Poland?
         I have found, that there aren't Netflix, Paper - stories from Facebook, Facebook Camera, Google Music and many other apps in the Polish App Store.
    7. Are there any songs, albums, movies not available in Polish App Store & iTunes Store?
    And the last question! The most important one!
    Should I stick with poor Polish App Store and Polish iTunes Store or change my Apple ID country to United States? There are definitely more apps in the USA and not available in Poland, the same goes with iTunes Store. The prices are lower than in the Polish App/iTunes Store, where you have to pay in Euro, not even in złoty. If I change my Apple ID to USA I would buy USA gift cards and buy games, songs etc. I will be able to have iTunes Radio, free single of the week etc. Should I change my Apple ID country information? If so, will I have to delete all my apps from iPhone and download them again, being in the United States App Store (to find all my apps in 'Purchased' and 'Not on this iPhone' sections? They really annoy me, iwhen they are not there!)
    Will all my games datas be destroyed? Will I be able to play with my friends on the Game Center? What if someday I will have to change my Apple ID country, because I have moved to another? (maybe from Poland)? Will there be any other disadvantages of using USA iTunes/App Store being in Poland?
    Should I change my Apple ID country information to United States?
    Thank you very much for answering and reading my loooooooooong problem and a lot of questions! I really appreciate your help!

    I have another problem.
    I have deleted all apps from my iPhone 4s and then I have changed my
    Apple ID's country information from Poland to United States.
    After that, I have downloaded all deleted apps.
    But only few are in 'Purchased' section on iPhone!
    I guess only these, I have downloaded using USA App Store, not Polish.
    I am getting frustrated, because I have got too many problems with iOS
    and it doesn't look it will get better... Please help me ASAP! Thanks!

  • I have iTunes on my laptop but it is registered to an apple id for an ipod which I have not used/owned for years.  How do I add my new apple id which I use on my iPhone to my iTunes on my laptop?

    I recently purchased two songs which refuse to download on my iPhone 4s.  Other songs from the same albums downloaded just fine.  In an attempt to recover these songs I opened iTunes on my laptop which I have not used since I sold my ipod years ago.  The iTunes on my computer is associated with an old Apple ID that was connected to my iPod.  How do I get my new Apple ID synced with the iTunes on my laptop?

    Hello Leanna,
    Thank you for the details of the issue you are experiencing.  You can sign into iTunes with your Apple ID using these steps:
    Use your Apple ID with the iTunes Store
    Open the latest version of iTunes.
    Choose Store > Sign In.
    Enter your Apple ID and password and click Sign In.
    Click Review when asked to review your information.
    Enter your billing information.
    Click Continue after you enter your credit card and billing information. You can remove or edit your credit card information at any time. Learn more about updating your iTunes Store account information.
    Using an existing Apple ID with the iTunes Store, Mac App Store, and iBooks Store
    http://support.apple.com/kb/HT2589
    You will also need to authorize your computer to play purchases with this Apple ID:
    Open iTunes
    From the Store menu, choose Authorize This Computer. (In earlier versions of iTunes, access this option from the Advanced menu).
    When prompted, enter your Apple ID and password, then click Authorize.
    iTunes Store: About authorization and deauthorization
    http://support.apple.com/kb/HT1420
    With the latest version of iTunes on Windows, the menu bars are hidden, so you may need to enable them to get to the Store menu.  You can follow these steps to enable the menu bars:
    To keep the iTunes menus active, change the setting by selecting the Menu icon in the upper-left, and then selecting Show Menu Bar. Alternatively, you can press Control-B.
    iTunes: Turning on iTunes menus in Windows 8 and 7
    http://support.apple.com/kb/HT5610
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Two graphics card on macbook pro which one do I use?

    I have two graphics cards on my macbook pro. ADM random 6490m (256mb vram) and Intel HD graphics 3000 (512mb vram). My question is which one should I use? I don't do any hardcore gaming or photoshop. I guess that I am just looking for the best display and least buffering if that even has anything to do with the graphics card. I just want to get the most out of my macbook. I appreciate any advice. Thank you.

    Your MBP more or less chooses which graphics card to use automatically.  In System Preferences>Energy Saver, check Automatic graphics switching.  When it's checked on, it will use the higher power and higher quality dedicated AMD 6490 when you're plugged into the wall, and uses the Intel 3000HD when on battery.
    I have downloaded gfxCardStatus to give me more control over which graphics card to use.  There are times I might want the AMD while on battery, even though it runs hotter and uses more battery life. 
    Either card will do well with HD movies, though I notice a lot more artifacts with the Intel 3000 when the movie has a lot of action or explosions or sounds.  If you want to do hardcore gaming, you need the AMD of course.  Photoshop is more dependent on the central processor rather than the graphics card, so I'm not sure you'd have much issue using either one.

Maybe you are looking for

  • Windows Server 2008 R2 issues on OVS 3

    I've been trying to get Windows Server 2008 R2 to work on OVS3 and been having issues. First I tried to copy a working VM from OVS2 and it seemed to work, but it would crash whenever intensive I/O happened. I installed the OVS3 PVM drivers, hoping th

  • Latest Version of Flash will not work in Opera or Safari

    My windows pc has been updated to internet explorer 11 with the latest version of Flash. Flash works fine in this browser but now I cannot get it running in my Safari or Opera browser on the same pc. The plug ins are enabled in IE11. I have tried to

  • HT4993 how I can connect my Iphone 5 and my hand free Jabra cruiser2?

    How I can connect my hand free Jabra cruise 2 with my Iphone 5?

  • Why did my iPhoto stop opening on my Mac?

    I tried to open iPhoto and got the following message: You can't open the application "iPhoto.app" because it is not supported on this type of Mac. I have been successfully using iPhoto for years without ever seeing such a message. It just suddenly de

  • Grey ghost balls in task bar

    Today I have seen something new and strange.  In the center of my task bar at the top of the screen about 1 inch apart are two pale gray ghost like circles or balls.  They are about 1/2 the height of the task bar.  They just sit there and do nothing