azure-marketplace

How to check if name already exists? Azure Ressource Manager Template

倾然丶 夕夏残阳落幕 提交于 2019-12-11 04:39:38
问题 is it possible to check , in an ARM Template, if the name for my Virtual Machine already exists ? I am developing a Solution Template for the Azure Marketplace. Maybe it is possible to set a paramter in the UiDefinition uniqe? The goal is to reproduce this green Hook 回答1: A couple notes... VM Names only need to be unique within a resourceGroup, not within the subscription Solution Templates must be deployed to empty resourceGroups, so collisions with existing resources aren't possible For

Is it possible to create an Umbraco site from the Azure Marketplace using powershell?

强颜欢笑 提交于 2019-12-11 02:58:32
问题 I keep getting requests to set up Umbraco sites for developers. I have done a bit of searching and, I am wondering if it is possible to use powershell to create an Umbraco site from the Azure Marketplace using powershell . I create VMs, for example, using the following commands: Get-AzureVMImage New-AzureQuickVM But I cand find any for websites (web apps) from the market place. There is what I would use to do in in the portal: Note : it must be done using the market place. Update to question:

How can i publish my web solution to Marketplace

五迷三道 提交于 2019-12-02 08:37:15
I have a web application which provides data analysis service and deployed on Azure virtual machine. How can i publish it on Azure Marketplace and in which category it will fall? There is a complete and documented process for that. You first need to apply as a certified partner : https://azure.microsoft.com/en-us/marketplace/programs/certified/ Then in the publish steps you will choose up to five categories : https://azure.microsoft.com/en-us/documentation/articles/marketplace-publishing-push-to-staging/#step-4-choose-azure-marketplace-categories Same thing for all marketing info (logos,

Azure Marketplace: Is it possible to use images in Managed Application offer?

只谈情不闲聊 提交于 2019-12-02 08:35:28
问题 I created Azure Managed Application. I used managed images in mainTemplate.json to create new VMs, like in example: { "type": "Microsoft.Compute/images", "apiVersion": "2018-04-01", "name": "front-image", "location": "[parameters('location')]", "properties": { "storageProfile": { "osDisk": { "osType": "linux", "osState": "Generalized", "blobUri": "[concat('https://sdfasdfasdf.blob.core.windows.net/images/myserver.vhd')]", "caching": "ReadWrite", "storageAccountType": "Standard_LRS" } } } }, {

Azure Marketplace: Is it possible to use images in Managed Application offer?

半世苍凉 提交于 2019-12-02 07:06:47
I created Azure Managed Application. I used managed images in mainTemplate.json to create new VMs, like in example: { "type": "Microsoft.Compute/images", "apiVersion": "2018-04-01", "name": "front-image", "location": "[parameters('location')]", "properties": { "storageProfile": { "osDisk": { "osType": "linux", "osState": "Generalized", "blobUri": "[concat('https://sdfasdfasdf.blob.core.windows.net/images/myserver.vhd')]", "caching": "ReadWrite", "storageAccountType": "Standard_LRS" } } } }, { "apiVersion": "2016-04-30-preview", "type": "Microsoft.Compute/virtualMachines", "name": "myserver",

How do I use the Bing Search API in Windows Phone?

社会主义新天地 提交于 2019-11-30 07:37:31
I'm trying to use the Bing Search API to find images as backgrounds to the tiles inside of my app. I've included the BingSearchContainer.cs in my Project but I can't make it work with the sample code provided here. Any guidelines for how to use the Bing Search API inside of my Windows Phone 8 app would be appriciated! Thanks for any answer. I expect that you already have a AccountKey so I wont tell you have to get one. Implementation First of all, add the BingSearchContainer.cs to your project Implement the sample C# code found in the Bing API Quick Start & Code Thereafter, right-click