Skip to main content

Posts

Configure Visual Studio to Name Private Fields with Underscore

Most C# coding standards recommend using camelCase for local variables and _camelCase for private or internal.  Unfortunately, out of the box Visual Studio just uses camelCase for these fields, which makes typical dependency injection scenarios annoying in constructors: Steps: Click on Tools in the menu. Click on Options. Click on Text Editor. Click on C#. Click on Code Style. Click on Naming. Click on Manage naming styles. In the Naming Style dialog. Specify the following (see image below): Naming Style: _fieldName Required Prefix: _ Capitalization: camel Case Name Once you add it, your list should look like this

Remove Banner in SharePoint Online Modern Page

When we create a new page in SharePoint Online, The title area appears on the top with a banner image and the page title. SharePoint Online doesn’t allow you to save and publish a modern page without its “Title”. If you try to save a page with no title, you’ll get an error popup, “ Could not complete that action: Page title cannot be blank. ” We can use the following PowerShell Script to change the page layout type into a "Home"

Bulk Update Managers of the Azure AD Users using powershell script

In Azure AD we do not have an option to update the Manager of multiple users. Followig PowerShell script can help us to overcome this repetitive task.  First we need to create a 'csv' file with following columns User Manager User column contains the list of User Emails. Manager column will contain the Manager's Email of the respective User. Update the 'csv' file path & run the PowerShell script as Administrator.