How to disable HTTP/2 on IIS 10

To disable HTTP/2 on Windows 10 HTTP.SYS, set the following registry value on the Windows 10 desktop in HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\HTTP\Parameters EnableHttp2Tls REG_DWORD 0 EnableHttp2Cleartext REG_DWORD 0 The second of these is only necessary if the failure is with HTTP. The first is for HTTPS.

Start VirtualBox and VM in Windows boot

I have an example of how to autostart a VirtualBox VM during Windows startup. I’m running Windows 10, but it shouldn’t be much different on Windows Server 2016. The startup folder on my system is: C:\Users\chriwill\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup In that folder I placed a batch file kubuntu.bat with following content: “C:\Program Files\Oracle\VirtualBox\VBoxManage.exe” startvm kubuntu –type headless … Read more

Install webdeploy on W2016 IIS 10

I have to install new management tool called “Management Service” in Windows Features In order to install this: Open server roles / feature Find Management Tools Check Management service Update from other people experience you might need to restart the service Reinstall/Repair the installation of web deploy if you used installer There is a option … Read more

WARNING: Unable to find module repositories

With the deprecation of TLS 1.0 and 1.1 for PowerShell Gallery as of April 2020, the cmdlets Update-Module and Install-Module became broken. Thus, according to this article, some commands need to be executed to bring them alive again: [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 Install-Module PowerShellGet -RequiredVersion 2.2.4 -SkipPublisherCheck If that still doesn’t work, then run the following … Read more

MySql 5.7 installer fails to detect VS 2013 redistributable

I had the same issue today while installing MySQL 5.7 and not sure how shall I proceed and found your questions. I was sure that I have installed the 64bit version of Visual C++ Redistributable Packages on my machine. Then I installed a 32-bit version of the same package (URL: https://www.microsoft.com/en-in/download/details.aspx?id=40784) and the MySQL Installer … Read more

Failed to start the virtual machine ‘MobyLinuxVM’ because one of the Hyper-V components is not running

Here is a solution if you are getting this error on an Azure Windows 10 VM where you have installed Docker and this is already Nested Virtualization capable VM in other words your Azure VM must be V3 sized as minimum (DV3 or EV3): Ensure Windows Hyper-V featutes are enabled by running PowerShell cmdlet: Enable-WindowsOptionalFeature … Read more

A fatal error occurred while creating a TLS client credential. The internal error state is 10013

Basically we had to enable TLS 1.2 for .NET 4.x. Making this registry changed worked for me, and stopped the event log filling up with the Schannel error. More information on the answer can be found here Linked Info Summary Enable TLS 1.2 at the system (SCHANNEL) level: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2] … Read more