Use PowerShell to enable Azure Storage Account Firewall Rules
Thursday, November 02, 2017 in 2017
less than a minute
In this post I’ll show you how to Use PowerShell to enable Azure Storage Account Firewall Rules. Be sure to be have AzureRM PowerShell 4.4.1 module installed. Login to your Azure Account Launch Powershell and start by Login to your Azure …
Use PowerShell to Enable and Automate Azure Analysis Services Backup
Monday, October 23, 2017 in 2017
3 minute read
In this post I’ll show you how to Use PowerShell to Enable and Automate Azure Analysis Backup. Enable Azure Analysis Service Backup Enable-AzureRmAnalysisServicesBackup is a small powershell script that uses the the Set-AzureRmResource cmdlet …
Prepare a .Net Core Console App for Docker
Sunday, October 15, 2017 in 2017
Categories:
2 minute read
Last week I had the luck to attend the Microsoft Azure OpenHack in Amsterdam. We spent two and a half days learning a lot about kubernetes, Azure Container Services, Azure Container Registry, Azure OMS and Minecraft! In one of the challenges we …
Use PowerShell to Enable Azure Analysis Services Firewall
Friday, October 06, 2017 in 2017
Categories:
2 minute read
Last week, firewall support was added to Azure Analysis Service (https://azure.microsoft.com/en-us/blog/azure-analysis-services-adds-firewall-support/). The thing is that, at the time of writing, there is no AzureRM cmdlet available to Use PowerShell …
.NET Core CLI and MSBUILD Cheat Sheet
Thursday, September 21, 2017 in 2017
Categories:
2 minute read
This is a small .NET Core CLI and MSBUILD Cheat Sheet with the list of commands and settings I use almost on daily basis when working with .NET Core, the command line and Visual Studio Code. Checks Check installed CLI version: dotnet --version Show …
Toggle Raspberry Pi GPIO Pins with ASP.NET Core 2.0
Friday, September 01, 2017 in 2017
Categories:
2 minute read
Today I’ll show you how to Toggle Raspberry Pi GPIO Pins with ASP.NET Core 2.0. First be aware of the following prerequisites: .NET Core 2.0 SDK A Raspberry Pi 3 Running Raspbian Install linux dependencies: sudo apt-get install curl libunwind8 …
.NET Core, Code Analysis and StyleCop
Thursday, August 24, 2017 in 2017
Categories:
3 minute read
So now that .NET Core and .NET Standard 2.0 have been released some of you may be migrating applications or even creating new ones with it. As you progress you are starting to worry about the quality of your code so what you want is to at least check …
Step by step: .Net Core and Azure Search
Wednesday, August 09, 2017 in 2017
4 minute read
Step by step: .Net Core and Azure Search is small introduction on how to connect to Azure Search, create and delete indexes, models, add documents and perform basic queries. Let’s go for it: Create an Azure Search service Create an Azure Search …
Read Azure Service Health Activity Logs with .NET Core
Friday, August 04, 2017 in 2017
3 minute read
This week there was a small outage within the Azure Data Lake Store service and as consequence I wondered how could I Read Azure Service Health Activity Logs with .NET Core. Let’s go for it: Create a folder for your new project Open a command …
Create a Service Principal and write required parameters to a .azureauth file
Wednesday, August 02, 2017 in 2017
3 minute read
This week I had to repeat the process of creating a Service Principal in order to use the Microsoft.Azure.Management.Fluent lib with .NET Core so I decided it was time to script the process. With the following script you can Create a Service …