Tuesday, February 9, 2010
Friday, December 11, 2009
Thursday, December 3, 2009
Performance Testing For SQL Server - Free
Tuesday, November 24, 2009
Save The Day With NTFSRESIZE
If you have an NTFS partition you’d like to shrink or grow, then ‘ntfsresize’ can help. I won’t write a how to – there’s plenty out there, including the man page.
http://en.wikipedia.org/wiki/Ntfsresize
It’s on the default ubuntu bootable CD – download that and you have everything you need, including the the unix style fdisk for adjusting the partition table after you’ve resized the file system.
Monday, October 12, 2009
Don't Get Pounded by the #
It’s the # in your username! : : http://blogs.msdn.com/astebner/archive/2009/03/06/9463700.aspx
Event Type: Error
Event Source: MsiInstaller
Event Category: None
Event ID: 11406
Date: 10/12/2009
Time: 1:32:38 PM
User: BKST\#aanthony
Computer: DEMANDDEVSRVR
Description:
Product: Microsoft .NET Framework 3.5 SP1 -- Error 1406.Could not write value InstalledBy to key \SOFTWARE\Microsoft\Updates\Microsoft .NET Framework 3.5 SP1\KB953595. System error . Verify that you have sufficient access to that key, or contact your support personnel.
For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
Data:
0000: 7b 43 45 32 43 44 44 36 {CE2CDD6
0008: 32 2d 30 31 32 34 2d 33 2-0124-3
0010: 36 43 41 2d 38 34 44 33 6CA-84D3
0018: 2d 39 46 34 44 43 46 35 -9F4DCF5
0020: 43 35 42 44 39 7d C5BD9}
Tuesday, October 6, 2009
Tomorrow
set yy=%DATE:~10,4%
set mm=%DATE:~4,2%
set dd=%DATE:~7,2%
set /a "yy=10000%yy% %%10000,mm=100%mm% %% 100,dd=100%dd% %% 100"
if %yy% LSS 100 set /a yy+=2000 &rem Adds 2000 to two digit years
set /a JD=dd-32075+1461*(yy+4800+(mm-14)/12)/4+367*(mm-2-(mm-14)/12*12)/12-3*((yy+4900+(mm-14)/12)/100)/4
set /a JD=%JD%+1
set /a L= %JD%+68569, N= 4*L/146097, L= L-(146097*N+3)/4, I= 4000*(L+1)/1461001
set /a L= L-1461*I/4+31, J= 80*L/2447, K= L-2447*J/80, L= J/11
set /a J= J+2-12*L, I= 100*(N-49)+I+L
set /a YYYY= I, MM=100+J, DD=100+K
set MM=%MM:~-2%
set DD=%DD:~-2%
set TOMORROW=%MM%/%DD%/%YYYY%
echo %TOMORROW%



