Using MSDN licenses in Azure

Hi
This may or may not be the right forum to ask this question but I cannot find a relevant forum to post to.
Does anybody know if MSDN licenses can be used in Azure outside of an MSDN-activated subscription?
In all the documentation I have read, it talks about using MSDN licenses in a subscription activated from the MSDN benefits. However, I would like to use the MSDN software in a non-MSDN subsrcription (an Azure EA sub).  I cannot find any information
which specifically says that this scenario is or isn't allowed.
Thanks
Gary

Hi Gary,
It is not possible to use MSDN licenses  under a non MSDN azure subscription. The MSDN licenses are specifically made available for MSDN subscribers.
Regards,
Shirisha Paderu

Similar Messages

  • How to tell whether a license used to install SQL Server is MSDN license or Volume license?

    I want to check license used to install SQL Server is MSDN license or Volume license for SQL Servers which are at least SQL Server 2008 on Windows 2008 R2.  Is there any script/command/tool that I can run on Windows or SQL Server to find such
    information? 

    Hello,
    This is a community forum for technical questions & issues.
    For question regarding pricing / licensing please contact a Microsoft sales partner or licensing expert.
    Call (1-800-426-9400), Monday through Friday, 6:00 AM to 6:00 PM PST to speak directly to Microsoft licensing specialist.
    http://www.microsoft.com/en-us/server-cloud/products/sql-server/buy.aspx
    T-SQL Articles
    T-SQL e-book by TechNet Wiki Community
    T-SQL blog

  • Use of SPLA licensing with Azure RemoteApp

    We are an ISV looking to deploy some of our applications using RemoteApp. Many of our applications interact with Excel and we were wondering if we could use SPLA licensing with RemoteApp instead of requiring our users to use Office 365 subscriptions. 
    Let me know what our options are.

    Hi Greg,
    Yes, you can license Office to your Azure RemoteApp users via SPLA, subject to the terms of your Service Provider License Agreement and the Service Provider Use Rights (SPUR) document.  Azure is considered a Data Center Provider, and Office Professional
    Plus 2013 and Office Standard 2013 both have "Eligible for Software Services on Data Center Providers’ Servers:
    Yes". 
    Please download and read the Universal License Terms, SAL General License Terms Desktop Applications section, and product-specific (Office Pro/Standard) license terms section(s) in the SPUR for specific details, as well as your Service Provider
    License Agreement.
    Service Provider Use Rights download
    http://www.microsoftvolumelicensing.com/DocumentSearch.aspx?Mode=3&DocumentTypeId=2
    Thanks.
    -TP

  • Add a second license in Azure subscription

    Hi,
    Was purchased 2 license Microsoft Open Licence for Windows Azure.
    Using these data, on the site www.microsoft.com/Licensing/ I activated the license.
    In the section "Downloads and Keys" I see my license (Azure Subscription Services Open) and product key.
    On the site account.windowsazure.com/ I added to the subscription "Azure with an open source license" credits, by entering the serial number.
    Things work, credits were added.
    I want to activate a second license.
    When attempting to add credits to Microsoft, says that the serial number is already in use.
    Please help add a second license in Azure subscription.

    Shubin
    This forum is dedicated to Azure Key Vault troubleshooting.
    To get help for Azure subscription, please file a support ticket from
    Azure Management Portal 

  • VM built with trial software - licensing on Azure?

    Hello
    Let's say I download Windows Server 2012 trial, then build and test until I am satisfied, create a VHD and upload to Azure.
    Apparently the Server license and CALs are included with the Azure subscription? But this installation of Windows wants a full license key right? It doesn't know it's running on Azure. I wouldn't want this to expire in 180 days. How do I do that?

    hi sir,
    If you always want to use your custom OS on Azure, you may need have a license key.
    Another way You can install the software on Azure VM and capture the OS on Azure as an Image.  
    Also, you could see this document about licensing :
    http://azure.microsoft.com/en-gb/pricing/licensing-faq/
    By the way, for this issue, you could post on Azure VM for more helps.
    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.

  • Hi all - is it really possible to use one license for two computers or is it just a rumor?

    I heard that it would be possible that you can use one license for two computers. Is that the truth? And if so - how does it work?
    Thanks
    K

    Adobe CC or any perpetual previous version allows you to install & activate it two times (on the same computer or other different one).
    As per End user license agreement, only one computer can be used at one given time.
    Please refer to:
    Licenses and terms of use | Adobe
    Adobe - Adobe product license agreements
    Hope it helps you.
    Regards
    Rajshree

  • Is it possible to connect Sqlfire server with oracle using DBSynchronizer using default license

    is it possible to connect Sqlfire server with oracle using DBSynchronizer using default license
    Sql fire is my machine
    Oracle is another machine
    When i connect sqlfire with oracle using DBsynchronizer It shows the error message as Wan is not supported for default license
    When i connect Sqlfie(my system) with oracle( another system) using JDBC Rowloader .nothing is happening after some time it shows the error like"time out for pool connection to archive database.When i increase the time out also nothing is happening.
    what is the reason for above two errors(I stated in the pragraph.)
    is it beacuse of wan netwrok not supported by default evaluation license?
    could you please explain?

    I don't think this has anything to do with a VMware product.

  • Using SQL permissions in Azure

    I am trying to use sql security in Azure and my first attempt doesn't work because the ALTER ROLE statement doesn't seem to be supported.  I'm interested in whether I can use sql security in Azure, and if so how.
    My current approach, which works in SQL Server 2012, is to create roles and add users to those roles, e.g.
    1. CREATE USER [xxx] FOR LOGIN [Azurexxx] WITH DEFAULT_SCHEMA=[dbo]
    2. CREATE ROLE [AttendeeNoPayUpdate]
    3. DENY UPDATE ON OBJECT::dbo.Attendees(HasPaid) TO [AttendeeNoPayUpdate]
    4. ALTER ROLE [AttendeeNoPayUpdate] ADD MEMBER [xxx]
    The first three statements work, but the ALTER ROLE does not, with the error 'Statement 'ADD/DROP ROLE MEMBER' is not supported in this version of SQL Server.'
    My question is - how should I set up sql security on an Azure database? Clearly roles are supported, otherwise statements 2 and 3 wouldn't work, so can I use them with Users? Obviously the alternative is to stop using roles and assign  the GRANT/DENY
    directly to the user, which looks like it works.(I use roles because I have the same permissions applied to lots of users).
    I would appreciate any suggestions or insights on the best/correct way to set up GRANT/DENY permissions for users.
    Jon Smith

    Hi,
    I found the answer after trawling a lot of sites. I found the page
    Managing Databases and Logins in Azure SQL Database and Azure uses the stored procedure 'sp_addrolemember'. Once I swapped to that then everything worked.
    In case someone else finds this useful I have listed the same code as in the question, but with the right command to add the role.
    1. CREATE USER [xxx] FOR LOGIN [Azurexxx] WITH DEFAULT_SCHEMA=[dbo]
    2. CREATE ROLE [AttendeeNoPayUpdate]
    3. DENY UPDATE ON OBJECT::dbo.Attendees(HasPaid) TO [AttendeeNoPayUpdate]
    4. EXEC sp_addrolemember 'AttendeeNoPayUpdate', 'xxx'
    Jon Smith

  • Can I download a trial version for acrobat pro 11, and then use purchased license to register it?

    as the title: can I download a trial version for acrobat pro 11, and then use purchased license to register it?

    You should find the licensing info and download at https://licensing.adobe.com/ then.

  • I have deactivated my CS6 on my old computer and now when I have downloaded a trial version and enter the serial number it says not valid? I have only used my license on one computer before? Does anyone know the problem?

    I have deactivated my CS6 on my old computer and now when I have downloaded a trial version and enter the serial number it says not valid? I have only used my license on one computer before? Does anyone know the problem?

    Chat Now button near the bottom for Activation and Deactivation problems may help
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html
    OR
    Asked to sign in after paying may help
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    or
    http://helpx.adobe.com/creative-cloud/kb/license-this-software.html
    Membership and Payments http://helpx.adobe.com/x-productkb/policy-pricing/membership-subscription-troubleshooting- creative-cloud.html

  • IP Ranges for use with On-Premeses Azure Mult-Factor Auth

    Anyone know where MS publishes an up to date list of IP ranges of POPs for use with on-premises Azure Muti-factor Auth? I'm seeing some issues and firewall logs show connections are going to IPs not currently in the last list of IP ranges we received from
    MS (late last year).

    The 204.13.12x.xx addresses above are no longer used. Also, the list above is missing
    134.170.116.72/29.
    For those using event confirmation features or doing mobile app authentications with devices that are on the corporate network, the ranges need to be a little wider:
    157.55.242.0/25
    208.68.140.0/25
    134.170.116.0/25
    134.170.165.0/25
    These are subject to change as the service expands to additional datacenters. It is best to use the following URLs if possible:
    css.phonefactor.net
    pfd.phonefactor.net
    pfd2.phonefactor.net

  • Need to find out how to install QuickTime Pro on a new device using current license.

    I broke the screen on my previous laptop/tablet and had to replace it. I had paid for QuickTime Pro and have an active license. I need to find out how to install QuickTime Pro on a new device using current license. My old device has been destroyed.

    Download and install the free QuickTime Player 7 from Apple and enter your registration info to unlock the Pro features.

  • Can I use one licensed copy of Elements on both a PC and a Mac?

    Can I use one licensed copy of Elements on both a PC and a Mac?

    Thanks for the reply.
    I'll be buying a boxed version which says it comes with CD's for both platforms.
    The Mac doesn't get used very often for photo editing, but it would be nice to have that option.

  • Are Soundbooth music and scores free for personal use withut license

    Using Soundbooth in CS5. Wondering if Scores and music are free to use without license or does Adobe have all rights to music within Soundbooth Software.

    I also know that iWeb is only html, css and js based, but I want to add my own personal stuff that it is not related to apple that will run other things. I am not sure if this will violate apples terms however.
    I'm puzzled why you think your modifying the html and other code produced by iweb might possibly violate anything. Is there any other web editing software which imposes such restrictions? If so, I would be curious which ones do that.
    I think there are several people in this forum who have used iweb to create some basic code and then used Dreamweaver and other apps to add advanced features they wanted for uploading to non-.Mac server.

  • Using Upgrade License on UCCX 8.0 with "Fresh Install" setup

    Hi all,
    My situation right now is that I want to install UCCX 8.0 (on a VM environment) and I don't have any previous UCCX version deployed, but the licenses I have are :
    - an Upgrade License from ver.5 to ver.8
    - a PAK and SW kit license (also contains the seats licenses) for UCCX version 5.
    Because I don't have any previous UCCX version deployed, I installed UCCX 8.0 and chose "Fresh Install". When I upload the upgrade license, the server returned a warning that said "The license for Cisco Unified CCX Premium Seat ESW or UCSS Upgrade is not a valid addition for the package None and therefore it will be ignored" and "The license for Cisco Unified CCX Premium ESW or UCSS Upgrade is not a valid addition for the package None and therefore it will be ignored".
    My questions are :
    - Can I use the licenses I have on a fresh installation of UCCX 8.0 ( the upgrade license and the ver.5 license) ? Because I've tried similar scenarios with the licenses on Unity Connection and it worked. I'm wondering if it's not possible with UCCX 8.0 and that's what caused the error.
    - If the answer for the "Fresh Install" path is No, does it mean I have to use the "Upgrade" path -what I'm trying to avoid if I can- meaning that I have to install ver.5 first and then upgrade it to ver.8 using PUT( ? Because on the initial setup If I choose "Ugrade from previous version" it will ask where the data from the previous version are located and right now I don't have any.
    Thanks in advance.
    Regards,
    Regi

    Thanks for the answer Hoai Huynh (and Aaron for adding the info).
    Just what I was worrying about, I need to build a ver.5 first. I would appreciate it if you can answer a few last questions if you don't mind :
    So, I need to install UCCX v.5 and also CM v.5 (because my CM v.8 is not supported by UCCX v.5).
    Can the UCCX ver.5 data from the migration tool (PUT) be used on the UCCX v.8 that is integrated with different CM server (different IP address, different credentials, etc) ? Because the steps in the UCCX v.8 upgrade guide are describing a scenario where the CM is the same server and is being upgraded at the same time with UCCX.
    Related to no.1 question, Is there anything I should be aware of when setting up the UCCX ver.5 and CM ver.5 ? For example : need to have same IP addresses with the version8 servers, same AXL / application user name and password, etc.
    At exactly what point of configuration on UCCX v.5 can I use the PUT to migrate data from the ver.5 (the guide only mentioned to make sure that the server is up and running)? Can I do it right away after the first initial setup ? Or do I need to configure a working application to get all the subsystems in "full-service" first ?
    Thanks again.
    Regi

Maybe you are looking for

  • Why can't I transfer my photos from the memory card to my computer.

    I have an HP 5510 and can't see where I can download photos from the memory card to my computer. The printer only lets me view the photos or print them, but I want to store them on my computer. How do i do that?

  • Is there a tool to clean a directory structure of unused LabVIEW code?

    I could write this from scratch as follows: Load all of my LabVIEW code including dynamically-called VIs into memory, then list all these VIs. List all VIs in the directory structure I want to clean. For each VI in the directory structure that's not

  • BAPI performance low- taking too long execution time

    Hi, I am using BAPI "BAPI_MOSRVAPS_GETLIST2" for reading planned order details but its taking to long to execute (3-4 mins approx  for 3-4 products). Please suggest me how to improve the performance of it. Input for the BAPI : Import Parameters Table

  • Statistical posting to cost center

    Hi gurus, My client requirement is while doing goods issue against goods issue that cost should post to cost center as statistical,,, is it possible to do so...Pls help me on this... Thanks, Ram

  • Turning off Google Toolbar install prompt

    I have packaged Shockwave player into an msi. But I keep getting the Google Toolbar install prompt anytime it is run for the first time on a new PC. Please how to I turn this off. Thanks Kofi