Top Best Free Android Apps – Quick Reference

Home and Office Office Suite Documents To Go | Google Docs | Kingsoft Office (English) PDF Reader Adobe Reader E-Book Reader Moon+ Reader Calendar Jorte | Calendar Pad Timer and Alarm Clock StopWatch & Timer | AlarmDroid | ZDclock Notepad and Notebook Evernote | Springpad | Catch Notes Reminder / To-do List Astrid Task /Todo List | ColorNote Notepad Notes Personal Finance Financisto | Expense Manager | Personal Finance Dictionary and Thesaurus Merriam-Webster Dictionary | Arcus Dictionary | Dictionary.com…

Read More

How to Setup Firefox to use Windows Authentication

  If you have an ASP.NET application that is behind an IIS Web Server and it configured to use Windows authentication or what they called trusted login. Typically you can download a plugin for Firefox and it will help you perform windows authentication automatically. What if you are not allowed install any plugin or don’t want to use any plugin. When you try to connect to a ASP.NET application via Windows authentication it will display they following error message:…

Read More

How to extract files from a .msi file using the Windows command line

Every once in a while I need to extract the content of a .msi file in order to customize a deployment for a particular network environment. Sometimes initializing the .msi installer will temporarily extract the files into C:\Documents and Settings\\Local Settings\Temp, but those files are removed once the installer exits. To extract files from a .msi file at the command line, type: msiexec /a PathToMSIFile /qb TARGETDIR=DirectoryToExtractTo For example, to extract files from f:\zenworks\zfdagent.msi into c:\zfd701 you would type:…

Read More

Determing SQL Server Table Size within a Database

A common problem that I have recently encountered was trying to identity which table within a database was the biggest one (in record size), therefore, taking up the most physical storage space. I found and modify this store procedure to work with MSSQL 2000, MSSQL 2005, and MSSQL 2008  that will perform all needed data calls and will return a result set with the data on all tables. T-SQL Code:   USE DWDATA GO CREATE PROCEDURE GetAllTableSizes AS /* Obtains spaced used data for ALL user tables in the database */…

Read More