Menu
  • HOME
  • TAGS

Maximize Microsoft Web and Database with 2 servers

sql-server-2008,iis,server,windows2012,mssqlft

MS SQL Standard Failover option will not work on the MS Windows Server Standard version, only the enterprise and datacenter editions can support the failover. Ref: http://technet.microsoft.com/en-us/library/cc770625%28v=ws.10%29.aspx

What are contrindications or threats of running own application from C:\Windows

c#,.net,windows2012

You should just give up and change the path to "something more neutral". I.e. a proper installation directory in the Program Files or Program Files (x86) directory (as appropriate). Also, it is not clear from your question why you want to retrieve the full file path of the process, but...

Visual Source Safe 8 on Windows 2012

visual-sourcesafe,windows2012

In the weeks since asking have deploying VSS2005 (with the runtime available on the server) onto Windows 2012 enterprise. The applications install with a warning about versions but they run fine; including the admin tools for users and checking the consistency of the databases. The end user side all works...

Default Document not trying all files in iis 8.5

asp.net,iis,windows2012

Try removing/disabling the old URL rewrite module? (temporarily) If you are requiring authentication, make sure the login page exists. (other suggestions copied from above, which I have included, in case someone else reads this question) Check for any routing in the source-code. Check any special modules or handlers, which...

How to create a EXCEPT Rewrite Rule at IIS

web-services,iis,ssl,url-rewriting,windows2012

One way is to add the rule before the "global redirect" and make sure to use stopProcessing="true" so that the next rule is not executed, for example the following rule will allow HTTP only on requests to the segment "foo/", everything else will redirect to SSL: <rewrite> <rules> <rule name="Allow...

SCOM Monitor not reporting

vbscript,windows2012,scom

As per MOMScriptAPI.ReturnItems Method: The ReturnItems method submits objects to Operations Manager. For this method to be successful, objects must have been previously added to the in-memory array with MOMScriptAPI.AddItem. Example: Call oBag.AddValue("Service", "Running") Call oBag.AddValue("Process", "Running") oAPI.LogScriptEvent "Voxware Monitor", 411, 0, "Application and Services are running" '''Call oAPI.Return(oBag) oAPI.AddItem...

socket opening on WIndows 2012 extremely slow

sockets,vb6,windows2012

I ended up finding the answer to this after some extensive digging. Starting in Windows Server 2012, Microsoft has enabled an extension of TCP called Explicit Congestion Notification (ECN). This allows end-to-end notification of network congestion with the loss of packets. The way this is enabled on a TCP packet...

vb .net application stopped working event name clr20r3 [duplicate]

vb.net,.net-framework-version,windows2012

Are you sure the versions of .Net are the same on both the development workstation and the server? You may very well have compiled it for a version that is beyond what you have installed on the Windows 2012 server. (or vice-versa)

Access Denied Error When i try to add New Virtual Directory using Console Application

c#,security,iis-8.5,windows2012

This Solution worked for me ==> http://blogs.msdn.com/b/jpsanders/archive/2009/05/13/iis-7-adsi-error-system-runtime-interopservices-comexception-0x80005000-unknown-error-0x80005000.aspx?CommentPosted=true#commentmessage .. I also have to do this to resolve Access denied error ==> Run all Administrator in admin approval mode ==> Disabled .....

Script to get timestamp of when file was deleted

powershell,last-modified,windows2012

If you want recorded when a specific file was deleted, you need a FileSystemWatcher that monitors the file for deletion and logs the information someplace you can retrieve it later (the eventlog for instance). Create a new event source (requires admin privileges): New-EventLog -Source 'FileMonitor' -LogName 'Application' Then create the...