windows-server-2016

Active directory accounts inside a windows container (server 2016 TP5)

删除回忆录丶 提交于 2019-12-21 09:18:19
问题 So I have Windows Server 2016 TP5 and I'm playing around with the containers. I am able to do basic docker tasks fine. I'm trying to figure out how to containerize some of our IIS-hosted web applications. Thing is, we usually use integrated authentication for the DB and use domain service accounts for the app pool. I currently don't have a test VM (that is in a domain) so I can't test if this will work inside a container. If the host is joined to an AD domain, are its containers also part of

Remote debug UWP app on Windows Server 2016

◇◆丶佛笑我妖孽 提交于 2019-12-19 17:26:21
问题 The goal I would like to use a Windows Server 2016 (x64) for remote debugging of UWP applications. The reason? My working PC still runs a Windows 7 instance and it is not possible to deploy an UWP app on a Windows 7 machine. The problem I have already installed the Remote Tools For Visual Studio 2015 on the Windows Server 2016 machine and started it on port 4020. Authentication mode was set to "None". I have enabled Developer mode on the server as well. Also I have set up my project in Visual

Remote debug UWP app on Windows Server 2016

送分小仙女□ 提交于 2019-12-19 17:26:18
问题 The goal I would like to use a Windows Server 2016 (x64) for remote debugging of UWP applications. The reason? My working PC still runs a Windows 7 instance and it is not possible to deploy an UWP app on a Windows 7 machine. The problem I have already installed the Remote Tools For Visual Studio 2015 on the Windows Server 2016 machine and started it on port 4020. Authentication mode was set to "None". I have enabled Developer mode on the server as well. Also I have set up my project in Visual

Linux Docker container on Windows Server 2016

橙三吉。 提交于 2019-12-17 17:59:06
问题 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? 回答1: 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

How to disable HTTP/2 on IIS 10

有些话、适合烂在心里 提交于 2019-12-17 07:30:13
问题 IIS 10 claims to fully support HTTP/2. I'm wondering if there is a way to turn off HTTP/2 on IIS 10. 回答1: 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. 回答2: This is old - but I thought id share my experience. I noticed

How can I use my webcam inside an Azure windows server virtual machine?

有些话、适合烂在心里 提交于 2019-12-13 07:59:23
问题 I have a Windows server 2016 vm on Azure and I am trying to do some work in Augmented Reality using Vuforia and Unity. An essential part of this is being able to use my webcam but once I am inside the VM it doesnt recognise my integrated webcam. I tried to connect a webcam through USB as well but this doesn't work either. Is this an impossible task...getting a server instance to recognise webcams on my laptop or is it actually possible? Any help would be appreciated. 回答1: You could achieve it

Android Emulation + vServer ? Windows 2016 Server

风流意气都作罢 提交于 2019-12-13 07:48:42
问题 i have a Windows 2016 Server on a vServer and want to run android on it. Which version ist almost irrelevant. Should be at least Android 4 if possible ;) I tried MANY MANY Emulators, VirtualBox with Android_x86 images, Android Studio and so on. I can't get it to run! Mostly it is because of following things: The Emulator won't work with Hyper-V (which isn't even installed?!?!) The Emulator says i have to enable Virtualization. Which i can't, cause there is no BIOS to go to on a vServer. It

Why there is no traffic goes through to my server, however firewall setup correctly?

﹥>﹥吖頭↗ 提交于 2019-12-11 17:24:31
问题 I have a Windows Server 2016 in a provides (actually it is a VPS), where an Azure Storage Emulator runs and I would like to connect to it from local machine. It uses port 10000, when I test my app just hangs and timeouts. When I try to call the endpoint via browser (http://IP_ADDRESS:10000) I got the page is not available error. However, if I call from the server the http://localhost:10000, then I get an error message provided by the emulator. There is a PortQry stuff testing a given port it

Cannot access an IIS container from browser - Docker

余生长醉 提交于 2019-12-11 17:16:32
问题 Windows Version: Windows Server 2016 Docker for Windows Version: 18.09.0 I try to follow the steps in https://docs.microsoft.com/en-us/virtualization/windowscontainers/quick-start/quick-start-images I have a Docker file on c:\Build: FROM microsoft/iis RUN echo "Hello World - Dockerfile" > c:\inetpub\wwwroot\index.html Please note that I have tried using FROM microsoft/iis:10.0.14393.206 as well So, I ran using powershell with admin privilege: docker build -t imagename c:\Build Then I ran:

Why CoCreateInstance returns REGDB_E_CLASSNOTREG on some Windows?

被刻印的时光 ゝ 提交于 2019-12-11 05:22:25
问题 I want to use DSound Audio Render in one of my application so I load it with CoCreateInstance. Here is a little snippet: #include <iostream> #include <strmif.h> #include <uuids.h> int main() { std::cout << "Start" << std::endl; HRESULT hr = CoInitialize(NULL); printf("CoInitialize = 0x%x\n", hr); IBaseFilter* ptr = NULL; hr = CoCreateInstance(CLSID_DSoundRender, NULL, CLSCTX_INPROC, IID_IBaseFilter, (void**)&ptr); printf("CoCreateInstance = 0x%x\n", hr); ptr->Release(); CoUninitialize(); std: