Uncategorized

Change SMS Cache Size

This script will change the sms cache size. Usage Example: cscript change-sms-cache.vbs 1000 d: Note: size is in MB (more…)

17 years ago

Left brain/right brain optical illusion

DelicateGenius posted an interesting optical illusion in which a dancer is turning either right or left. What do you think!!!…

17 years ago

Extents and the Mystery

A post I posted here in the VMware forums and I'm waiting for some reasonable explination on why everyone is…

17 years ago

All collections for specific machine

A bit of code from MyITForum.com with a report that lists all collections for a specific machine. http://www.myitforum.com/forums/All_Collections_for_a_specific_computer/m_163312/tm.htm (more…)

17 years ago

List all databases and their files on MS SQL

A quick way to check and see all databases for your MS SQL server is to run the following command…

17 years ago

error code is 80070005

I'm sure you've seen this error in your travels, here's how to fix it: MSI: Setup failed due to unexpected…

17 years ago

Response Buffer Limit Exceeded

Ever get this error: Response object error 'ASP 0251 : 80004005' Response Buffer Limit Exceeded Here's the fix: (more…)

17 years ago

Ping a list of machines from txt

This vbscript pings machines from a text file: change the two variables for your input and output txt files: strPATHout…

17 years ago

WinZip count with version

SELECT ProductName0 AS Product, VersionMajor0 AS Version, COUNT(*) AS Count FROM dbo.v_GS_INSTALLED_SOFTWARE GROUP BY ProductName0, VersionMajor0 HAVING (ProductName0 = 'winzip')

17 years ago