windows-server-2016

Windows 10 poor performance compared to Windows 7 (page fault handling is not scalable, severe lock contention when no of threads > 16)

僤鯓⒐⒋嵵緔 提交于 2019-11-30 10:31:24
问题 We set up two identical HP Z840 Workstations with the following specs 2 x Xeon E5-2690 v4 @ 2.60GHz (Turbo Boost ON, HT OFF, total 28 logical CPUs) 32GB DDR4 2400 Memory, Quad-channel and installed Windows 7 SP1 (x64) and Windows 10 Creators Update (x64) on each. Then we ran a small memory benchmark (code below, built with VS2015 Update 3, 64-bit architecture) which performs memory allocation-fill-free simultaneously from multiple threads. #include <Windows.h> #include <vector> #include <ppl

Can we deploy an asp.net mvc 4 app to docker with windows container?

假装没事ソ 提交于 2019-11-30 10:21:01
All the demo I saw lately are oriented Asp.net core (I am not sure how it's stable and functional, as it didn't contain all asp.net features), as Windows server 2016 support containers (and docker), should we be able to deploy an asp.net mvc 4.0 app ? Yes. You can use microsoft/windowsservercore or microsoft/iis as a base image, install full ASP.NET and run your 'legacy' .NET apps in containers on Windows. You can do it now with Windows 10 and Server 2016 TP5, but the RTM (expected next week at Ignite) should be more stable. I've shown this by Dockerizing the old Nerd Dinner showcase app . You

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

微笑、不失礼 提交于 2019-11-30 06:23:40
问题 I have got some problem when I installed Docker with Window Server. The environment list: 1 Windows 10 (Physical Machine) 2.VMware® Workstation Player (12~ above) URL 3.Windows Server 2016 at the VM 4.Docker CE for Windows(stable) URL the problem picture and content Unable to start: The running command stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop: 'MobyLinuxVM' failed to start. Failed to start the virtual machine 'MobyLinuxVM' because one

MySql 5.7 installer fails to detect VS 2013 redistributable

早过忘川 提交于 2019-11-30 01:09:05
Trying to install the latest version of MySQL Server - 5.7.19 - on a clean Windows server machine using the MySql installer MSI package. On first attempt it told me it needed a prerequisite of the Visual Studio 2013 Redistributable and installed it. When trying to install the server, however, it then complains: 1: Action 10:59:21: INSTALL. 1: 1: MySQL Server 5.7 2: {F08E9C75-A42E-4962-8760-4CBD9CF35D7A} 1: Action 10:59:21: FindRelatedProducts. Searching for related applications 1: Action 10:59:21: AppSearch. Searching for installed applications 1: Action 10:59:21: LaunchConditions. Evaluating

Can we deploy an asp.net mvc 4 app to docker with windows container?

穿精又带淫゛_ 提交于 2019-11-29 15:38:29
问题 All the demo I saw lately are oriented Asp.net core (I am not sure how it's stable and functional, as it didn't contain all asp.net features), as Windows server 2016 support containers (and docker), should we be able to deploy an asp.net mvc 4.0 app ? 回答1: Yes. You can use microsoft/windowsservercore or microsoft/iis as a base image, install full ASP.NET and run your 'legacy' .NET apps in containers on Windows. You can do it now with Windows 10 and Server 2016 TP5, but the RTM (expected next

How can I see the command history across all PowerShell sessions in Windows Server 2016?

删除回忆录丶 提交于 2019-11-28 18:48:27
Where can you view the full history from all sessions in Windows Server 2016? The following PowerShell command only includes the commands from the current session: Get-History Daniel Leach In PowerShell enter the following command: (Get-PSReadlineOption).HistorySavePath This gives you the path where all of the history is saved. Then open the path in a text editor. Try cat (Get-PSReadlineOption).HistorySavePath to list the history in PowerShell. 来源: https://stackoverflow.com/questions/44104043/how-can-i-see-the-command-history-across-all-powershell-sessions-in-windows-serv

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

巧了我就是萌 提交于 2019-11-28 17:51:26
I have got some problem when I installed Docker with Window Server. The environment list: 1 Windows 10 (Physical Machine) 2.VMware® Workstation Player (12~ above) URL 3.Windows Server 2016 at the VM 4.Docker CE for Windows(stable) URL the problem picture and content Unable to start: The running command stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop: 'MobyLinuxVM' failed to start. Failed to start the virtual machine 'MobyLinuxVM' because one of the Hyper-V components is not running. 'MobyLinuxVM' failed to start. (Virtual machine ID BBD755F7

Linux Docker container on Windows Server 2016

梦想的初衷 提交于 2019-11-28 07:00:52
What is the way to run Linux docker container on Windows Server 2016? With Docker for Windows it easy to do in Windows 10. Is the only way to install Docker Toolbox and ignore the build-in containers feature all together? It is possible to use Linux containers on W2016. It's a bit hacky though. User " Algore " described it here but I've copied it into this answer, of course. Download "Docker for Windows": https://docs.docker.com/docker-for-windows/ Install "Docker for Windows" on Windows 10 Pro. Copy C:\Program Files\Docker from the Windows 10 machine to C:\Program Files on your Server 2016

How can I see the command history across all PowerShell sessions in Windows Server 2016?

柔情痞子 提交于 2019-11-27 11:14:29
问题 Where can you view the full history from all sessions in Windows Server 2016? The following PowerShell command only includes the commands from the current session: Get-History 回答1: In PowerShell enter the following command: (Get-PSReadlineOption).HistorySavePath This gives you the path where all of the history is saved. Then open the path in a text editor. Try cat (Get-PSReadlineOption).HistorySavePath to list the history in PowerShell. 来源: https://stackoverflow.com/questions/44104043/how-can

How to disable HTTP/2 on IIS 10

不羁岁月 提交于 2019-11-27 04:36:31
IIS 10 claims to fully support HTTP/2. I'm wondering if there is a way to turn off 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. This is old - but I thought id share my experience. I noticed this when we converted from server 2008 to 2016, and only on our classic asp pages. I noticed that I was setting