azureportal

Cannot add a Microsoft account in Azure AD with the new portal

谁都会走 提交于 2019-12-10 18:28:56
问题 Some customers of ours are using external Microsoft accounts to access AAD services. Since we're not linked with their domain, and some of them use Gmail account, adding their entire domain to our AAD is hardly possible. The old portal (manage.windowsazure.com) had the following screen: The new portal has a guest system which hardly works (adding an external guest results in a generic B2BError: Unable to invite user with no other details -- even if the old portal still works), and "New user"

Azure Function - Event Hub to AWS RDS Postgres

ぐ巨炮叔叔 提交于 2019-12-08 12:20:49
问题 Where I work, we are trying to use an Azure Function to take a JSON string message from an Event Hub and insert it into Postgres RDS in AWS. Unfortunately, we have to use Postgres RDS for the time being to persist data but this will likely change to an Azure technology in future. I am able to get the Function bound to an Event Hub and can successfully receive messages. run.csx #r "System.Data" using System; using System.Data; using Npgsql; public static void Run(string myEventHubMessage,

How to get the VHD of an Azure managed disk?

那年仲夏 提交于 2019-12-06 13:15:05
问题 I have created a VM with a managed disk. Managed disks are no longer stored into the blob storage by default. Problem is that I now need the vhd file of the osdisk, but I am unable to find a proper way to retrieve it. The only method I found is to open the disk in the azure portal and press Export to create a download link to the vhd file. This method is undesired. 回答1: Make sure your AzureRM Powershell Module is up to date: Install-Module AzureRM -allowclobber -force Your Set-AzureRMVMOSDisk

How can I locate an Azure resource or setting creating empty WADMetrics Tables?

淺唱寂寞╮ 提交于 2019-12-06 10:18:58
We have a resource constantly creating completely empty WADMetrics tables on a storage account. We have a significant amount of Azure resources and are unable to locate what is creating them since they are completely empty. It appears 2 tables are created every 10 days designed to store data in 1Hour and 5Min buckets. How can we determine what is creating these tables? WAD stands for Windows Azure Diagnostics, which is probably enabled on a VM or other computing resource that uses this storage account for diagnostics. You can read more here about WAD and specifically about WADMetrics table. If

Disable a Triggered Azure WebJob

可紊 提交于 2019-12-06 08:51:40
问题 I've got a webhook-triggered Azure WebJob. For... reasons, I do not have control over the system that is sending the webhooks. One webhook per day is sent. It is the only WebJob hosted by the WebApp. During testing I wanted to disable this WebJob, so I stopped the WebApp. Much to my surprise, the WebJob ran even though the WebApp was disabled. So my question is two-fold: Is the ability to trigger a WebJob while a WebApp is disabled intentional, or did I encounter some sort of bug? If this is

How to get the VHD of an Azure managed disk?

被刻印的时光 ゝ 提交于 2019-12-04 19:40:47
I have created a VM with a managed disk. Managed disks are no longer stored into the blob storage by default. Problem is that I now need the vhd file of the osdisk, but I am unable to find a proper way to retrieve it. The only method I found is to open the disk in the azure portal and press Export to create a download link to the vhd file. This method is undesired. Make sure your AzureRM Powershell Module is up to date: Install-Module AzureRM -allowclobber -force Your Set-AzureRMVMOSDisk command should now have -ManagedDiskID. Just enter the resource ID for the managed disk and it should work.

Disable a Triggered Azure WebJob

我的未来我决定 提交于 2019-12-04 14:51:27
I've got a webhook-triggered Azure WebJob. For... reasons, I do not have control over the system that is sending the webhooks. One webhook per day is sent. It is the only WebJob hosted by the WebApp. During testing I wanted to disable this WebJob, so I stopped the WebApp. Much to my surprise, the WebJob ran even though the WebApp was disabled. So my question is two-fold: Is the ability to trigger a WebJob while a WebApp is disabled intentional, or did I encounter some sort of bug? If this is intentional, is there a way to disable this job being triggered via the Azure portal? If the only

Monitor free disk space on Azure VM

◇◆丶佛笑我妖孽 提交于 2019-12-04 03:00:31
Is there some way how to monitor free disk space from the Azure Portal? I know that there are all kinds of diagnostics for I/O, memory, network, CPU, .NET, SQL, ASP.NET, IIS, etc. But is there some way to see how much free space there's on a disk attached to the VM? All I found was this third-party solution: http://cloudmonix.com/blog/how-to-monitor-free-disk-space-on-azure-vms/ But there should be some way how to see a basic metric like disk space without needing third-party SW, right? Update 2019 This is possible today. To monitor free disk space per drive with Azure Monitor do the following

How to create a shared access signature with a stored access policy for an Azure Blob container in Azure Portal?

大兔子大兔子 提交于 2019-12-03 06:05:46
I read about shared access signatures generated with stored access policies for Azure Storage from here . I also read how to create this shared access signature with stored access policies for Azure Storage using PowerShell here . However, I want to do the above using Azure Portal. I know how to generate an ad-hoc shared access signature. I also know how to create a stored access policy for a container in my Azure Blob. How do I create a shared access signature with a stored access policy for an Azure Blob container in Azure Portal? How do I create a shared access signature with a stored

MSBot not responding on on opening the bot. No Welcome messaged received

那年仲夏 提交于 2019-12-01 01:44:51
I have created and deployed bot using a sample bot Welcome-Bot example given in Azure portal docs. This bot shows a welcome message whenever the bot is joined or started. It shows welcome message when I test it on emulator. But when I deploy it to Azure and test in Test Web App chat or Teams it doesn't show me Welcome message. It show me the welcome message when I query something, i.e. it gives two responses : one is the welcome message and other one is the reply of the query asked . For Microsoft Teams, you need to create an app manifest using App Studio and install in your personal scope.