windows-server-2008-r2

Differences between Windows 7 and Windows Server 2008 R2

会有一股神秘感。 提交于 2019-12-05 03:24:28
There are features and APIs that are included in Windows 7 or Windows Server 2008 R2, but not the another. Where can I find a specific list of the differences? Is there anything to especially avoid if the program is to be compatible with both? Naturally, the question can be generalized to any version of Windows and its respective server edition. selbie https://serverfault.com/questions/55355/whats-the-difference-between-windows-server-2008-2008-sp2-and-2008-r2 In general, the core API set of Windows 7 and Win2K8(R2) are supposed to be near identical. (Vista and the original Win2k8 are supposed

MySQL unable to connect with remote server

本小妞迷上赌 提交于 2019-12-04 19:14:12
问题 We have a MySQL server in one of the remote Virtual Machine (Windows Server 2008). Till yesterday we were able to connect to the MySQL server, with the help of workbench installed in our local machine. Yesterday there was a restart to the machine which has the Virtual Machine installed. After that we are unable to connect to MYSQL. Though I can ping and remote connect this particular VM. I can even execute the queries inside the workbench installed in the VM. I am not too good at networking

Remotely change computer name for a Windows Server 2008 machine using C#?

坚强是说给别人听的谎言 提交于 2019-12-04 17:11:39
Might someone be able to point me towards a conclusive resource to learn how to remotely change a computer name on a Windows Server 2008 machine using C# I've looked at lots of sites for help and now in day two of my task and not really any closer (other than deciding WMI is pretty much my only option) Totally out of my normal skillset so I guess pretty much any info would be nice, but especially anything having to do with changing a computer name remotely. (this would occur right after I remotely spin up a virutal from an image...and yes, i realize a reboot will be required) thanks Here is a

Visual Studio 2012 Web Deploy to Windows Server 2008 R2 with IIS 7 and /msdeploy.axd 404 error

我怕爱的太早我们不能终老 提交于 2019-12-04 15:38:51
问题 In Visual Studio 2012 RC when I try to validate a Web Deploy connection I get this error message: ERROR_DESTINATION_NOT_REACHABLE The required Web Management Service is started on the server and Web Deploy 3.0 RC is installed. Then using Remote Desktop Connection I log on the server and go check IIS logs located at C:\inetpub\logs\LogFiles\W3SVC1 . There I can see my attempts to validate the connection because they contain my IP address: 2012-07-13 20:58:49 185.201.117.17 HEAD /msdeploy.axd

Stop sync windows 2008 r2 clock

和自甴很熟 提交于 2019-12-04 15:22:00
I need to stop the sync from a windows server 2008 r2 from sync. Already stop the windows time service, but it sync in 2 seconds. how can i delay 1 day in the clock and dont sync ? Luis TO do it, i have to stop this two services Hyper-V Time Synchronization Service Windows Time temporarely stopping the service: net stop w32time unregistering the service: W32tm /unregister http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1318 If running a VM, disable time sync: Deselect Time synchronization between the virtual machine and the host operating system in

Deploying Self Hosted SignalR

江枫思渺然 提交于 2019-12-04 11:44:34
问题 I have created a pair of C# based console apps based on this SignalR Console app example. This works brilliantly on my local PC, and I have now copied the server app (plus all files from the bin/Release folder) onto my server. When I run the server app, it happily sits there listening on "http://www.redacted.com:8088/". In the client app, I changed: var _connection = new HubConnection("http://127.0.0.1:8088/"); to: var _connection = new HubConnection("http://www.redacted.com:8088/"); However

How to execute a program in compatibility mode from code?

蹲街弑〆低调 提交于 2019-12-04 11:05:14
Environment: Windows Server 2008 R2 64 bit I have a program that works with Windows Server 2003 SP1 compatibility mode . However, when I try to execute this program using C#, the program errors out. I think it is because it is not running in compatibility mode when invoked from another program. I use Process.Start(pathToExe) from my code to start this program. I tried to run the calling program in compatibility mode to check if this would make the program run correctly. Please note that I have set the program set to compatibility from Properties | Compatibility . I am not sure if I understand

Windows Authentication not working in ASP.NET MVC 5 web app

[亡魂溺海] 提交于 2019-12-04 10:40:42
问题 I have an ASP.NET MVC 5 app and am trying to enable Windows Authentication. The development machine is Windows Server 2008 R2, IIS Express 8.0, Visual Studio 2013 & .NET Framework 4.5. I get a 404 Not Found error when ever I browse the app. The app enters a redirect loop with http://localhost:63455/Account/Login?ReturnUrl=%2F . Eventually the ReturnUrl ends up being very large as it gets appended to with each redirect. My web.config looks like this: <system.web> <authentication mode="Windows"

SSIS Package runs for 500x longer on one server

故事扮演 提交于 2019-12-04 10:32:39
问题 I have an SSIS package--two data flow tasks, 8 components each, reading from two flat files, nothing spectacular. If I run it in BIDS, it takes reliably about 60 seconds. I have a sandbox DB server with the package running in a job which also takes reliably 30-60 seconds. On my production server, the same job with the same package takes anywhere from 30 seconds to 12 hours . With logging enabled on the package, it looks like it bogs down--initially at least--in the pre-execute phase of one or

Creating a private MSMQ queue in a Microsoft Cluster via a script

前提是你 提交于 2019-12-04 10:01:15
We are migrating to Windows 2008 R2 Standard and will be using a Microsoft Clustering (active-passive) configuration. Our application is heavily dependent on MSMQ private queues and our install creates well over 100 private queues using the following C# code. MessageQueue.Create(".\private$\myqueue", false); Since the install is not running inside the context of the cluster, the queues are created on the local node and not in the cluster. We then tried changing the code to: MessageQueue.Create("MYCLUSTERNAME\private$\myqueue", false); However, you can't create private queues on a different