January 2007 - Posts

Supplemental documentation for Office SharePoint Server

Microsoft has released some great Visio documents covering a ton of SharePoint 2007 topics. These are poster-sized documents that cover everything from overviews of the various technologies used in a SharePoint 2007 deployment to flowcharts breaking Read More

with 0 Comments

IPv6 Protocol Vulnerabilities Presentation

For any interested in security topics here is a good presentation over IPv6 security. The talk discusses some of the known vulnerabilities in the new version of IP and highlights the THC-IPV6 Attack Toolkit which assists in creating attacks on the Read More

with 0 Comments

Maintaining up to date Web Reference proxy classes across projects

The other day I ran into a situation that I'm sure is pretty common these days. How do you keep .NET XML proxy classes up to date for web references across projects in a team development environment? My situation was even worse because the Read More

with 1 Comments

Determine SQL Server Version and SP level

I always forget this so just posting to remind myself later. :) SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition') Also the this command will get a the basics. SELECT @@VERSION Sources: Read More

with 0 Comments