windows-server

Windows Server 2012 has incorrect decimal digits for currency on es-CL culture

夙愿已清 提交于 2019-12-11 18:28:18
问题 Windows Server 2012 seems to have several issues regarding CultureInfo. The information about decimal digits for currencies in culture es-CL (that's Chile) is incorrect, it says 2 digits but here in Chile we don't use decimals in our currency. Do anyone knows about a patch or maybe a way to override this setting? Modifying the Windows Locale options does not work for me, because I need this working on a MVC 5 site. Any help, will be greatly appreciated. PS: I never had this trouble with my

How to Forcefully Redirect HTTP 400 Error in Windows Server HTTP.SYS or IIS levels

我们两清 提交于 2019-12-11 13:09:50
问题 I want to know How to Forcefully Redirect the Error Page for HTTP 400 Bad Request Error in Windows Server HTTP.SYS or IIS levels ,As per my knowledge IIS supporting greater than 400 only,, Is there any Core level way is there for HTTP 400. Bad Request Error Redirection?. or getting some call back from http.sys kernel if 400 error occurs? Update Notes: -- As per TechNet Art, cannot customize the following HTTP errors: 400, 403.9, 411, 414, 500, 500.11, 500.14, 500.15, 501, 503, and 505 in IIS

MySQL Startup Error - Root element missing

巧了我就是萌 提交于 2019-12-11 00:42:19
问题 I have had MySQL installed for about 2 months on Windows Server 2003 R2. On start up we get presented with an error that says "High Severity Error - root element missing" followed by another high severity error that displays "Log file path must be defined before calling the WriteToLog method". Any help with this would be appreciated! 回答1: Try to delete the file %Appdata%\Oracle\MySQL Notifier\settings.config 回答2: I tried deleting settings.config file and other files yet it did not fix the

Boot EBS volume from Bamboo instance

本小妞迷上赌 提交于 2019-12-10 21:16:17
问题 I have an elastic instance that I have configured from within Bamboo to start on Amazon AWS EC2. I have created a volume from a snapshot which contains the OS (Windows Server 2008 R2) with various programs installed. I am able to configure Bamboo to make the volume available as an extra drive using these instructions, but I would like to actually boot this volume. I think this is similar to making a root EBS volume from within AWS, but I am not sure how to do this from within Bamboo. How do I

Is it possible to get SQL Server to log into an SFTP and upload a file just by using T-SQL commands, no SSIS?

自闭症网瘾萝莉.ら 提交于 2019-12-10 09:22:05
问题 I have an SSIS package which logs into my client's SFTP site and uploads a file using commands sent to WinSCP. This package fails quite often and is difficult to work with. Visual Studio crashes so frequently that my team refuses to use it any more. We are migrating all automated tasks to Stored Procedures and SQL Agent Jobs, as they work a lot better than SSIS does. However, this leaves us with no good solution for automating FTP uploads of report files produced on SQL Server. I have been

Cant load a site in IIS8 on 32bit pool (WinSrv 2012 and Sharepoint 2013)

醉酒当歌 提交于 2019-12-09 19:39:51
问题 We have a WCF service that interacts with TFS 2010, we are planning to migrate to TFS 2012 so we installed a server to test it, the server have the following installed: Windows Server 2012 SQL Server 2012 SharePoint 2013 TFS 2012 I created a site for my service and tried to running, i was greeted with the following message: Could not load file or assembly 'Microsoft.TeamFoundation.WorkItemTracking.Client.DataStoreLoader' or one of its dependencies. An attempt was made to load a program with

How do you set up a Python WSGI server under IIS?

断了今生、忘了曾经 提交于 2019-12-09 14:03:31
问题 I work in a Windows environment and would prefer to deploy code to IIS. At the same time I would like to code in Python. Having read that IIS can run fastCGI application, I went to the IIS site where it describes in detail how to get PHP up and running but not much about anything else. Does anyone have experience getting a Python framework running under IIS using something other that plain old CGI? If so can you explain to direct me to some instructions on setting this up? 回答1: There shouldn

IIS Reverse Proxy to Different Server

こ雲淡風輕ζ 提交于 2019-12-08 09:54:47
问题 I am trying to figure out if its possible to do a Reverse Proxy in IIS that actually hit a different web server end point. I have used it to traverse Ports on the same machine, but never to a different machine. The purpose of this is that I am writing a Javascript application that needs to connect to data on a different server and I am getting Same Origin errors. Note: Unfortunately, changing the remote server and service to accept JSONP or CORS is not an option. Here is the config for Port

How to get/set/update registry value through group policy cmdlet of Windows PowerShell?

♀尐吖头ヾ 提交于 2019-12-07 18:43:42
问题 I have configured the EventForwarding Manually but I was wondeing If I could do it programmatically and I came across the Group Policy Cmdlets which seems to be the solution. Here is what I am trying to configure manually in the image below. When I run the Get-GPO -all cmdlet I don't see any GPOs related to Event Forwarding. However when I ran the Get-GPResultantSetOfPolicy with the specified path of an XML file, I got to see my configuration of the Subscription manager of the Event

Reading MSMQ message count with ruby

≡放荡痞女 提交于 2019-12-06 15:34:23
I've got a problem querying the message count from the remote msmq queue. This is my code: def get_message_count mq_management = WIN32OLE.new('MSMQ.MSMQManagement') mq_management.Init('xxx.yyy.zz.aa', nil,'direct=tcp:xxx.yyy.zz.aa\private$\inbox') message_count = mq_management.MessageCount end xxx.yyy.zz.aa is the IP Address of the remote computer. This method actually works as a charm, BUT: if the queue is empty, then I keep getting this error after certain amount of time: `method_missing': Init (WIN32OLERuntimeError) OLE error code:C00E0004 in MSMQManagement The queue is not open or may not