How to disable WebDAV for IIS 5.0

posted in: Tech | 0

http://support.microsoft.com/default.aspx?scid=kb;en-us;241520 To completely disable WebDAV including the PUT and DELETE requests, make the following changes in the registry. 1. Â Start Registry Editor (Regedt32.exe). 2. Â Locate and click the following key in the registry:  Â  Â  Â  Â  Â  Â  Â  HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W3SVC\Parameters 3. Â On the Edit menu, click Add Value, … Continued

.htaccess Info

posted in: Tech | 0

.htaccess Tutorial http://www.freewebmasterhelp.com/tutorials/htaccess/ htaccess Cheatsheet http://www.thejackol.com/htaccess-cheatsheet/ .htaccess file generator http://cooletips.de/htaccess/ .htaccess tips and tricks http://corz.org/serv/tricks/htaccess.php

How to disable PCT 1.0, SSL 2.0, SSL 3.0, or TLS 1.0 in Internet Information Services

posted in: Tech | 0

“http://support.microsoft.com/default.aspx?scid=kb;en-us;187498 This information is stored in the following registry key: HKey_Local_Machine\System\CurrentControlSet\Control\SecurityProviders \SCHANNEL\Protocols Typically, this key contains the following subkeys: * PCT 1.0 * SSL 2.0 * SSL 3.0 * TLS 1.0 Each key holds information about the protocol for the … Continued

SSL offloading for JBOSS and Tomcat servers.

posted in: Tech | 0

SSL offloading for JBOSS and Tomcat servers. Many customers who run ZXTM in front of a J2EE application server, like JBoss or Tomcat, would like to use the high performance SSL processing of ZXTM but still need their application to … Continued

VISIO

posted in: Tech | 0

VISIO Information site: http://visio.mvps.org/ VISIO Stencils: http://visio.mvps.org/3rdparty.htm

JAVA Code Signing

posted in: Tech | 0

“How to Sign Applets Using RSA-Signed Certificates” http://java.sun.com/j2se/1.4.2/docs/guide/plugin/developer_guide/rsa_signing.html “Signed Applet using JDK Plugin” http://personal.vsnl.com/sureshms/javasign1.html “Java Applet Signing Guide” http://www.brendonwilson.com/resources/projects/signed-java/JavaAppletSigningGuide.doc  

MS KB270008

posted in: Tech | 0

Cannot Access CD-ROM and “Code 31” Error Message in Device Manager After You Remove Adaptec Easy CD Creator from Your Computer http://support.microsoft.com/kb/270008

MS KB302361

posted in: Tech | 0

Printers That Use Ports That Do Not Begin With COM, LPT, or USB Are Not Redirected in a Remote Desktop or Terminal Services Session http://support.microsoft.com/kb/302361

EXEC SQL from VARIABLE

posted in: Tech | 0

  declare @strSQL nvarchar(2000) declare @cnt int SET @strSQL = ‘SELECT @cnt = count(*) FROM table1 WHERE field1 = 1’ Exec sp_sqlexec @strSQL, N’@cnt int ouput’, @cnt out select @cnt as TestCount or declare @strSQL varchar(500) , @cnt int create … Continued

Rename DB Files

posted in: Tech | 0

  To rename the logical file name of the pubs data file to pubs_data. ALTER DATABASE pubs MODIFY FILE (NAME = pubs, NEWNAME = pubs_data)