Questions tagged [windows-server]

A family of server operating systems by Microsoft. This tag can also be used to denote a server with Windows, as opposed to Unix, installed.

Windows Server is a family of server operating systems developed by Microsoft.

This includes:

1228 questions
13
votes
1 answer

Multiple assemblies with equivalent identity have been imported: '' and ''

I am getting the below error when I try to start the container. This is a simple asp.net vnext web application. I am trying to host this inside docker container in windows server 2016. Please advice. System.IO.FileLoadException: Could not load file…
12
votes
2 answers

Detecting elevated privileges on Windows Server 2008 or higher

I have an C#, .Net 4.6.1 Windows Forms Application running on Windows Server Platforms (2008 or higher) which requires to be "Run as Administrator". Elevated privileges are required because the application changes User Access Rights on various…
Mats
  • 14,902
  • 33
  • 78
  • 110
12
votes
2 answers

AWS CodeDeploy executes before Auto Scaling userdata scripts finishes

I'm trying to setup an Auto Scaling Group in combination with CodeDeploy. Everything works fine except for the fact that when a new instance is created CodeDeploy starts before the user data script (defined in the Launch Configuration) finishes. The…
Fabian
  • 13,603
  • 6
  • 31
  • 53
11
votes
2 answers

Deploy Meteor on Windows

I find it rather weird that there are no detailed step by step explanations on how to deploy your own Meteor webapp onto your own Windows server. Or maybe I'm just not able to use Google to find one such explanation. On many pages, even on some…
10
votes
2 answers

lower_case_table_name Error

I'm trying to set the lower_case_table_name value to 2, since it is a Windows server. But when I start MySQL Workbench and connect to my server I get the following error: A server is in a system that does not properly support the selected…
Bernie Hunt
  • 306
  • 4
  • 22
9
votes
1 answer

Windows Server 2022: Install docker container runtime for Linux images using WSL without Hyper-V

We want to install a docker container runtime on a (virtual) Windows Server 2022. This docker container should be able to run images on Linux (e.g. ubuntu). The server cannot run Hyper-V as it doesn't have the "required virtualization capabilities".…
Sandro
  • 1,051
  • 7
  • 15
9
votes
5 answers

Can Python be used as an effective script language for Windows Server environment?

I'm currently working on a strategy for managing multiple Windows Server 2003 to 2008 running SQL Server 2000 - 2008 and I want/need a unified scripting platform for automating tasks. I'm becoming a big fan of Python and as such I'd like to know if…
Chris Hayes
  • 3,876
  • 7
  • 42
  • 72
9
votes
4 answers

Windows container failed to start with error, "failed to create endpoint on network nat: HNS failed with error : Failed to create endpoint."

I have been trying Windows Containers on windows server 2016 TP5. Suddenly I started getting error while running a container with port maping option -p 80:80 c:\>docker run -it -p 80:80 microsoft/iis cmd docker: Error response from daemon: failed to…
pinkal vansia
  • 10,240
  • 5
  • 49
  • 62
9
votes
4 answers

IF ELSE problem COMMAND BATCH

I have problem about IF ELSE in Command Batch script... In Notepad: Code: :CHECKACCOUNT if /I "%user%"=="insertusername" ( GOTO :ACCOUNT ) ELSE ( GOTO :CHECKPASSACCT ) :CHECKPASSACCT if /I "%pass%"=="insertpassword" ( GOTO :ACCOUNT ) ELSE ( GOTO…
user453089
  • 719
  • 2
  • 13
  • 23
8
votes
2 answers

storage\logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied

I have developed my application in Laravel 8, it's working fine in localhost and Linux server. But When I deployed it in Plesk Windows Server it's showing permission denied error. UnexpectedValueException The stream or file…
Samad
  • 91
  • 1
  • 1
  • 3
8
votes
2 answers

Run Docker on Windows without virtualization

I'd like to know if I can run docker with a windows containers on windows machine without machine virtualization, like it is on Linux. Because I have my whole environment running on windows machines on azure, and it would be much easier to add…
gabriel giovanini
  • 189
  • 1
  • 2
  • 7
8
votes
4 answers

A connection attempt failed because the connected party did not properly respond after a period of time or connected host has failed to respond

I'm developing a windows service, that downloads images from a specific URL. The service runs correctly on my computer but when I install it in the server it does not download the image and it gives the following error: System.Net.WebException:…
Laila
  • 417
  • 1
  • 3
  • 14
7
votes
1 answer

GetObject("winmgmts:... crashes Excel 2016 with no Errors

I am debugging some VBA code I've written in Excel 2016, and this sub is crashing Excel 2016 on windows Server with no errors. It is crashing on the Set RegObj = GetObject... Sub TestPrinter() On Error GoTo e Dim RegObj As Object 'This…
Joe Bauer
  • 572
  • 1
  • 9
  • 22
7
votes
1 answer

Is gcServer true by default on server editions of Windows?

I have a .Net 4.0 Win Forms app that I run on two boxes, one is a Win7 box, one is a Win Server 2k3 box. The app on the 2k3 box has 2-3 intermittent hangs throughout the day that appear to be large garbage collections, while the win7 box never has…
7
votes
3 answers

Docker Windows how to keep container running without login?

I have Docker installed inside a Virtual Machine with Windows Server 2016. I have a Linux Container from Python3 with NGINX server using --restart=always param, it runs fine while I am logged in, if I restart the VM, the container is no longer…
Alex Lord Mordor
  • 2,890
  • 7
  • 27
  • 47
1
2
3
81 82