Tidy up - Unused Project and Nuget package reference using Visual Studio 2019

If you are a Developer/Architect using Visual Studio as IDE for your development activities, this blog post will be of your interest. During the Ignite 2021 conference, Microsoft released Visual Studio 2019 v16.9 and v16.10 Preview 1. As part of version 16.10 Preview 1, one of the cool features they introduced is to "Remove Unused References..." for any Projects and Nuget packages that are not in use. At the time of writing this blog post, we have Visual Studio Version 16.10.0 (official release) which includes this new feature.  As part of development, we generally get carried away and introduce new Nuget package references to your project and add new references to your Projects. By the end of development, you will not be 100% sure which are not being referenced and unused which means you will leave those unused project references in your application. Now you might be wondering what's the big deal in it since it doesn't harm. The advantage of removing unused project r

Password Reset for Virtual Machine in Azure


Reset password for Domain controller Virtual Machine

The first thing you will likely try is the Reset Password option in the Azure portal. It does not work for Domain Controllers.

In order to reset password for Domain controller below is the procedure
Ø  Go to the VM in the azure portal
Ø  Go into the extensions menu for that VM
Ø  In the top menu pick “Add”
Ø  Choose the Custom Script extension
Ø  Click Create
Ø  Pick your DCUser.ps1 script file, which is available below.
Ø  Click OK.
Ø  Wait for the extension to be deployed and run, once ran ensure you uninstall the extension as a best practice.  

PowerShell script for Password Reset for DC. Replace user name and password based on your requirement.


You can reset normal Windows virtual machine (VM) credentials in a few different ways, depending on your needs:

Reset password using Azure Portal

         Ø  Select your Windows virtual machine, from your VM navigate to ResetPassword option in                  portal. The password reset blade is displayed.The password reset blade is displayed.

         Ø  After you enter the new user name and password, click Save.

Other options is to use PowerShell scripts.



Comments

Popular posts from this blog

Tidy up - Unused Project and Nuget package reference using Visual Studio 2019

Swagger UI for Azure Function v2 & v3 APIs

Authenticate Azure Functions - API Keys