User Profile
Richard_Hooper
MVP
Joined 9 years ago
User Widgets
Recent Discussions
Cross Workspace queries
Been trying to do a cross workspace query on Perf data but it does not look at my other workspaces. When doing a query on Heartbeat it works. This is my Perf query (minus ID's) union isfuzzy=true workspace("workspaceID").Perf, workspace("workspaceID").Perf, workspace("workspaceID").Perf | where TimeGenerated > ago(10m) | where ObjectName == "Processor" and CounterName == "% Processor Time" and InstanceName == "_Total" and Computer in ((Heartbeat | where OSType == "Windows" | distinct Computer)) | summarize PCT95CPUPercentTime = percentile(CounterValue, 95) by Computer | where PCT95CPUPercentTime > 90 | order by PCT95CPUPercentTime desc I know soon I will be able to use the built-in Azure monitor to do this, but it's not live in my region yet. Any help would be awesome.1.8KViews0likes2CommentsRe: Unable to modify Conditional Access Policies
If you sign up to the free trial of Azure AD Premium, you will be able to see it. Just make sure you disable the trail after you have finished. You could ask your colleague what they set up also. from there you should be able to figure out what impact deleting them might have. Hope that helps.6.8KViews0likes1CommentRe: rewrite URL in Aziure Load Balancer
Admin O365 You will need to use Azure Front Door for this. You can view this guide to help you. https://docs.microsoft.com/en-us/azure/frontdoor/front-door-url-rewrite I believe you can also do this in a web app. you can read more about that at https://social.technet.microsoft.com/wiki/contents/articles/32229.azure-create-an-url-rewrite-azure-web-app.aspx#Configure_the_URL_rewrite I hope this helps.7.9KViews0likes2CommentsRe: Details on Azure Certification
Shweta Hegde If you are just starting out with Azure then it would be wise for you to take the AZ-900. https://www.microsoft.com/en-us/learning/exam-az-900.aspx This is an optional exam, you do not have to take it, but its good if you are just starting out with Azure. Now as you say you are an Azure developer, so you will want to take the AZ-203. https://www.microsoft.com/en-us/learning/exam-az-203.aspx After you pass this one exam you will earn the Microsoft Certified: Azure Developer Associate certificate. You can stop here if you like or go on to the expert level certificates. I have a video on the Azure exams you can view it @ https://youtu.be/6FPXKF_675A Hope this helps. Any issues please let me know.733Views0likes0CommentsRe: azcopy journal .jnl
yannBD Below is from the Microsoft docs: Note that when exporting tables to blobs, AzCopy downloads the Table entities to local temporary data files and then uploads those entities to the blob. These temporary data files are put into the journal file folder with the default path "%LocalAppData%\Microsoft\Azure\AzCopy", you can specify option /Z:[journal-file-folder] to change the journal file folder location and thus change the temporary data files location. The temporary data files' size is decided by your table entities' size and the size you specified with the option /SplitSize, although the temporary data file in local disk is deleted instantly once it has been uploaded to the blob, please make sure you have enough local disk space to store these temporary data files before they are deleted. So from this, I would say they are not meant to be read by a human. Hope this helps.5.4KViews0likes0CommentsRe: Azure Automation connecting to Exchange with MFA enforced
Chris Johnston Unfortunately what I was suggesting will not work. There seems to be a user voice regarding this. https://office365.uservoice.com/forums/273493-office-365-admin/suggestions/14890308-allow-admin-to-create-powershell-session-using-app I am thinking that you will not be able to do what you want to do with MFA enabled.25KViews0likes4CommentsRe: Azure Automation connecting to Exchange with MFA enforced
Chris Johnston Have you looked at using application passwords for the office 365 account with MFA? https://docs.microsoft.com/en-us/azure/active-directory/user-help/multi-factor-authentication-end-user-app-passwords You could potentially store the application password in a keyVault and call it from your service principal.25KViews0likes7CommentsRe: how to public web in azure for security ?
Tien Ngo Thanh Quick question. Why are you not using app services and Azure SQL for your site? Why are you using VM's? If you need to use VM's then your web server will need to have a public IP address. you would then configure your NSG to allow port 443 (secure web) to the web server. As you only have one web server you will not need a load balancer etc.2KViews0likes2CommentsRe: updating my OMS queries
vicky2019 I ran your query and it seems to work fine for me. search in (ProtectionStatus) * | summarize Rank = max(ProtectionStatusRank) by Computer | limit 500000 | where Rank == "250" The first bit above. did return no results as I had no 250. So I removed the whare and got a list of results. The second part of your query below is commented out. so it does not get used. the // comments it out. // Oql: Type=ProtectionStatus | measure max(ProtectionStatusRank) as Rank by Computer | top 500000 | where Rank:250 What are you expecting to see? Can you try running the first bit without the | where Rank == "250" ? Let me know how you get on.1.5KViews1like2Comments
Groups
Developer User Group Leaders Hub
The place where user group leaders who want to be in the know -- on the latest & greatest from Microsoft Dev Tools, Azure, and AI topics -- come together to discuss, learn, share best practices, and get weekly updates.Recent Blog Articles
No content to show