.NET 4.7.3 How to fix: The CodeDom provider type “Microsoft.VisualC.CppCodeProvider, CppCodeProvider, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a” could not be located.

  Solution Close Visual Studio 2019 Remove package.lock.json Execute: npm i Open Visual Studio 2019 Rebuild project       Error The CodeDom provider type “Microsoft.VisualC.CppCodeProvider, CppCodeProvider, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a” could not be located. File:

PowerShell – Negate boolean – use -Not

  https://stackoverflow.com/questions/8095638/how-do-i-negate-a-condition-in-powershell     function FolderExists {     param($folder)       $folderExists = Test-Path “$($folder)”     If ($folderExists -eq $True) {         Write-Host “Folder [$($folder)] exists.”     } Else {         Write-Host “Folder [$($folder)] does NOT exist.”     }     return $folderExists }   if(-Not (FolderExists -folder “C:\ThisFolderDoesNotExistOnThisSystem”)) {     Write-Host “Folder does not exists!!!!!” < p style=”background: #1e1e1e”>}        

NET 5.0 – Windows Server 2008 R2 Standard – Unable to load ‘D:\Websites\VBV\.\hostfxr.dll’. This might be caused by a bitness mismatch between IIS application pool and published application.

  Solution By default the application was created with “Enable 32-Bit Applications” set to true. After changing this to “false”, the error was resolved.     Error Failed to start application ‘/LM/W3SVC/3/ROOT’, ErrorCode ‘0x800700c1’. Could