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

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

Windows: How do I log out of a remote desktop that only gives a disconnect option?

Click start, then from your username/icon in the top right corner you can choose “sign out”. The power button has “disconnect, shut down, restart”, your user button has “lock, sign out”. If the version of windows you’re using doesn’t have that icon, open a command or powershell window and type logoff

Storage Spaces Direct guidelines

Speaking shortly, the deployment sequence looks as following: Deploy necessary WS roles and features Validate the Failover Cluster Create the Failover Cluster Enable Storage Spaces Direct -EnableStorageS2D Create and configure storage pools Example input: New-StoragePool -StorageSubSystemName #CLUSTER_NAME# -FriendlyName #POOL_NAME# -WriteCacheSizeDefault 0 -ProvisioningTypeDefault Fixed -ResiliencySettingNameDefault Simple -PhysicalDisk (Get-StorageSubSystem -Name #CLUSTER_NAME# | Get-PhysicalDisk) Create and configure virtual … Read more