Can't install windows azure storage sdk on windows phone 8

From Visual studio 2013 ultimate, I opened Nuget package manager console and typed following command for my windows phone 8 solution:
install-package windowsazure.storage
And I got the following error:
install-package : Could not install package 'Microsoft.WindowsAzure.ConfigurationManager 1.8.0.0'. You are trying to install this package into a project that targets 'WindowsPhone,Version=v8.0', but the package does not contain any assembly references or
content files that
are compatible with that framework. For more information, contact the package author.
At line:1 char:1
I get the same problem using UI version of package manager as well.
Did something change with the newer version of windows azure storage?

The package you are trying to install does not include the Windows Phone library. Please use the following command instead:
Install-Package WindowsAzure.Storage-Preview -Pre
Thanks for this. It worked for me. Can I just add, for those that don't know how to run this command. You go to tools > Library package manager > package manager console then paste in the command and hit enter.
Thanks again!

Similar Messages

  • Cannot install Windows Azure Storage Emulator - 3.0 Error: No available SQL Instance was found

    When trying to install Windows Azure SDK for .NET (VS 2013) - 2.3 from Web Platform Installer 4.6, the install fails because  Windows Azure Storage Emulator - 3.0 (Dependency) does not install successfully.  
    Possibly relevant lines from the install log are:
    CAQuietExec:  Entering CAQuietExec in C:\WINDOWS\Installer\MSI1223.tmp, version 3.6.3303.0
    CAQuietExec:  "C:\Program Files (x86)\Microsoft SDKs\Windows Azure\Storage Emulator\WAStorageEmulator.exe" init -forcecreate -autodetect
    CAQuietExec:  Windows Azure Storage Emulator 3.0.0.0 command line tool
    CAQuietExec:  Error: No available SQL Instance was found.
    CAQuietExec:  Error 0xfffffff6: Command line returned an error.
    CAQuietExec:  Error 0xfffffff6: CAQuietExec Failed
    CustomAction RunInitialize returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
    Action ended 11:50:13: InstallFinalize. Return value 3.
    Action ended 11:50:13: INSTALL. Return value 3.
    In terms of SQL Instance, SQL LocalDB is installed and working properly.  SQL Server 2012 is also installed and working properly.

    Hi,
    It is a SDK version issue. I suggest you could remove all azure sdk form your PC and use WPI to install the latest version again.
    If you have any questions, 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.

  • Windows azure storage DevelopmentStorageAccount CloudTable.CreateIfNotExists() always get 400 http error

    environment:
    windows 8.1,  Visual Studio 2013,  Windows Azure SDK2.2 ,  Microsoft.WindowsAzure.Storage V3.0.0.0,  Windows Azure Storage Emulator 2.2
    Code snippet:
    CloudStorageAccount account = CloudStorageAccount.DevelopmentStorageAccount;
    CloudTableClient tableClient = account.CreateCloudTableClient();
    CloudTable table = tableClient.GetTableReference(tableName);
    table.CreateIfNotExists();  // this line cause error
    Error Message:
    System.Net.HttpWebRequest.GetResponse() +6594148
    Microsoft.WindowsAzure.Storage.Core.Executor.Executor.ExecuteSync(RESTCommand`1 cmd, IRetryPolicy policy, OperationContext operationContext) +1948
    [StorageException: remote server return error: (400) bad request]Microsoft.WindowsAzure.Storage.Core.Executor.Executor.ExecuteSync(RESTCommand`1 cmd, IRetryPolicy policy, OperationContext operationContext) +7389
    Microsoft.WindowsAzure.Storage.Table.TableOperation.Execute(CloudTableClient client, CloudTable table, TableRequestOptions requestOptions, OperationContext operationContext) +206
    Microsoft.WindowsAzure.Storage.Table.CloudTable.Exists(Boolean primaryOnly, TableRequestOptions requestOptions, OperationContext operationContext) +394
    I have search many threads on internet.  And I cannot get any solution.  Who can help? Thanks a lot.

    Hi,
    I didn’t find any issue in the code that you provided, I also try it and in my PC it created a new table in my storage, my system is windows 8, Visual Studio 2012, Windows Azure SDK2.2, Microsfot.WindowsAzure.Storage V2.0.0.0. From my experience, there is
    something wrong in you Windows Azure SDK, I recommended you to reinstall, and then try the code again. If you have any further issue, please feel free to let me know.
    Best Regards
    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.

  • Windows Azure Storage Account Location change

    Hi Experts,
    I have deployed my Web site on Windows azure. I have created Windows Azure Storage Account. By mistakely i have set the location wrong. How can we change the location of Windows storage account? 
    Thanks!

    Hello CRM Inn,
    I am sorry to know that you have chosen an incorrect location and would like to change the location for your storage account. Unfortunately, there is no option available to change the storage location for an existing storage account.
    Your only option would be to create a new storage account, migrate data to the new storage account and delete the existing one. You can refer to this article that will give you information on migrating data from one account to another:
    http://blogs.msdn.com/b/windowsazurestorage/archive/2012/06/12/introducing-asynchronous-cross-account-copy-blob.aspx
    I also suggest that you create affinity groups. By creating affinity groups you can be sure that all your related services are under the same data center. You can refer to this article to learn about Affinity groups:
    http://msdn.microsoft.com/en-us/library/azure/jj156209.aspx
    Syed irfan Hussain

  • Latest Azure Storage SDK 4.2.1 fails under dev emulator when called at CloudTableClient.CreateIfNotExists()

    I am using Azure SDK 2.2 and Azure Storage SDK 4.2.1 and storage config. 2.0 in my cloud solution.  I am trying to initialize the storage as follows.
    CloudStorageAccount storageAccount = CloudStorageAccount.Parse(connectionKey);
                    // Create the table client.
                    CloudTableClient tableClient = storageAccount.CreateCloudTableClient();
                    // Create the table if it doesn't exist.
                    table = tableClient.GetTableReference(tableName);
                    table.CreateIfNotExists();
    Table.CreateIfNotExists() throws an exception in my dev emulator. I have been seeing this issue for quite sometime. It looks like MSFT has not fixed this issue at all. The same code works fine when I connect to the real Azure storage in the cloud. It just
    does not work under emulator. How can I debug anything. If I use Storage SDK 2.1, it works fine in dev emulator. After 3.0, nothing seems to work. Am I only one or anybody else have the same issue. Is there any workaround for this version or should I stick
    to the old version. Any help is appreciated.
    here is the detail exception.
    ex {"The remote server returned an error: (400) Bad Request."}
    System.Exception {Microsoft.WindowsAzure.Storage.StorageException}
    + [Microsoft.WindowsAzure.Storage.StorageException]
    {"The remote server returned an error: (400) Bad Request."}
    Microsoft.WindowsAzure.Storage.StorageException
    _className
    null string
    + _data
    {System.Collections.ListDictionaryInternal}
    System.Collections.IDictionary {System.Collections.ListDictionaryInternal}
    _dynamicMethods
    null object
    _exceptionMethod
    null System.Reflection.MethodBase
    _exceptionMethodString
    null string
    _helpURL
    null string
    _HResult
    -2146233088 int
    + _innerException
    {"The remote server returned an error: (400) Bad Request."}
    System.Exception {System.Net.WebException}
    + _ipForWatsonBuckets
    8791483017288 System.UIntPtr
    _message
    "The remote server returned an error: (400) Bad Request."
    string
    _remoteStackIndex
    0 int
    _remoteStackTraceString
    null string
    + _safeSerializationManager
    {System.Runtime.Serialization.SafeSerializationManager}
    System.Runtime.Serialization.SafeSerializationManager
    _source
    null string
    + _stackTrace
    {sbyte[192]} object {sbyte[]}
    _stackTraceString
    null string
    _watsonBuckets
    null object
    _xcode
    -532462766 int
    + _xptrs
    0 System.IntPtr
    + Data
    {System.Collections.ListDictionaryInternal}
    System.Collections.IDictionary {System.Collections.ListDictionaryInternal}
    HelpLink
    null string
    HResult
    -2146233088 int
    + InnerException
    {"The remote server returned an error: (400) Bad Request."}
    System.Exception {System.Net.WebException}
    + IPForWatsonBuckets
    8791483017288 System.UIntPtr
    IsTransient
    false bool
    Message
    "The remote server returned an error: (400) Bad Request."
    string
    RemoteStackTrace
    null string
    Source
    "Microsoft.WindowsAzure.Storage" string
    StackTrace
    "   at Microsoft.WindowsAzure.Storage.Core.Executor.Executor.ExecuteSync[T](RESTCommand`1 cmd, IRetryPolicy policy, OperationContext operationContext)\r\n   at Microsoft.WindowsAzure.Storage.Table.TableOperation.Execute(CloudTableClient client,
    CloudTable table, TableRequestOptions requestOptions, OperationContext operationContext)\r\n   at Microsoft.WindowsAzure.Storage.Table.CloudTable.Exists(Boolean primaryOnly, TableRequestOptions requestOptions, OperationContext operationContext)\r\n  
    at Microsoft.WindowsAzure.Storage.Table.CloudTable.CreateIfNotExists(TableRequestOptions requestOptions, OperationContext operationContext)\r\n   at PSI.Applications.RemoteManagement.TraceLogManagement.AzureTableStore.InitializeStorageTable(String tableName,
    String connectionKey) in c:\\AzureTraceCloudService\\AzureTableStoreLib\\AzureTableStore.cs:line 27"
    string
    + TargetSite
    {T ExecuteSync[T](Microsoft.WindowsAzure.Storage.Core.Executor.RESTCommand`1[T], Microsoft.WindowsAzure.Storage.RetryPolicies.IRetryPolicy, Microsoft.WindowsAzure.Storage.OperationContext)}
    System.Reflection.MethodBase {System.Reflection.RuntimeMethodInfo}
    WatsonBuckets
    null object
    + Static members
    Thanks,
    Ravi

    Hi Ravi,
    This issue maybe caused by storage client library is still not compatible with storage emulator and that's why your code is failing. I would recommend downgrading your storage client library to the previous version and your code should work just fine,
    the best option I think is to upgrade the SDK to the latest version, refer to
    http://azure.microsoft.com/blog/2014/08/04/announcing-release-of-visual-studio-2013-update-3-and-azure-sdk-2-4/ for more details.
    Best Regards,
    Jambor
    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.

  • Export Table Data to JSON via Azure Storage SDK

    Hi,
    I'm looking to export the contents of a table in JSON format and then save that JSON to one or more files.
    I see that we can have the table return JSON using: tableClient.DefaultRequestOptions.PayloadFormat = TablePayloadFormat.Json;
    I also see how to deserialize the JSON into an array of objects using something like this to get an array of CustomerEntity:
    IQueryable<CustomerEntity> query = from customer in table.CreateQuery<CustomerEntity>()
    where string.Compare(customer.PartitionKey, "I") >= 0 &&
    string.Compare(customer.PartitionKey, "X") <= 0 &&
    customer.Rating >= 2
    select customer;
    CustomerEntity[] customers = query.ToArray();
    But what if I don't want the results as CustomerEntity objects, I just want the raw JSON?
    The
    CloudTable.CreateQuery method requires a type that inherits from ITableEntity...
    I guess I could switch from using the Azure Storage SDK client to an HTTP client and query via OData, but I'd prefer a solution within the Azure Storage SDK...
    Thanks,
    Aron

    Thanks Will,
    Here is a more complete code snippet. As you can see, I have the payload set to JSON.
    const string customersTableName = "Customers";
    string connectionString = string.Format("DefaultEndpointsProtocol=https;AccountName={0};AccountKey={1}", accountName, accountKey);
    CloudStorageAccount storageAccount = CloudStorageAccount.Parse(connectionString);
    CloudTableClient tableClient = storageAccount.CreateCloudTableClient();
    // Values supported can be AtomPub, Json, JsonFullMetadata or JsonNoMetadata with Json being the default value
    tableClient.DefaultRequestOptions.PayloadFormat = TablePayloadFormat.Json;
    // Create the Customers table
    CloudTable table = tableClient.GetTableReference(customersTableName);
    table.CreateIfNotExists();
    // Insert a couple of customers into the Customers table
    foreach (CustomerEntity customer in CustomerEntity.GetCustomersToInsert())
    table.Execute(TableOperation.Insert(customer, echoContent: false));
    // The response have a payload format of JSON no metadata and the
    // client library will map the properties returned back to the CustomerEntity object
    IQueryable<CustomerEntity> query = from customer in table.CreateQuery<CustomerEntity>()
    where string.Compare(customer.PartitionKey, "I") >= 0 &&
    string.Compare(customer.PartitionKey, "X") <= 0 &&
    customer.Rating >= 2
    select customer;
    CustomerEntity[] customers = query.ToArray();
    However, the way the query is set up it automatically casts the results as CustomerEntity. That's the challenge - How to get the JSON payload before it gets cast to CustomerEntity...
    Thanks,
    Aron

  • Windows Azure Tools: Failed to initialize Windows Azure storage emulator. Unable to start the storage emulator.

    Hi,
    I created a cloud service using Visual Studio 2013. When I tried to run the service, it fails with
    Windows Azure Tools: Failed to initialize Windows Azure storage emulator. Unable to start the storage emulator.
    Is there a way to debug this error? At a bare minimum, it would be great to get an error message on why it could not start.
    Thanks

    I ran Windows Azure Storage Emulator -v3.1 to launch the command line tool. I wanted to see if I could get some debug information, but that failed with the following exception.
    C:\Program Files (x86)\Microsoft SDKs\Windows Azure\Storage Emulator>WAStorageEmulator.exe start
    Windows Azure Storage Emulator 3.1.0.0 command line tool
    Unhandled Exception: System.TimeoutException: Unable to open wait handle.
       at Microsoft.WindowsAzure.Storage.Emulator.Controller.EmulatorProcessController.InternalWaitForStorageEmulator(Int32 timeoutInMilliseconds)
       at Microsoft.WindowsAzure.Storage.Emulator.Controller.EmulatorProcessController.EnsureRunning(Int32 timeoutInMilliseconds)
       at Microsoft.WindowsAzure.Storage.Emulator.StartCommand.RunCommand()
       at Microsoft.WindowsAzure.Storage.Emulator.Program.Main(String[] args)

  • Why i can't install iTunes 10.6.3 on windows vista home premium x86 ???? 1 hour ago

    Why i can't install iTune 10.6.3 on windows vista home premium x86 ????

    What happens when you try, what error messages do you get?

  • Can I instal SAP Netweaver 2004s trial on windows vista home premium

    Hi ,
    Can I install SAP Netweaver 2004s trial on WIndows vista home premium. Please advise.
    One more thing is I am not able to download the Trial version from the SAP's FTP site. Because ftp is blocked in our company. Is there any other site from which I can download the trial version. Please advise.
    Thanks,
    Sam.

    In this Forum it appears that Windows 2000 with SP4 will work as well (haven't tried it).
    If you've got VISTA you could consider running the trial on a Virtual Machine. Parallels,  and vmware offer commercial vm products for generating Virtual machines whilst Microsoft (Virtual Pc2007) and VBOX offer Free virtualisation products.  Vmware also provides a FREE vmware server virtualisation product --this works fine as well although no multi-media support. However if you only need the Virtual Machine to run the Netweaver trial then that's no big deal.
    As I've posted elsewhere a Win XP pro Virtual Machine using only 512MB of RAM will give quite adequate performance of the ABAP trial. Don't even THINK of the Java edition unless you've got at LEAST 2GB - even on a Virtual Machine.
    Cheers
    Jimbo

  • Can't install itunes 11.1.3 on Windows 8.1

    Hi, I bought a new toshiba a few days ago, and i need to install itunes. I tried many times, and I can't install it.
    My pc runs windows 8.1 64 bit. It says that exists a problem with this windows installer package. And that is necessary a DLL to conclude this installation that cannot be executed.
    Can anyone help me?

    My pc runs windows 8.1 64 bit. It says that exists a problem with this windows installer package. And that is necessary a DLL to conclude this installation that cannot be executed.
    The following user tip has links to resources on that:
    " ... A DLL required for this installation to complete could not be run ..." error messages when installing iTunes for Windows
    ("Run as administrator" should also work on Windows 8 systems as well as 7 or Vista.)

  • I can't install Speedgrade 7.1 on my windows 8.1 Toshiba laptop

    I can't install Speedgrade 7.1 on my windows 8.1 Toshiba laptop in order to get dynamic link. Does anyone know why? Speed grade 7.1 doesn't show up on my cloud update panel either. I have new Toshiba Qosmio laptop.

    Could you try a manual upgrade?
    The download is posted at:
    Win: http://www.adobe.com/support/downloads/detail.jsp?ftpID=5679
    Mac: http://www.adobe.com/support/downloads/detail.jsp?ftpID=5678
    Thanks,
    Fran

  • Can't install mcafee in vmfusion running under windows xp; error is not understandable; any ideas?

    Can't install mcafee in vmfusion running under windows xp; error is not understandable; any ideas?

    Please repost in a VMWare Fusion forum, you can find it at:
    http://communities.vmware.com/community/vmtn/desktop/fusion.

  • Can't install itunes on an acer laptop, windows 7, any uselful ideas???

    Can't install itunes on an acer laptop, windows 7, any uselful ideas???

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

  • Can i install cs4 design premium on a windows 8.1 ssd drive

    can i install cs4 design premium on a windows 8.1 ssd drive

    tried but did not work for me - have suggested user to get subscription to CC.

  • How can i install itunes 11.0.1 on windows xp professional x64 edition

    how can i install itunes 11.0.1 on windows xp professional x64 edition

    I have eventually managed to resolve my issue by:
    1) Installing "Segoe UI" fonts in the C:\Windows\Fonts folder.
    2) Changing my default colour profile to "sRGB Color Space Profile".
    Navigate to My Computer > Control Panel > Display > Settings > Advanced > Color Management.
    Click Add button and select sRGB Color Space Profile.icm from the Add Profile Association pop-up window.
    Select sRGB Color Space Profile.
    Click on the Set as Default button.
    Click on Apply, OK, OK.

Maybe you are looking for

  • My itunes won't recognize my ipad on windows 7 with itunes 64 installed

    I have itunes 64 installed with windows 7 and i just purchased a new ipad. When i plug in the ipad and open itunes, itunes says i need the itunes 64 version...i have uninsatalled and reinstalled the 64 version 3 TIMES..restared my ipad and computer e

  • File or BD-Export not found in CD/DVD

    Dear All I want to install IDES 4.6 C on windows 2000 advance server with DB MS SQL 2000. My CD/DVD from SAP as follows this: 1.DVD 51017108 1of2 (R/3 4.6C; inc.Support 1-28; DB-Export Part 1; Ides WP-Doc as label) have folder:      a. DB_Export -->D

  • Hiding icons in the Dock and 'Word for Mac'

    Hi, I'm new to macs and I'm struggling a little with some of the simpler tasks! I've put Word for Mac Student Edition on my Macbook but can you tell me how I can delete a word document once I've created it? I can't seem to find 'delete.' Also, can so

  • Installation of ODI with SQL Server 2005

    Hi I am trying to install ODI with MS Sql Server 2005. I created a database in Sql Server & created a user with db_owner rights for logging into the database. While trying to install Master Repository, i selected Sql Server with following details Dri

  • Implement workflow process for material reservation using tcode IW32

    Hi How can I implement workflow process for material reservation using tcode IW32 - PM order. Thanks, Amos