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:

1000 questions
11
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…
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,666
  • 5
  • 35
  • 70
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
  • 699
  • 2
  • 13
  • 23
9
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
  • 251
  • 2
  • 17
8
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
  • 9,651
  • 5
  • 46
  • 62
8
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
  • 12,999
  • 6
  • 27
  • 52
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
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…
7
votes
1 answer

Access Windows Task credentials in the PowerShell Script

I need to automate running a PowerShell script using Windows Task Scheduler. My problem is that in my PS script I need to send my credentials to a web service. I don't want to write my credentials in the file as it's plain text and easily accessible…
David Lozzi
  • 9,763
  • 7
  • 23
  • 36
7
votes
5 answers

Where is IIS on Windows Server 2012 Essentials

I just got Windows Server 2012 Essentials installed and I would like to set up my dev web projects in IIS on the server. But I can't seem to find how to get to it? When I remote to the machine with my admin account all I seem to have access to is…
Colin Bacon
  • 14,767
  • 7
  • 46
  • 66
7
votes
1 answer

IIS Application Request Routing Server Farm Settings

On an IIS server with Application Request Routing, new server farms to be routed to can be added by right-clicking Server Farms -> Create Server Farm. This will pop up a dialog where the settings for the server farm can be entered. I did not manage…
Wilbert
  • 6,534
  • 6
  • 38
  • 81
7
votes
3 answers

MSDeploy throwing weird error: Stream data of xxxxx.dll is not yet available

I am deploying a number of .Net projects to different servers. To do this my team is using TFS to build, then from the build template calling a ps1 script that uses msdeploy to push to all the different servers. It's all very enterprisey and no, I…
6
votes
2 answers

Is there a way to enable referral chasing for UserPrincipal.FindByIdentity()?

I have a .NET 3.5 web application that uses the System.DirectoryServices.AccountManagement classes. When I search for some users I get a PrincipalOperationException: A referral was returned from the server. If I did this the old school way with my…
6
votes
4 answers

Cannot start the driver service on http://localhost

I would kindly like to ask for help an issue I have running selenium on on a windows server without an interface, I get the following error: Cannot start the driver service on http://localhost:49906/ at OpenQA.Selenium.DriverService.Start() …
6
votes
2 answers

SMB share mappings created with New-SmbGlobalMapping for docker containers not restored after reboot on windows server 1803

I am trying to create a simple Docker host to try using containers for some .net projects. I have setup a Windows Server 1803 host and installed Docker EE with powershell and it is running as a service correctly. I wanted to use the new "SMB Global…
1
2
3
66 67