2020-07-17 Learned Today

0 Comments

  How to fix .NET C# error: System.Security.AccessControl.PrivilegeNotHeldException: The process does not possess the ‘SeSecurityPrivilege’ privilege which is required for this operation.   If encountered the error “System.Security.AccessControl.PrivilegeNotHeldException: The process does not possess the ‘SeSecurityPrivilege’

2020-07-16 Learned Today

0 Comments

  Visual Studio Code can be used as hex editor By installing this extension: https://marketplace.visualstudio.com/items?itemName=ms-vscode.hexeditor   How to play an entire folder containing *.mp3 files from OneDrive on iOS / iPhone Yes, it is a

2020-07-15 Learned Today

0 Comments

  How to open an integrated Windows PowerShell terminal / command line inside Visual Studio 2019   View > Terminal Or CTRL + `   One of the great Visual Studio Code features, that was

2020-07-14 Learned Today

0 Comments

  How to link / reference Jira issue with PR, after pull request is created Just add the PRI number to your pull request title. https://support.atlassian.com/jira-software-cloud/docs/reference-issues-in-your-development-work/

2020-07-06 Learned Today

0 Comments

  Using IIS ApplicationPoolIdentity to run git inside a PowerShell script, run by a .NET Core web application   I encountered the following error, when trying to execute a PowerShell script from a .NET Core

2020-07-03 Learned Today

0 Comments

  Depending on the right PowerShell NuGet package in your .NET project https://devblogs.microsoft.com/powershell/depending-on-the-right-powershell-nuget-package-in-your-net-project/ So for running PowerShell from within a .NET Core application it is best to use the PowerShell SDK package.   How easily

2020-07-02 Learned Today

0 Comments

  How to map a network drive with PowerShell Note: The driveName does NOT have to be a letter it can be multiple characters, like DataDrive instead of Z. param (     [String] $driveName = “Z”,     [String] $networkPath = “\\Localhost\c$” )   $drive = “$($driveName):”