I will not make negative comments in my blog. Here is the command to uninstall the Microsoft News widget on Windows 11:
Thursday, August 1, 2024
Windows 11: Remove Microsoft News Widget
Sunday, July 28, 2024
Git: get remote URL of local Git Repo
From a console window where the current folder corresponds to a local git repo, run the following from a console:
An example output from this command is as follows:
Wednesday, April 10, 2024
PowerShell: Folder Diff
Wednesday, April 3, 2024
Visual Studio Code: Error Generation Bicep Template from Existing Azure Resource
The latest version of Microsoft's Bicep Extension (v0.26.54) for Visual Studio Code has a new behavior that causes an error message to be generated under certain circumstances. The Bicep Extension was covered in a blog post eighteen months ago (November 26, 2022: Azure: Generate a Bicep Template from an Existing Azure Resource using Visual Studio Code) and the manifesting of the following error message is a newish behavior in the extension:
Tuesday, April 2, 2024
Visual Studio Code: Azure Extension Pack error "Expected value to be neither null nor undefined"
This post presents a solution to the following error displayed in Visual Studio Code when using the Azure Tools Extension Pack:
Internal error: Expected value to be neither null nor undefined: resourceGroup for grouping item
The Azure Tools Extension Pack (Azure Tools) is critical to Azure developers who use Visual Studio Code (see the A below):
When signed in to a subscription, the Azure Tools Extension displays Azure resources by default, grouped by resource group. For some subscriptions (not all) the following error is displayed by Visual Studio Code when group by is set to "Group by Resource Group":
The fix to this issue is to click on the group by icon:
This displays the following context menu:
Sunday, March 24, 2024
Azure DevOps: Requiring Pull Requests to be Associated with a Work Item
Whether following Git Flow, GitHub Flow, GitLab Flow or Trunk-based Development certain policies are standard to source code best practices. For example. each Pull Request (PR) must be associated with a single task/story/epic (a linked work item). This post discusses Azure DevOps support for this feature.
For a given ADO Git repo, branch policies (such a requiring a PR to be linked to a work item) are set per-branch. There is no way to assign such policies to multiple branches. In order to set a branch's policies, navigate to a Repo's branches tab:
For a branch whose policy is to be set, click on the three dots to show the context menu shown below:
Git Branch Strategies
Git Branch Strategy: Git Flow
- Main/Master
- Develop
- Feature
- Release
- Hotfix
Git Branch Strategy: GitHub Flow
- Main/Master
- Feature
Git Branch Strategy: GitLab Flow
- Main/Master
- Feature
- Pre-Production
- Production
Git Branch Strategy: Trunk-based Development
- Main/Master
- Trunk
- Feature
Friday, March 22, 2024
Azure/PowerShell: Geolocating Storage Account White Listed IP Addresses
On a project, we had provided access to to an Azure Storage account by adding permitted IP addresses to the firewall (white listed IPs). These settings can be found via https://portal.azure.com/ by navigating to the storage account and selecting Network under "Security + networking":
I was tasked with writing a script to list all the white listed IP addresses and display there geographic location. The http://ip-api.com returns (for free) the geo data associated with an IP address. This service is free for no-commercial use:
The PowerShell script to return this information takes two required parameters:
- $resourceGroupName: resource group name associated with storage account
- $storageAccountName: storage account name whose white listed IPs will be returned
The script in its entirety is as follows:
IP Ranges versus Individual IP Addresses
Wednesday, February 7, 2024
Azure: Virtual Machines that support WSL
Azure Nested Virtualization Capable VMs
In order to run WSL and potentially Docker on an Azure Virtual Machine (VM) a VM's SKU Family must be hyper-threaded and be capable of running nested virtualization. The following link from Microsoft Learning, Azure compute unit (ACU), demarcates in a table all nested virtualization capable VMs by three asterisks:
Azure WSL Capable VM Types
The Azure VM that are capable of supported WSL (a.k.a. capable of running nested virtualization) are as follow from Microsoft's article, Azure compute unit (ACU), provided that the vCPU: Core column contains three asterisks:
Azure Subscription may not include WSL Capable VM Types
Be aware the not ever Microsoft subscription supports such Virtual Machines. For example the subscription that comes in a Visual Studio Subscription (the $150 free monthly Azure credit) might contain no virtual machines types that are nested virtualization capable.Saturday, February 3, 2024
Docker: Fails on Windows Immediately After Install
Recently I installed Docker on a Windows 11 Pro laptop. Immediately after install I attempted to run a Docker image containing PowerShell. This image was run by invoking the following command from a PowerShell console:
As engineers we all have our Home Simpson, "Duh" moments. When I actually looked at Docker Desktop, I saw the following:
I had failed to Accept the terms of service screen so the Docker Engine was not started. The lesson learned: After installing Docker Desktop on on Windows 10 Pro or Windows 11 Pro, run Docker Desktop and click on the Accept button.
I am very explicit about using Windows 11 Pro or previously Windows 10 Pro. The reason for this is that Windows 10 and Windows 11 can run Linux containers only with Docker installed. In order to run Windows containers, Windows 10 Pro or Windows 11 Pro is required.
In a previous blog, I noted a change I'd made (indirectly) to Docker's installation instructions for Docker Desktop on Windows, Install Docker Desktop on Windows. I created a PR in the documentation noting the importance of Windows Pro and the Docker documentation team added the following warning to their installation guide
Friday, January 26, 2024
Azure: Open Source Contributions to Azurite emulator for local Azure Storage
Microsoft has begun using AI to write its documentation. One such AI written article is Use the Azurite emulator for local Azure Storage development which contains text like the following:
The use of the word either in text means there should be two options when the AI written text provided three options (npm, Docker Hub or GitHub).
When contributing to a documentation that requires significant rewrite I often make a small change to see if there are active reviewers who can quickly approve the changes. The paragraph above from the Azurite documentation contains my first trial change specifically the text "Node Package Manager (npm)" which as of yesterday (January 25, 2024) was simply "Node Package Manager":
Wednesday, January 17, 2024
Azure: Naming Resources
Before creating an resource in Azure, a naming standard should be followed such as this one proposed by Microsoft, Define your naming convention. An excerpt from the aforementioned article is as follows which demonstrates one of the most commonly adopted naming standards with respect to Azure resources:
The above naming strategy uses a prefix before each resource name that serves to identify the type of resource. Microsoft provides a comprehensive list of standard resource prefixes in in this document Abbreviation examples for Azure resources. The prefixes for some of the most communly used Azure resource types is as follows:
- appi: Application Insights
- asp: App Service Plan
- cosmos: Azure Cosmos DB database (this is the name Azure uses which includes DB and database)
- kv: Key Vault
- logic: Logic App
- sbq: Service Bus Queue
- st: Storage Account
From the previous document the standard prefix for an Azure Function is func. An example of an Azure Function name created using Microsoft's naming convention is func-sometestfeature-dev-southcentralus-01:
- Resource Type: func (from Abbreviation examples for Azure resources)
- Workload/Application: sometestfeature
- Environment: dev
- develop naming abbreviation dev
- quality assurance naming abbreviation qa
- staging naming abbreviation stg
- production naming abbreviation prod
- Azure Region: southcentralus (see Azure/PowerShell: Retrieving Azure Regions using Get-AzLocation)
- Instance: 001
Tuesday, January 16, 2024
Windows Services: Fix Online Documentation ServiceController
The following links related to the ServiceController class's documentation were likely written prior to 2002 (.NET 1.0 was released in January 2002) and the code samples in the documentation contain some C# examples that are functionally correct but are not written using best practices with respect to C# coding:
The following code was found in the above links where the code demarcated in boldface is not written using best practices:
The Status property above is used in the Console.WriteLine is an enumeration, ServiceControllerStatus, and there is no need to specify ToString().The same code as above is show below without the superfluous ToString and using operator== instead other Equals method:
Azure/PowerShell: Retrieving Azure Regions using Get-AzLocation
A standard for naming Azure resources has been proposed by Microsoft, Define your naming convention. The naming standard specifies that each Azure resource name contains a:
- Resource type abbreviation
- Workload/application
- Environment (.e.g. dev, QA, stage, prod, etc.)
- Azure region
- Instance number
A programmatic means to retrieve the Azure regions used by resource name is provided by the Get-AzLocation PowerShell cmdlet. The documentation for Get-AzLocation (Get-AzLocation) describes the cmdlet's functionality as follows:
Get-AzLocation can be invoked as follows to return a list of Azure locations (regions) that can be used in resource names:
Sunday, January 14, 2024
Docker: Identify Linux/Windows Container Support Requirements (Open Source Contribution)
The Docker documentation, Install Docker Desktop on Windows, specified at the bottom of the instructions the operating systems requirements to run Windows containers from Docker. I modified the page but at the same time the Docker documentation team split the system requirements into multiple pages (per-operating system) and made the same basic modification I had proposed to the documentation.
My PR was acknowledge as part of the changes:
The warning entitled, Important, at the bottom of this documentation was fundamentally the change proposed in close proximity to the specific version requirements:
Saturday, January 6, 2024
Git: Adding a Submodule to a Repo
Adding a Submodule
I was tasked with adding Opkg utilties to an existing git repo so these utilities could be invoke as part of the build pipeline. The Opkg project is found at:
The logical way to add the contents of a Opkg to to an exising git repo is byusing a git submodule. A submodule can be added to a repo by navigating to the folder in which the local repo resides:
From inside the local repo's folder invoke:
git submodule add https://github.com/shr-project/opkg-utils
The following command shows the current changes related to any submodules:
The output from the above code is as follows: