windows-server-2008

Microsoft (SQL) server licensing [closed]

馋奶兔 提交于 2019-12-05 18:51:41
We're planning a browser application (xbap) which is going to talk to WCF services. These WCF services get information from a SQL database. Each of our clients has his own database on this server. The clients need to get reports from SQL Reporting Services. A client can have multiple instances of this application running. How does this work with licensing? We thought of starting off with 1 server which has MSSQL and IIS running on windows server (although I might be smart separating these from the start). So that would be 1 license for Server 2008 and 1 for SQL2008? With an addition for each

Azure start-up task hangs

﹥>﹥吖頭↗ 提交于 2019-12-05 18:45:59
I have an Azure project with an MVC4 role where I have added the Visual C++ 2012 Runtime Library setup file, and a script to silently install it. The script works and the library gets installed, the only problem is that the task never finishes and the installation process never exits, which then blocks the role from starting: I connected to the server using Remote Desktop, and by looking at the task manager I can see the process vcredist_x64.exe : (2 of them actually, but I think that's normal) When I right-click and kill the process, the deployment finishes successfully and the role is

Installing SQLite3 for Ruby on Windows - what's the current easiest route?

我的未来我决定 提交于 2019-12-05 18:23:11
Am brand new to Ruby looking to get Redmine to run on WinServer08 sp1 I've read a few threads here detailing the steps and workarounds required to get Ruby and SQLite to play nice with each other. Ruby will run...sqlite3's .dll and api are in the specified directories...i've rebooted but rake -test fails. I'd like to find out if there's a definitive step-by-step that rolls up previous workarounds of the various packages involved. - thx much! C:\Ruby>rake -test --trace rake aborted! undefined local variable or method `st' for #<Rake::Application:0x4351638> C:/Ruby/lib/ruby/gems/1.8/gems/rake-0

VisualSVN Server: taking backups using svnadmin tool

耗尽温柔 提交于 2019-12-05 16:15:13
I have installed VisualSVN Server on Windows Server 2008. I was trying to create a hotcopy backup using svnadmin tool. It seems that I don't have this tool installed: C:\>svnadmin hotcopy C:\Repositories\Develop C:\temp\svnbackup 'svnadmin' is not recognized as an internal or external command, operable program or batch file. Does VisualSVN Server include svnadmin tool? How can I get this tool? I actually found the solution: I have these tools in this folder: C:\Program Files (x86)\VisualSVN Server\bin. I just had to add this to path enviromental values. nithin Actually you don't need to add

How to fix Distributed Transaction Manager (MSDTC) has been disabled errors [closed]

落爺英雄遲暮 提交于 2019-12-05 14:05:25
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . We are using transaction scope features of ASP.NET to manage distributed transaction for that we need to enable distributed transaction via following link: The partner transaction manager has disabled its support for remote/network transactions Its works well with SQL Server 2005 and Windows Server 2003 but when

SchTasks.exe to create a task folder

两盒软妹~` 提交于 2019-12-05 12:25:38
问题 Is there a command to create a Schedule task folder in Windows 2008? I am trying to use SchTasks.exe to create the tasks and would like to put these tasks under a task folder. Essentially, inside task scheduler, add a new folder and add multiple tasks underneath the folder. From UI there is an option to create a folder but not sure about command reference Thanks in advance 回答1: few trials and solved the problem; the key is using "\" in the task name. Sample schtask.exe command line, schtasks

Windows Server 2008 and jstatd as a service

戏子无情 提交于 2019-12-05 10:13:57
I have a JBoss server installed as a service on Windows Server 2008 with Local System as the Log On user. I want to be able to run visualgc on the JBoss server, and prior to Server 2008 I was able to directly connect to the PID (i.e. visualgc [PID]). Based on what I've read, my only solution in Server 2008 is to install jstatd as a service using the same credentials in order to run visualgc remotely (i.e. visualgc [PID]@localhost:1099). So, I got jstatd running as a service under the Local System account (granted AllPermissions in policy file and set the java.io.tmpdir since it had problems

This client is too old to work with working copy

走远了吗. 提交于 2019-12-05 09:28:28
问题 Everywhere I go on google I get the same answer to this problem but it is the wrong answer for me. Originally I installed Subversion 1.5.6 for windows (i run Windows Server 2008) on my server and i made a repository for a project. Then I used a Tortoise client version 1.6.X on my laptop to update the project. Everything was hunky-dory until I tried to use a post-commit hook script (i am updating folders in wwwroot on commit to reflect changes on a web page). I got a message to the effect of

how to redirect from http to https in asp.net C# and make it as default version for the website

大憨熊 提交于 2019-12-05 08:47:05
how to redirect from http to https in asp.net c# i have installed https certificate now i want to make https as default version for my website iam using windows server 2008 R2 asp.net C# 4.0 Are you looking for something like this:- if (!Request.IsLocal && !Request.IsSecureConnection) { string sUrl = Request.Url.ToString().Replace("http:", "https:"); Response.Redirect(sUrl); } Also check this related forum . From the above link:- You can install URL Rewrite Module , create a redirect rule and put it to your web.config file <rule name="http to https" stopProcessing="true"> <match url=".*" />

How can I programmatically check if a server feature is installed in Windows Server 2008?

元气小坏坏 提交于 2019-12-05 05:32:45
Specifically, I'm working with an application that only runs on Server 2008 if the "Desktop Experience" feature is installed, and I'd like to have that application's installer verify it's there. The only way I'm aware of currently is to run ServerManagerCmd -query and parse the output; I'd prefer something more lightweight (like checking a registry key). This is a code snippet of what I use to do it at runtime. public static bool isServerFeatureInstalled(Win32_ServerFeature_ID id) { bool idFound = false; ConnectionOptions connectionOptions = new ConnectionOptions(); ManagementScope