You are here |
svirlan.com | ||
| | | |
smsagent.blog
|
|
| | | | For a long time I've used the following PowerShell cmdlet from the Intune PowerShell SDK to get an access token for Microsoft Graph for running ad-hoc Graph queries or testing automation code locally: $GraphToken = Connect-MSGraph -PassThru Since most of the time I prefer to construct my own code to call the REST API directly... | |
| | | |
damienbod.com
|
|
| | | | This article looks at setting up an ASP.NET Core application to use Azure Key Vault. When deployed to Azure, it works like in the Azure documentation but when working on development PCs, some changes are required for a smooth developer experience. Code: https://github.com/damienbod/UsingAzureKeyVaultInDevelopment I develop using Visual Studio and manage multiple accounts and test environments.... | |
| | | |
keithbabinec.com
|
|
| | | | Background I will be writing about some Azure features and related automation in upcoming blog posts. This post can be a quick reference for anyone unfamiliar with how to get up and running with Azure PowerShell. That includes installing and updating the cmdlets, and how to connect to your Azure resources via PowerShell. In order... | |
| | | |
mydeveloperplanet.com
|
|
| | This blog introduces Cucumber, a tool for Behavior-Driven Development (BDD) in Java applications. It covers the project setup using Maven, writing scenarios in GWT notation, implementing application logic, step definitions, adding extra scenarios, using tags, and generating reports. It shows how Cucumber integrates with JUnit and Assertions in Java. |