http://baodad.posterous.com/step-through-vbscript-debugging Technorati Tags: vbscript
VBScript Array
Pretty neat script I wrote that allowing preserving an array by cloning it. Function AddToArray(ArrayToClone, ValueToAdd) Dim a, tempArray On Error Resume Next ReDim tempArray(UBound(ArrayToClone) + 1) If Err.Number…
Sharepoint Solution Installer
http://www.codeplex.com/sharepointinstaller Technorati Tags: sharepoint,wss
Quickly Install WSP
stsadm -o addsolution -filename helpdesk.wsp stsadm -o deploysolution -name helpdesk.wsp -allowgacdeployment -immediate stsadm -o execadmsvcjobs Technorati Tags: sharepoint,wss
Self Signing SSL into IIS
I’ve done this a million times, I just found it useful to publish it for easy reference C:Program FilesIIS ResourcesSelfSSL>selfssl /T /N:CN=www.tempuri.org /K:1 024 /V:5000 /S:232294796 /P:443 /T: is to make it…
Getting Crystal Reports XI Release 2 to install
I was facing some issues getting Crystal Reports XI Release 2 to install. The installer was complaining that .NET 1.0 or 1.1 should be installed. This was kind of a confusing…
Email Resources
Email Reputation Search http://sendmail.com/sm/resources/tools/ip_reputation/ https://www.senderscore.org/ Blacklist Lookup https://www.senderscore.org/blacklistlookup/ Smart Network Data Service https://postmaster.live.com/snds/index.aspx Technorati Tags: email
Hotmail Sending Woes
Here are some great articles on the subject http://www.webforefront.com/archives/2007/11/getting_through.html http://windowslivehelp.com/community/p/46833/194297.aspx http://www.iis-aid.com/articles/iis_aid_news/are_hotmail_cutting_their_own_throat?page=4 2rbdj4ibc9 Technorati Tags: email,hotmail
URL Rewrites in WCF
I had posted an entry to StackOverflow earlier today. But I was able to resolve before I got an answer. When handling URL rewrites in WCF, it’s important to include the trailing…
Login to IMAP Server with puTTY
Create a connection to an IMAP server using the hostname and port 143 ? login username password To see a list of all the mailboxes on the server we use the list…