Category: Microsoft
Category Archives: Microsoft
Locking numbers in calendar
Hi,
I have 3 tabels where i need the total sum of them to be put in a calender.
I would like it to be automatic but I don’t know how.
I already have the total sum of the tabels. But now I need something to put them into a calendar for save keeping.
Is there any way to put them in the calender automatically?
Please ask any question if I’m onclear on anything.
Thanks in advance.
Hi, I have 3 tabels where i need the total sum of them to be put in a calender.I would like it to be automatic but I don’t know how. I already have the total sum of the tabels. But now I need something to put them into a calendar for save keeping. Is there any way to put them in the calender automatically? Please ask any question if I’m onclear on anything.Thanks in advance. Read More
Value not shown in grid but shown in edit window.
Hi all,
I seek you advise, I have a calculated column in date format.
For some reasons I don’t get the result in the grid view.
However it is in the edit window
If I change column type from ‘Date and Time’ Date only to single line of text; then it is displayed in grid but as a number like 45517.
Why is it not showing when it is a date ???
Thanks
Hi all, I seek you advise, I have a calculated column in date format. For some reasons I don’t get the result in the grid view.However it is in the edit window If I change column type from ‘Date and Time’ Date only to single line of text; then it is displayed in grid but as a number like 45517. Why is it not showing when it is a date ??? Thanks Read More
Event trigger not running the pipeline might be due to event grid, need assistance on creation
Hi,
I created a trigger which supposed to run a pipeline once new file arrived.
It seems like my trigger has no issue and the problem is that I don’t have an existing event grid for that trigger.
Now, I’m trying to create an event grid subscription but I’m receiving the error below.
I don’t know if I’m using the correct Endpoint as I’m just formatting it to the existing event subscription in our Azure.
existing: https://pmeastus2.svc.datafactory.azure.com:4443/triggerevent/BlobEventsTrigger/trigger 1
what I’m using to create the event subscription:
Hi,I created a trigger which supposed to run a pipeline once new file arrived. It seems like my trigger has no issue and the problem is that I don’t have an existing event grid for that trigger. Now, I’m trying to create an event grid subscription but I’m receiving the error below. I don’t know if I’m using the correct Endpoint as I’m just formatting it to the existing event subscription in our Azure.existing: https://pmeastus2.svc.datafactory.azure.com:4443/triggerevent/BlobEventsTrigger/trigger 1 what I’m using to create the event subscription: Read More
Azure Linux Web App and http server
The advantage of using open-source solutions is that you can access many up-to-date features (e.g., using Python and related packages to operate big data models). However, the downside is that sometimes you need to understand the system architecture a bit, not just the code itself. This article will introduce how to perform initial port configuration on an Azure Linux Web App and how to modify default values.
TOC
HTTP Server and Startup Script
backend example: python
frontend example: node
HTTP Server and Startup Script
Azure Web App (App Service) exposes ports 80/443, with 443 being the encrypted port commonly used. This means that regardless of which port your locally developed application listens to, you need to perform port forwarding when deploying to the Web App.
A typical Windows Web App has an IIS built-in as the HTTP server, listening on port 80 by default. Regardless of the stack used (e.g., node, php, .net), IIS serves as the HTTP server. Therefore, since the web app has pre-configured forwarding rules on the platform side, users are not aware of the HTTP server and port forwarding during the operation.
However, the situation is different for Linux Web Apps. Different stacks have different HTTP servers (e.g., node can use pm2, php can use nginx, python can use uvicorn, etc.). The same HTTP server can also be used for multiple stacks (e.g., nginx can be used for php or python). Some languages can even start a simple server for port listening through an interpreter and corresponding modules (e.g., python with http.server). This makes it important to understand which HTTP server your application is running on.
You might recall that in different development environments, you need to enter some commands in the console to start the app before testing an application, such as:
uvicorn app:test –reload
npm start
This is because different tutorials usually use the corresponding HTTP server (or tools with HTTP server functionality) as a prerequisite for starting. Since these tools are constantly updated, the command line instructions or suffix parameters vary greatly. Therefore, a Startup Command feature is needed in Azure Linux Web App to manage these commands.
In the following sections, I will provide two examples and describe how to deploy your application to Azure Linux Web App and run it successfully under different stacks and HTTP servers.
backend example: python
For a Linux Python app, this example uses Python’s http.server package as the HTTP server. The command I use in the local development environment is `python server.py`.
import os
import http.server
import socketserver
from http import HTTPStatus
class Handler(http.server.SimpleHTTPRequestHandler):
def do_GET(self):
self.send_response(HTTPStatus.OK)
self.end_headers()
msg = ‘scale %s’ % (self.path)
self.wfile.write(msg.encode())
port = 8000
print(‘Listening on port %s’ % (port))
httpd = socketserver.TCPServer((”, port), Handler)
httpd.serve_forever()
After confirming the HTTP server and command, you can create a Linux python web app and deploy the code directly.
Remember the port mapping mentioned earlier? Since the python environment provided by Azure Web App forwards port 8000 to the exposed port 443 by default, for this code, you don’t need to set additional port forwarding rules after deployment. Just modify the startup command.
Before actual testing, remember to restart the app.
If your application needs to change the default listening port, for example, to 7999, in this case, besides modifying the corresponding port name in the code, you also need to add `WEBSITES_PORT=7999` in the App Setting to override the default port forwarding rules.
To confirm that your application is indeed listening on port 7999, you can go to the Kudu site and run the command:
netstat -tulpn | grep LISTEN
frontend example: node
For a Linux node app, this example uses pm2 as the HTTP server. The command I use in the local development environment is `npm start`.
npx create-react-app reactfailreact-app
cd reactfailreact-app
npm start
Azure Linux node Web App has a built-in pm2, a lightweight process manager with an HTTP server, suitable for experimentation. You can create a Linux node web app, compile the code, and deploy it.
Since the node environment provided by Azure Web App forwards port 3000 to the exposed port 443 by default, for this code, you don’t need to set additional port forwarding rules after deployment. Just modify the startup command.
Run the following command to compile the project. After execution, a build subfolder will be created.
npm run build
Create or modify `build/.deployment` with the following content:
[config]
SCM_DO_BUILD_DURING_DEPLOYMENT=false
Publish your project, specifying the build subfolder during the publishing process.
Go back to the app, navigate to Configuration, and specify the Startup Command as follows:
pm2 serve /home/site/wwwroot –no-daemon –spa
After restarting the web app, you can visit your webpage using a browser.
If your application needs to change the default listening port, for example, to 2999, in this case, besides specifying the listening port in the startup command, you also need to add `WEBSITES_PORT=2999` in the App Setting to override the default port forwarding rules.
pm2 serve /home/site/wwwroot –no-daemon –spa –port 2999
You can also go to the Kudu site and run the command:
netstat -tulpn | grep LISTEN
Microsoft Tech Community – Latest Blogs –Read More
Search within Viva Connections in Teams doesn’t give option to search in teams
Normally and according to Microsoft 365 documentation, when you search within Viva connection in Teams, after you write someting in the search bar, you can choose whether to search in Teams or in Viva connections (homesite in SharePoint). But now searching in Teams is not presented as an option anymore. Anyone else experiencing this? Is this a known issue?
Normally and according to Microsoft 365 documentation, when you search within Viva connection in Teams, after you write someting in the search bar, you can choose whether to search in Teams or in Viva connections (homesite in SharePoint). But now searching in Teams is not presented as an option anymore. Anyone else experiencing this? Is this a known issue? Read More
stuck on Employment Verification with no indication of issue or how to fix
we seem to have 100#s of these posts and no fix’s
MIne is the same please help I am a partner for over 20 years but no fix.
we seem to have 100#s of these posts and no fix’s MIne is the same please help I am a partner for over 20 years but no fix. Read More
Amazing What MS Access is capable of
Having been preparing financial statements for the last 15 years, I have come to appreciate the value of information, and how it helps reflect on your activities and planning for the future through strategy formulation and effective management decision-making. To achieve this efficiently, an organization needs to invest in Information Management Systems, no matter how small. Over the years, I have developed a desktop database using Microsoft Access and I must say this is really one of Microsoft’s most powerful tools but still very much underutilized in business.
Below is my “Business Assist” Accounting Package model which I use for recording my transactions. It aims to address the basic needs of an organization such as:
InvoicingBatch InvoicingInventory ManagementDebtors and Creditors StatementsIncome StatementBalance SheetTransaction Reports and more
The beauty of it, I have customized it to suit my needs and I have all my information in 1 place. There is no need to continue using the counterbook in the 21st century. Let your business evolve.
Having been preparing financial statements for the last 15 years, I have come to appreciate the value of information, and how it helps reflect on your activities and planning for the future through strategy formulation and effective management decision-making. To achieve this efficiently, an organization needs to invest in Information Management Systems, no matter how small. Over the years, I have developed a desktop database using Microsoft Access and I must say this is really one of Microsoft’s most powerful tools but still very much underutilized in business. Below is my “Business Assist” Accounting Package model which I use for recording my transactions. It aims to address the basic needs of an organization such as:InvoicingBatch InvoicingInventory ManagementDebtors and Creditors StatementsIncome StatementBalance SheetTransaction Reports and moreThe beauty of it, I have customized it to suit my needs and I have all my information in 1 place. There is no need to continue using the counterbook in the 21st century. Let your business evolve. Read More
🚀 Enable Your SaaS and Data in Copilot | Input Needed! 🚀
We need your feedback on new connectors, that empowers your Copilot with your own enterprise data.
We’re exploring new connectors for WordPress, Azure File Share, Google Drive, GitHub, Zoom, Salesforce Knowledge Base, Stack Overflow, PostgreSQL, Zendesk, Veeva Vault, Jira Data Center, and iManage. Your input is crucial to ensure these connectors meet your needs!
If you’re interested in any of these connectors, please take a moment to share your thoughts and feedback by filling out our short form here.
Your feedback will help shape the future of these tools.
Thanks for your support! Read More
Proactive: Azure Blogs – Articles from 12-Aug-2024 to 18-Aug-2024
AI + Machine Learning
Covering: Anomaly Detector, Azure Bot Services, Azure Cognitive Search, Azure ML, Azure Open Datasets, Azure Cognitive Services, Azure Video Indexer, Computer Vision, Content Moderator, Custom Vision, Data Science VM, Face API, Azure Form Recognizer, Azure Immersive Reader, Kinect DK, Language Understanding (LUIS), Microsoft Genomics, Personalizer, Project Bonsai, QnA Maker, Speaker recognition, Speech to Text, Speech translation, Cognitive Service for Language, Text to Speech, Translator, Azure Metrics Advisor, Health Bot, Azure Percept, Azure Applied AI Services, Azure OpenAI Service
Azure Bot Directline channel vs Directline speech channel
Simple Linear Regression with Phi3-vision and State Graphs
How to Evaluate & Upgrade Model Versions in the Azure OpenAI Service
Unveiling Azure OpenAI Service Provisioned Reservations and hourly pricing
Integrate Logic App workflows as plugins with Semantic Kernel: Step-by-step guide
Experience the Power of Our Expanded Collection of 60+ Realistic Multilingual Voices
Localizing GitHub Repositories with LLMs
Season of AI in Durban: Igniting the Future of Data and AI
Integrating Azure AI Content Safety with API Management for Azure OpenAI Endpoints
RAGHack: Free global hackathon Sept 3-13
SAP & Teams Integration with Copilot Studio and Generative AI
Azure AI Document Intelligence now previewing field extraction with Generative AI and more
Viva People Science Research: The state of AI change readiness
Deploying LLM Inference Endpoints & Optimizing Output with RAG
Differences between Pre-Training and Supervised Fine-Tuning (SFT)
Microsoft MVP x AI Day -tapahtuma 10.9.2024 kumppaneille
Azure AI Document Intelligence now previewing field extraction with Generative AI and more
Azure Static Web Apps Community Standup: Create a RAG App with App Spaces
Optimizing SLM with ONNX Runtime: Phi-3 on CPU with Sidecars for App Service
Analytics
Covering: Azure Analysis Services, Azure Data Explorer, Azure Data Factory, Azure Data Lake Storage, Azure Data Share, Azure Databricks, Azure Stream Analytics, Azure Synapse Analytics, Data Catalog, Data Lake Analytics, HDInsight, Power BI Embedded, R Server for HDInsight, Microsoft Purview, Microsoft Graph Data Connect, Azure Chaos Studio
Azure Fabric Lakehouse Connector is failing while getting files with wildcard in Azure Data Factory
ADX Web UI updates – July 2023
Securing Microsoft Fabric: User Authentication & Authorization Guidelines
Optimizing fleet management with Microsoft connected fleets reference architecture
Compute
Covering: Azure CycleCloud, Azure Quantum, Azure Spot Virtual Machines, Azure VMware Solution, Batch, Linux Virtual Machines, Virtual Machine Scale Sets, Virtual Machines, Azure Dedicated Host, Azure VM Image Builder, Azure Functions, Service Fabric
Announcing General Availability of Attach & Detach of Virtual Machines on Virtual Machine Scale Sets
Extending Microsoft Copilot for Security Capabilities with Azure Function Apps
Windows Server 2025: The upgrade and update experience
Microsoft is headed to VMware Explore 2024 in Las Vegas
Azure Functions Newsletter – August 2024
Containers
Covering: Azure Kubernetes Service (AKS), Azure Red Hat OpenShift, Azure Container Apps, Web App for Containers, Azure Container Instances, Azure Container Registry
Using Defender XDR Portal to hunt for Kubernetes security issues
Leveraging Azure native tooling to hunt Kubernetes security issues
Inside Look: How Azure Kubernetes Service supports OSSKU Migration between Ubuntu and Azure Linux
Gatekeeper: Enforcing security policy on your Kubernetes clusters
Asynchronous HTTP APIs with Azure Container Apps jobs
Databases
Covering: Azure Cache for Redis, Azure Cosmos DB, Azure Database for MariaDB, Azure Database for MySQL, Azure Database for PostgreSQL, Azure SQL, Azure SQL Database, Azure SQL Edge, Azure SQL Managed Instance, SQL Server on Azure VM, Table Storage, Azure Managed Instance for Apache Cassandra, Azure Confidential Ledger
How to check if Azure SQL Managed Instances are enrolled (or not) on November 2022 Feature Wave?
Using MI Link to transfer CLR binaries from SQL Server to Azure SQL Managed Instance
General Availability: Maintenance window support for Azure SQL Database Hyperscale named replica.
Database Watcher: Your perfmon in the cloud | Data Exposed
Simplify development with Dev Container templates for Azure SQL Database
General Purpose to Business Critical Azure SQL database upgrade
Automate shrink database in Azure SQL
Developer Tools
Covering: App Configuration, Azure DevTest Labs, Azure Lab Services, SDKs, Visual Studio, Visual Studio Code, Azure Load Testing
Importing a Database into VS Code
The ultimate guide to developer happiness
.NET and .NET Framework August 2024 updates
.NET Conf 2024 – Celebrating the Release of .NET 9! – Save the Date!
New cloud-ready application templates for accelerating your development
.NET 9 Preview 7 is now available!
Transforme o Desenvolvimento com .NET Aspire: Integração com JavaScript e Node.js
.Net 9 Preview 6 now available on App Service
DevOps
Covering: Azure Artifacts, Azure Boards, Azure DevOps, Azure Pipelines, Azure Repos, Azure Test Plans, DevOps tool integrations, Azure Load Testing
GitHub Availability Report: July 2024
Epic delivery plan in Azure Devops
Localizing GitHub Repositories with LLMs
Azure DevOps Timeline/Roadmap Native Function
How to level up your Git game with GitHub CLI
GitHub Model Catalog – Getting Started
Hybrid
Covering: Microsoft Azure Stack, Azure Arc
Apply critical update for Azure Stack HCI VMs to maintain Azure verification
Introducing ArcBox 3.0 General Availability
Identity
Covering: Azure Active Directory, Multi-factor Authentication, Azure Active Directory Domain Services, Azure Active Directory External Identities
Face Check is now generally available
Let’s move away from API keys!
Integration
Covering: API Management, Event Grid, Logic Apps , Service Bus
Integrate Logic App workflows as plugins with Semantic Kernel: Step-by-step guide
Logic Apps Standard Monitoring Dashboards
Logic Apps – Tracked properties for HTTP action`s INPUTS not working
Unlock inline PowerShell capabilities to streamline Logic Apps workflows
Announcing Public Preview of API Management WordPress plugin to build customized developer portals
Unable to connect via Logic Apps SFTP-SSH connector
[Azure Service Bus] JMS messages getting dead-lettered
Azure Logic Apps with Route tables to find Next hop IP address as empty.
Internet Of Things
Covering: Azure IoT Central, Azure IoT Edge, Azure IoT Hub, Azure RTOS, Azure Sphere, Azure Stream Analytics, Azure Time Series Insights, Microsoft Defender for IoT, Azure Percept, Windows for IoT
No New Articles
Management and Governance
Covering: Automation, Azure Advisor, Azure Backup, Azure Blueprints, Azure Lighthouse, Azure Monitor, Azure Policy, Azure Resource Manager, Azure Service Health, Azure Site Recovery, Cloud Shell, Cost Management, Azure Portal, Network Watcher, Azure Automanage, Azure Resource Mover, Azure Chaos Studio, Azure Managed Grafana
Trouble Installing Microsoft Site Recovery – Process Server Service Keeps Terminating
Get tailored insights with our Advisor Well-Architected assessments
Learn about Derek Coleman & Associates’ transactable partner solution in Azure Marketplace
New on Azure Marketplace: August 1-11, 2024
Revolutionizing log collection with Azure Monitor Agent
Troubleshoot Policy Issues for Sending logs to Log Analytics/Storage Account for Azure Resources
Azure FinOps: Introduction and Assessments
High Scale log collection in Azure Monitor – Container Insights
Migration
Covering: Azure Database Migration Service, Azure Migrate, Data Box, Azure Site Recovery
No New Articles
Mixed Reality
Covering: Digital Twins, Kinect DK, Spatial Anchors, Remote Rendering, Object Anchors
No New Articles
Mobile
Covering: Azure Maps, MAUI, Notification Hubs, Visual Studio App Center, Xamarin, Azure Communication Services
No New Articles
Networking
Covering: Application Gateway, Bastion, DDoS Protection, DNS, Azure ExpressRoute, Azure Firewall, Load Balancer, Firewall Manager, Front Door, Internet Analyzer, Azure Private Link, Content Delivery Network, Network Watcher, Traffic Manager, Virtual Network, Virtual WAN, VPN Gateway, Web Application Firewall, Azure Orbital, Route Server, Network Function Manager, Virtual Network Manager, Azure Private 5G Core
IAzure Firewall and WAF integrations in Microsoft Copilot for Security
Creating a Local Network Virtual Appliance in Azure for Oracle Database@Azure
Integrating Workload profile Container App with Front Door and Application Gateway Private Link
Adopting Public IPv6 for Three-Tier Web Applications
Azure Firewall Application Rules – “MSSQL” not available in Rule Collection Groups
Web app and API vulnerabilities, and how to secure them with Azure and Fortinet
Getting Started with Azure WAF REST API for Azure Front Door: A Step-by-Step Guide
Security
Covering: Defender for Cloud, DDoS Protection, Dedicated HSM, Azure Information Protection, Microsoft Sentinel, Key Vault, Microsoft Defender for Cloud, Microsoft Defender for IoT, Microsoft Azure Attestation, Azure Confidential Ledger
Using Defender XDR Portal to hunt for Kubernetes security issues
Leveraging Azure native tooling to hunt Kubernetes security issues
Microsoft Defender for Endpoint’s Safe Deployment Practices
Storage
Covering: Archive Storage, Avere vFXT for Azure, Azure Data Lake Storage, Azure Data Share, Files, FXT Edge Filer, HPC Cache, NetApp Files, Blob Storage, Data Box, Disk Storage, Queue Storage, Storage Accounts, Storage Explorer, StorSimple
No New Articles
Web
Covering: App Configuration, App Service, Azure Cognitive Search, Azure Maps, Azure SignalR Service, Static Web Apps, Azure Communication Services, Azure Web PubSub, Azure Fluid Relay, Web App for Containers
Azure Static Web Apps Community Standup: Create a RAG App with App Spaces
Optimizing SLM with ONNX Runtime: Phi-3 on CPU with Sidecars for App Service
Azure Static Web Apps Community: Criação de uma App (RAG) com App Spaces e Azure Static Web Apps
Create and Deploy Linux WebJobs on Azure App Service
.Net 9 Preview 6 now available on App Service
Azure Virtual Desktop
Covering: Windows Virtual Desktop, VMware Horizon Cloud on Microsoft Azure, Citrix Virtual Apps and Desktops for Azure
No New Articles
AI + Machine Learning
Covering: Anomaly Detector, Azure Bot Services, Azure Cognitive Search, Azure ML, Azure Open Datasets, Azure Cognitive Services, Azure Video Indexer, Computer Vision, Content Moderator, Custom Vision, Data Science VM, Face API, Azure Form Recognizer, Azure Immersive Reader, Kinect DK, Language Understanding (LUIS), Microsoft Genomics, Personalizer, Project Bonsai, QnA Maker, Speaker recognition, Speech to Text, Speech translation, Cognitive Service for Language, Text to Speech, Translator, Azure Metrics Advisor, Health Bot, Azure Percept, Azure Applied AI Services, Azure OpenAI Service
Azure Bot Directline channel vs Directline speech channel
Simple Linear Regression with Phi3-vision and State Graphs
How to Evaluate & Upgrade Model Versions in the Azure OpenAI Service
Unveiling Azure OpenAI Service Provisioned Reservations and hourly pricing
Integrate Logic App workflows as plugins with Semantic Kernel: Step-by-step guide
Experience the Power of Our Expanded Collection of 60+ Realistic Multilingual Voices
Localizing GitHub Repositories with LLMs
Season of AI in Durban: Igniting the Future of Data and AI
Integrating Azure AI Content Safety with API Management for Azure OpenAI Endpoints
RAGHack: Free global hackathon Sept 3-13
SAP & Teams Integration with Copilot Studio and Generative AI
Azure AI Document Intelligence now previewing field extraction with Generative AI and more
Viva People Science Research: The state of AI change readiness
Deploying LLM Inference Endpoints & Optimizing Output with RAG
Differences between Pre-Training and Supervised Fine-Tuning (SFT)
Microsoft MVP x AI Day -tapahtuma 10.9.2024 kumppaneille
Azure AI Document Intelligence now previewing field extraction with Generative AI and more
Azure Static Web Apps Community Standup: Create a RAG App with App Spaces
Optimizing SLM with ONNX Runtime: Phi-3 on CPU with Sidecars for App Service
Analytics
Covering: Azure Analysis Services, Azure Data Explorer, Azure Data Factory, Azure Data Lake Storage, Azure Data Share, Azure Databricks, Azure Stream Analytics, Azure Synapse Analytics, Data Catalog, Data Lake Analytics, HDInsight, Power BI Embedded, R Server for HDInsight, Microsoft Purview, Microsoft Graph Data Connect, Azure Chaos Studio
Azure Fabric Lakehouse Connector is failing while getting files with wildcard in Azure Data Factory
ADX Web UI updates – July 2023
Securing Microsoft Fabric: User Authentication & Authorization Guidelines
Optimizing fleet management with Microsoft connected fleets reference architecture
Compute
Covering: Azure CycleCloud, Azure Quantum, Azure Spot Virtual Machines, Azure VMware Solution, Batch, Linux Virtual Machines, Virtual Machine Scale Sets, Virtual Machines, Azure Dedicated Host, Azure VM Image Builder, Azure Functions, Service Fabric
Announcing General Availability of Attach & Detach of Virtual Machines on Virtual Machine Scale Sets
Extending Microsoft Copilot for Security Capabilities with Azure Function Apps
Windows Server 2025: The upgrade and update experience
Microsoft is headed to VMware Explore 2024 in Las Vegas
Azure Functions Newsletter – August 2024
Containers
Covering: Azure Kubernetes Service (AKS), Azure Red Hat OpenShift, Azure Container Apps, Web App for Containers, Azure Container Instances, Azure Container Registry
Using Defender XDR Portal to hunt for Kubernetes security issues
Leveraging Azure native tooling to hunt Kubernetes security issues
Inside Look: How Azure Kubernetes Service supports OSSKU Migration between Ubuntu and Azure Linux
Gatekeeper: Enforcing security policy on your Kubernetes clusters
Asynchronous HTTP APIs with Azure Container Apps jobs
Databases
Covering: Azure Cache for Redis, Azure Cosmos DB, Azure Database for MariaDB, Azure Database for MySQL, Azure Database for PostgreSQL, Azure SQL, Azure SQL Database, Azure SQL Edge, Azure SQL Managed Instance, SQL Server on Azure VM, Table Storage, Azure Managed Instance for Apache Cassandra, Azure Confidential Ledger
How to check if Azure SQL Managed Instances are enrolled (or not) on November 2022 Feature Wave?
Using MI Link to transfer CLR binaries from SQL Server to Azure SQL Managed Instance
General Availability: Maintenance window support for Azure SQL Database Hyperscale named replica.
Database Watcher: Your perfmon in the cloud | Data Exposed
Simplify development with Dev Container templates for Azure SQL Database
General Purpose to Business Critical Azure SQL database upgrade
Automate shrink database in Azure SQL
Developer Tools
Covering: App Configuration, Azure DevTest Labs, Azure Lab Services, SDKs, Visual Studio, Visual Studio Code, Azure Load Testing
Importing a Database into VS Code
The ultimate guide to developer happiness
.NET and .NET Framework August 2024 updates
.NET Conf 2024 – Celebrating the Release of .NET 9! – Save the Date!
New cloud-ready application templates for accelerating your development
.NET 9 Preview 7 is now available!
Transforme o Desenvolvimento com .NET Aspire: Integração com JavaScript e Node.js
.Net 9 Preview 6 now available on App Service
DevOps
Covering: Azure Artifacts, Azure Boards, Azure DevOps, Azure Pipelines, Azure Repos, Azure Test Plans, DevOps tool integrations, Azure Load Testing
GitHub Availability Report: July 2024
Epic delivery plan in Azure Devops
Localizing GitHub Repositories with LLMs
Azure DevOps Timeline/Roadmap Native Function
How to level up your Git game with GitHub CLI
GitHub Model Catalog – Getting Started
Hybrid
Covering: Microsoft Azure Stack, Azure Arc
Apply critical update for Azure Stack HCI VMs to maintain Azure verification
Introducing ArcBox 3.0 General Availability
Identity
Covering: Azure Active Directory, Multi-factor Authentication, Azure Active Directory Domain Services, Azure Active Directory External Identities
Face Check is now generally available
Let’s move away from API keys!
Integration
Covering: API Management, Event Grid, Logic Apps , Service Bus
Integrate Logic App workflows as plugins with Semantic Kernel: Step-by-step guide
Logic Apps Standard Monitoring Dashboards
Logic Apps – Tracked properties for HTTP action`s INPUTS not working
Unlock inline PowerShell capabilities to streamline Logic Apps workflows
Announcing Public Preview of API Management WordPress plugin to build customized developer portals
Unable to connect via Logic Apps SFTP-SSH connector
[Azure Service Bus] JMS messages getting dead-lettered
Azure Logic Apps with Route tables to find Next hop IP address as empty.
Internet Of Things
Covering: Azure IoT Central, Azure IoT Edge, Azure IoT Hub, Azure RTOS, Azure Sphere, Azure Stream Analytics, Azure Time Series Insights, Microsoft Defender for IoT, Azure Percept, Windows for IoT
No New Articles
Management and Governance
Covering: Automation, Azure Advisor, Azure Backup, Azure Blueprints, Azure Lighthouse, Azure Monitor, Azure Policy, Azure Resource Manager, Azure Service Health, Azure Site Recovery, Cloud Shell, Cost Management, Azure Portal, Network Watcher, Azure Automanage, Azure Resource Mover, Azure Chaos Studio, Azure Managed Grafana
Trouble Installing Microsoft Site Recovery – Process Server Service Keeps Terminating
Get tailored insights with our Advisor Well-Architected assessments
Learn about Derek Coleman & Associates’ transactable partner solution in Azure Marketplace
New on Azure Marketplace: August 1-11, 2024
Revolutionizing log collection with Azure Monitor Agent
Troubleshoot Policy Issues for Sending logs to Log Analytics/Storage Account for Azure Resources
Azure FinOps: Introduction and Assessments
High Scale log collection in Azure Monitor – Container Insights
Migration
Covering: Azure Database Migration Service, Azure Migrate, Data Box, Azure Site Recovery
No New Articles
Mixed Reality
Covering: Digital Twins, Kinect DK, Spatial Anchors, Remote Rendering, Object Anchors
No New Articles
Mobile
Covering: Azure Maps, MAUI, Notification Hubs, Visual Studio App Center, Xamarin, Azure Communication Services
No New Articles
Networking
Covering: Application Gateway, Bastion, DDoS Protection, DNS, Azure ExpressRoute, Azure Firewall, Load Balancer, Firewall Manager, Front Door, Internet Analyzer, Azure Private Link, Content Delivery Network, Network Watcher, Traffic Manager, Virtual Network, Virtual WAN, VPN Gateway, Web Application Firewall, Azure Orbital, Route Server, Network Function Manager, Virtual Network Manager, Azure Private 5G Core
IAzure Firewall and WAF integrations in Microsoft Copilot for Security
Creating a Local Network Virtual Appliance in Azure for Oracle Database@Azure
Integrating Workload profile Container App with Front Door and Application Gateway Private Link
Adopting Public IPv6 for Three-Tier Web Applications
Azure Firewall Application Rules – “MSSQL” not available in Rule Collection Groups
Web app and API vulnerabilities, and how to secure them with Azure and Fortinet
Getting Started with Azure WAF REST API for Azure Front Door: A Step-by-Step Guide
Security
Covering: Defender for Cloud, DDoS Protection, Dedicated HSM, Azure Information Protection, Microsoft Sentinel, Key Vault, Microsoft Defender for Cloud, Microsoft Defender for IoT, Microsoft Azure Attestation, Azure Confidential Ledger
Using Defender XDR Portal to hunt for Kubernetes security issues
Leveraging Azure native tooling to hunt Kubernetes security issues
Microsoft Defender for Endpoint’s Safe Deployment Practices
Storage
Covering: Archive Storage, Avere vFXT for Azure, Azure Data Lake Storage, Azure Data Share, Files, FXT Edge Filer, HPC Cache, NetApp Files, Blob Storage, Data Box, Disk Storage, Queue Storage, Storage Accounts, Storage Explorer, StorSimple
No New Articles
Web
Covering: App Configuration, App Service, Azure Cognitive Search, Azure Maps, Azure SignalR Service, Static Web Apps, Azure Communication Services, Azure Web PubSub, Azure Fluid Relay, Web App for Containers
Azure Static Web Apps Community Standup: Create a RAG App with App Spaces
Optimizing SLM with ONNX Runtime: Phi-3 on CPU with Sidecars for App Service
Azure Static Web Apps Community: Criação de uma App (RAG) com App Spaces e Azure Static Web Apps
Create and Deploy Linux WebJobs on Azure App Service
.Net 9 Preview 6 now available on App Service
Azure Virtual Desktop
Covering: Windows Virtual Desktop, VMware Horizon Cloud on Microsoft Azure, Citrix Virtual Apps and Desktops for Azure
No New Articles
Read More
Create a SaaS Offer for FileHandler App registration confirmation
Recently I have researched to develop FileHandler Add-In in App registration.
I want to publish a SaaS offering to the marketplace (App Source) for my app registration. Or at least we can publish it to gallery Microsoft Entra Gallery.
But, I see that Microsoft isn’t onboarding new applications to Microsoft Entra gallery in FY25 (Ref: https://learn.microsoft.com/en-us/entra/identity/enterprise-apps/v2-howto-app-gallery-listing#submit-your-application)
For publishing a SaaS offering, Does Microsoft allow us to publish a SaaS offering for App registration in 2024 and 2025? I didn’t find any documentation about such restrictions like publishing to Microsoft Entra Gallery. Please help me confirm this.
Recently I have researched to develop FileHandler Add-In in App registration.I want to publish a SaaS offering to the marketplace (App Source) for my app registration. Or at least we can publish it to gallery Microsoft Entra Gallery. But, I see that Microsoft isn’t onboarding new applications to Microsoft Entra gallery in FY25 (Ref: https://learn.microsoft.com/en-us/entra/identity/enterprise-apps/v2-howto-app-gallery-listing#submit-your-application)For publishing a SaaS offering, Does Microsoft allow us to publish a SaaS offering for App registration in 2024 and 2025? I didn’t find any documentation about such restrictions like publishing to Microsoft Entra Gallery. Please help me confirm this. Read More
Changing webhook of an existing webapp.
Hi Team,
We have webapp which is live and running but we need to change the webhook configured to the webapp. But the Azure is not allowing to change it. Kindly help us with this issue.
Hi Team, We have webapp which is live and running but we need to change the webhook configured to the webapp. But the Azure is not allowing to change it. Kindly help us with this issue. Read More
Defender for Servers (p1 and p2) – Policies? (gpo/intune)
Hello Microsoft and Community members!
I have a very brief question after reading up on Defender for Servers (and Defender for Endpoint) learn pages after the vacations 🙂 (i notice they all had updates). However, there is still no information regarding Defender for Servers and how to manage the EDR system (policies in intunes, GPO or SCCM).
If we enable the Defender for Servers in the Defender for Cloud plane, will all these policies (such as Antivirus, ASR and EDR) automatically be enabled? And if so, which ASR rules are in block mode, which are in audit mode – what server exclusions are on by default? (if any) etc etc.
Intune policies for MDE dont have all settings for servers, so previously we have had to manage everything through MDE onboarding and GPO’s for servers (and intune for desktops). But when setting up Defender for Servers there is not a single mention about any of these settings for the EDR/Antimalware agent (ASR, Antivirus etc etc – i belive there are many tenants that have simply just enabled Defender for Servers in Defender for Cloud and are missing out on everything ASR etc – or?).
Thanks!
Hello Microsoft and Community members!I have a very brief question after reading up on Defender for Servers (and Defender for Endpoint) learn pages after the vacations 🙂 (i notice they all had updates). However, there is still no information regarding Defender for Servers and how to manage the EDR system (policies in intunes, GPO or SCCM).If we enable the Defender for Servers in the Defender for Cloud plane, will all these policies (such as Antivirus, ASR and EDR) automatically be enabled? And if so, which ASR rules are in block mode, which are in audit mode – what server exclusions are on by default? (if any) etc etc.Intune policies for MDE dont have all settings for servers, so previously we have had to manage everything through MDE onboarding and GPO’s for servers (and intune for desktops). But when setting up Defender for Servers there is not a single mention about any of these settings for the EDR/Antimalware agent (ASR, Antivirus etc etc – i belive there are many tenants that have simply just enabled Defender for Servers in Defender for Cloud and are missing out on everything ASR etc – or?).Thanks! Read More
How much time does it takes to update secure score on Defender portal?
Hi Folks,
I have marked some of the recommended actions on secure score as “third party” or “alternate mitigation”. Even after 10 hours I can see action is still marked as “to be addressed”. How much time does it take for changes to show up there? And also, how much time will it take to get this add up to my cumulative secure score?
Hi Folks, I have marked some of the recommended actions on secure score as “third party” or “alternate mitigation”. Even after 10 hours I can see action is still marked as “to be addressed”. How much time does it take for changes to show up there? And also, how much time will it take to get this add up to my cumulative secure score? Read More
Update is not happening
Trying to update the Windows 11 update but installation does not complete continuously failing and giving an error code Cumulative Update for Windows 11 Insider Preview (10.0.26120.1542) (KB5041872)
And its giving the error of Install error – 0x8007371b
Trying to update the Windows 11 update but installation does not complete continuously failing and giving an error code Cumulative Update for Windows 11 Insider Preview (10.0.26120.1542) (KB5041872) And its giving the error of Install error – 0x8007371b Read More
Announcing MQTT Support in Azure Web PubSub Service (public preview)
We’re excited to announce the long-requested release of MQTT support in Azure Web PubSub service, now available in preview! This added capability allows developers to leverage the lightweight and widely used MQTT protocol for messaging, making it easier to connect and communicate with devices that have constrained resources.
What is MQTT?
MQTT (Message Queuing Telemetry Transport) is a lightweight, pub/sub messaging protocol designed specifically for low-bandwidth, high-latency, or unreliable networks. It’s an ideal choice for IoT (Internet of Things) devices and other scenarios where resources are limited. Development teams even build chat apps using MQTT protocol.
Now, with Azure Web PubSub’s support for MQTT, you can connect clients running on WebSocket protocol or MQTT (over WebSocket) without worrying about scalability. Better yet, these clients can cross-communicate with each other despite the different protocols used, making it an ideal architectural solution if an application has mixed clients.
Key features of MQTT in Azure Web PubSub
Compliant support for MQTT protocols:
Azure Web PubSub supports MQTT 3.1.1 and 5.0 protocols, allowing any MQTT library with WebSocket transport to connect directly to Azure Web PubSub service. This makes it easy to integrate MQTT with existing systems, regardless of the programming language or platform.
Cross-protocol communication:
With cross-protocol communication, MQTT clients can interact with other clients using different Web PubSub protocols. This feature expands the possibilities for integrating diverse systems and devices within a single communication hub. Find more details here
Seamless adoption for existing Web PubSub customers
Current customers of Azure Web PubSub can adopt MQTT with minimal modifications. The Web PubSub REST API is already equipped to handle MQTT connections, ensuring a smooth transition.
Client-to-server request/response model
In addition to the traditional client-to-client pub/sub model, Azure Web PubSub supports a client-to-server request/response model. Specific MQTT application messages can be converted into HTTP requests, which are sent to registered webhooks. The responses are then delivered back to the MQTT clients as application messages. For more details, see MQTT custom event handler protocol.
Supported features
Azure Web PubSub fully supports MQTT 3.1.1 and 5.0. Features included:
Quality of Service (QoS): All levels, including “at most once”, “at least once”, and “exactly once” .
Message order guarantee
Persistent Sessions: Sessions are preserved for up to 30 seconds during connection interruptions.
Last Will & Testament: Ensures that a final message is sent if a client disconnects unexpectedly.
Client Certificate Authentication
For MQTT 5.0, additional features include:
Message Expiry Interval and Session Expiry Interval
Subscription Identifier
Assigned Client ID
Flow Control
Server-Sent Disconnect
Unsupported features in this preview
Wildcard subscriptions
Retained messages
Shared subscriptions
Authentication and authorization
Azure Web PubSub offers two workflows for authenticating and authorizing MQTT clients:
JWT-Based Authentication: The MQTT client obtains a JWT token and includes it in the WebSocket request. The Web PubSub service then validates the token.
Upstream Server Authentication: After establishing a WebSocket connection, the MQTT client sends a CONNECT packet. The Web PubSub service calls an API on the upstream server to authenticate the client using the username, password, and TLS certificate.
These workflows can be used independently or in combination, providing flexibility in securing your MQTT communications.
Client lifetime event notifications
Azure Web PubSub allows you to register event handlers to receive notifications when an MQTT client session starts or ends, providing greater visibility into your system’s activity.
REST API support
The Azure Web PubSub REST API now supports operations specifically for MQTT clients, including:
Publishing messages to topics, connections, users, or all connections.
Managing client permissions and subscriptions.
Get started today!
We’re thrilled to bring MQTT support to Azure Web PubSub, and we can’t wait to see how you’ll use this feature in your projects. To have a try quickly, check out PubSub among MQTT clients – Azure Web PubSub .
Explore these new capabilities and elevate your applications with the power of MQTT in Azure Web PubSub!
Microsoft Tech Community – Latest Blogs –Read More
Dual nic domain controller DNS test failure
Why would DNS test on a DC with two NICs connected to different subnets (only one listening for DNS requests) fail ?
With a second NIC disabled, test completes successfully ?
Why would DNS test on a DC with two NICs connected to different subnets (only one listening for DNS requests) fail ? With a second NIC disabled, test completes successfully ? Read More
What headless service can use for 40 to 50 microservices Application?
Hello Team,
We have over forty microservices and are using Virtual Machine to deploy our Angular web application and Dot Net Core. Could you recommend a serverless architecture service that we should use to launch our application?
The cost of the service should be lower than the VM design.
Hello Team,We have over forty microservices and are using Virtual Machine to deploy our Angular web application and Dot Net Core. Could you recommend a serverless architecture service that we should use to launch our application?The cost of the service should be lower than the VM design. Read More
M365 group to export the list with owner
Hi there, i would like to export out the m365 groups ( a lot) with owner email address.
and i see this page, https://github.com/12Knocksinna/Office365itpros/blob/master/TeamsGroupsActivityReportV5.PS1
i try to run it, but seems like i have permission issue.
Checking Microsoft 365 Groups and Teams for:
This phase can take some time because we need to fetch every group in the organization and
then analyze its settings and activity. Please wait.
Get-GraphData : System.Net.WebException: The remote server returned an error: (403) Forbidden.
at Microsoft.PowerShell.Commands.WebRequestPSCmdlet.GetResponse(WebRequest request)
at Microsoft.PowerShell.Commands.WebRequestPSCmdlet.ProcessRecord()
At D:TeamsGroupsActivityReportV5.PS1:330 char:18
+ [array]$Groups = Get-GraphData -AccessToken $Token -Uri $uri
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Write-Error], WriteErrorException
+ FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Get-GraphData
Can’t find any Microsoft 365 Groups – Check your access token
i have no idea how to find out which permission is needed as there are a lots of permission for microsoft graph.
i try to check the link inside the script and use the graph explorer, it also needed the permission.
Hi there, i would like to export out the m365 groups ( a lot) with owner email address. and i see this page, https://github.com/12Knocksinna/Office365itpros/blob/master/TeamsGroupsActivityReportV5.PS1 i try to run it, but seems like i have permission issue. Checking Microsoft 365 Groups and Teams for:This phase can take some time because we need to fetch every group in the organization andthen analyze its settings and activity. Please wait.Get-GraphData : System.Net.WebException: The remote server returned an error: (403) Forbidden.at Microsoft.PowerShell.Commands.WebRequestPSCmdlet.GetResponse(WebRequest request)at Microsoft.PowerShell.Commands.WebRequestPSCmdlet.ProcessRecord()At D:TeamsGroupsActivityReportV5.PS1:330 char:18+ [array]$Groups = Get-GraphData -AccessToken $Token -Uri $uri+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+ CategoryInfo : NotSpecified: (:) [Write-Error], WriteErrorException+ FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Get-GraphDataCan’t find any Microsoft 365 Groups – Check your access tokeni have no idea how to find out which permission is needed as there are a lots of permission for microsoft graph. i try to check the link inside the script and use the graph explorer, it also needed the permission. { “error”: { “code”: “UnknownError”, “message”: “{“error”:{“code”:”S2SUnauthorized”,”message”:”Invalid permission.”}}”, “innerError”: { “date”: “2024-08-21T06:30:50”, “request-id”: “e7de8a7b-77ec-4d8b-94fd-9161026f21bb”, “client-request-id”: “833ca782-ad02-748b-0798-ffdda617f57d” } } any advise ? Read More
Supply Chain Management
Hello all,
if I need the Project Accounting modul in SCM, do I need only the licenses for Supply Chain Management or do I need the licenses Project Operation too?
Thank you
Hello all, if I need the Project Accounting modul in SCM, do I need only the licenses for Supply Chain Management or do I need the licenses Project Operation too? Thank you Read More
جلب الحبيب ميططرون -01040581277-002- ** شيخ روحاني
company’s OneDrive account. I usually delete and change file names to correct them. However, this time, I was changing too many GB using OneDrive at the same time as the sync issues are happening at the home folder level and I don’t want to use Disable File OneDrive account. I usually delete and change file names to correct them. However, this time, I was changing too many GB using OneDrive at the same time as the sync issues are happening at the home folder level and I don’t want to use Disable File On Demand Fetch Lover Content because I have too many GB intentionally not on my computer mine. But since I can only change the file name online (I can’t change file folders on my computer), online (I can’t change file folders on my computer), this may be the only way. I will pos
company’s OneDrive account. I usually delete and change file names to correct them. However, this time, I was changing too many GB using OneDrive at the same time as the sync issues are happening at the home folder level and I don’t want to use Disable File OneDrive account. I usually delete and change file names to correct them. However, this time, I was changing too many GB using OneDrive at the same time as the sync issues are happening at the home folder level and I don’t want to use Disable File On Demand Fetch Lover Content because I have too many GB intentionally not on my computer mine. But since I can only change the file name online (I can’t change file folders on my computer), online (I can’t change file folders on my computer), this may be the only way. I will pos Read More