Questions tagged [windows-server-2008-r2]

Windows Server 2008 R2 is a server operating system produced by Microsoft.

Windows Server 2008 R2 is a server operating system produced by Microsoft. It was released to manufacturing (RTM) on July 22, 2009 and launched on October 22, 2009. It is built on Windows NT 6.1, the same kernel used with the client-oriented Windows 7.

It is the first 64-bit-only operating system released from Microsoft. Version enhancements include new functionality for Active Directory, new virtualization and management features, version 7.5 of Microsoft IIS Web Server and support for up to 256 logical processors.

There are seven editions:

  1. Foundation
  2. Standard
  3. Enterprise
  4. Datacenter
  5. Web
  6. HPC Server
  7. Itanium and Windows Storage Server 2008 R2 (Essentials Edition).

More Information On Windows Server 2008 R2

Reference

1824 questions
8
votes
3 answers

Python: get output from a command line which exits with nonzero exit code

I am Using Python 2.7.1 on a Windows Server 2008 R2 x64 box. I'm trying to get the output of a command line process which gives a nonzero exit status after outputting the information I need. I was initially using subprocess.check_output, and…
bplattenburg
  • 623
  • 1
  • 8
  • 33
8
votes
4 answers

What are the causes and solutions of exception code c0000005 in mscorwks.dll?

The exception code C0000005 is thrown from mscorwks.dll when the application is run on Windows Server 2008 R2 launched using test complete. Other platforms (Windows XP, Server 2003 R2, Windows 7 32-bit and 64-bit) do not present this exception. The…
Erick
  • 732
  • 2
  • 8
  • 18
8
votes
1 answer

Why does a worker thread my ASP.NET spawn experience a ThreadAbortException during a Sleep?

I spawn a worker thread in an ASP.NET application running on Windows Server 2008, IIS 7.5 The first thing this worker thread does is sleep for N seconds, and then it does its real work. During the sleep, a catch a ThreadAbortException. Can you…
Corey Trager
  • 22,649
  • 18
  • 83
  • 121
8
votes
1 answer

pg_upgrade on Windows cannot write to log file pg_upgrade_internal.log

I'm trying to run pg_upgrade on Windows 2008R2, but I'm getting the error: cannot write to log file pg_upgrade_internal.log Failure, exiting I saw a similar question for Linux at 23216734 which explains that the issue is with permissions, but it…
isapir
  • 21,295
  • 13
  • 115
  • 116
8
votes
1 answer

Bamboo SCP plug-in: how to find directory

I am trying to upload a file to a remote server using the SCP task. I have OpenSSH configured on the remote server in question, and I am using an Amazon EC2 instance running Windows Server 2008 R2 with Cygwin to run the Bamboo build server. My…
Jake
  • 3,411
  • 4
  • 21
  • 37
8
votes
3 answers

401.0 - Unauthorized - MVC App with IIS 7

I've got an MVC app that normally works fine, but on a particular server, it's returning a 401.0 "The authenticated user does not have access to a resource needed to process the request" error. Normally it works like this: User logs into a separate…
8
votes
2 answers

Uneven character kerning in PDF when converted from Word via automation

I need your expertise in fixing a problem I have been facing from a week. This has already turned into a 'royal pain in the lower back side' category and time is running out fast. Problem I have developed a C# script that I call from ColdFusion to…
Sanjeev
  • 1,838
  • 1
  • 16
  • 28
8
votes
3 answers

PerformanceCounter.NextValue() throws InvalidOperationException

This is the code that creates the performance counter: var ftpPerfCounter = new PerformanceCounter("FTP Service", "Current Connections", "_Total"); This is where the exception happens: int cnt = (int)Math.Round(ftpPerfCounter.NextValue()); Here's…
7
votes
0 answers

After publishing Windows AppFabric service from VS with web deploy temporary cached DLLs still used

I have a few Windows 2008 R2 AppFabric always-running auto-start services deployed as per this article. The services vary in type, some are scheduled Quartz.NET job hosts, some are NServiceBus endpoints, and some are WCF web services. I run into…
eulerfx
  • 36,769
  • 7
  • 61
  • 83
7
votes
1 answer

Trouble creating active directory users with Java

I've got a windows server 2008R2 with an active directory. I want to create a Java program, what allows a 08/15-user to add new users to this AD. I have found an [example][1] in the oracle forums and modified it for my AD.: package model; import…
Demnogonis
  • 3,172
  • 5
  • 31
  • 45
7
votes
3 answers

svctraceviewer exe in Windows 2008 Enterprise Server

I have a WCF service running on a Windows 2008 Enterprise Server. I just enabled Tracing on in App.config of the service. I have been trying to find the svctraceviewer.exe on the server and am not able to. I tried to google and they say it will be…
acadia
  • 2,619
  • 18
  • 55
  • 72
7
votes
3 answers

System.Data.Sqlite not being recognized by Visual Studio 2010 on Win 2K8 Server machine

I have a Windows Server 2008 (64-bit) box that I am doing development on. I've installed Visual Studio 2010 and System.Data.SQLite (from sqlite.phxsoftware.com). My problem is that the former is not seeing the latter. That is, when I go to the…
7
votes
6 answers

Accessing SQL Server on Windows Server 2008 R2 from remote client

We are currently shifting from using PostgreSQL installed on remote CentOS boxes to using MS SQL Server 2008 R2 installed on remote Windows Server 2008 R2 boxes. Our web application that uses this database is installed and running on another CentOS…
Nick Foote
  • 2,425
  • 9
  • 36
  • 47
7
votes
3 answers

VS 2010 Publish using Web Deploy

I'm trying to deploy my ASP.NET MVC 3 web application using VS2010 Publish feature. I'm using Web Deploy as Publish method, but I'm getting this error: Error 1 Web deployment task failed.(Remote agent (URL …
7
votes
8 answers

PHPMailer loads a while, then gives 500 - Internal server error

I am trying to setup a php page to automatically send a verification email. I would like to use the gmail smtp servers, and everywhere I've looked suggests to use PHPMailer. I installed it and used the following example…
David Starkey
  • 1,840
  • 3
  • 32
  • 48