<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.1" -->
<rss version="0.92">
<channel>
	<title>Gazeek.Com</title>
	<link>http://gazeek.com</link>
	<description>Geeks Blog .. Cos Others Just Dont Understand</description>
	<lastBuildDate>Thu, 08 Apr 2010 03:12:40 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>vBulletin To IP.Board &#8211; A Short Journey</title>
		<description><![CDATA[Cheyne Wallace is a Sydney based Monitoring / Platform Engineer and  Availability Manager – http://www.cheynewallace.com
http://www.soundpunk.com is the SMF site mentioned in this article to be converted to IPB
A long time SMF user , iv been growing a community based on an Simple Machines Forum for many years, and I have to say, its been [...]]]></description>
		<link>http://gazeek.com/articles/vbulletin-to-ip-board-a-short-journey/</link>
			</item>
	<item>
		<title>Rotating URL Script &#8211; Dashboard Display</title>
		<description><![CDATA[Iv been looking for a tool that will display web pages for a period of time and then cycle through to the next page,  performing a loop for usage on large LCD TV screen at work,  this is to be used to display IT Service performance information and status reports.
I was unable to find one [...]]]></description>
		<link>http://gazeek.com/coding/rotating-url-script-dashboard-display/</link>
			</item>
	<item>
		<title>Taskkill &#8211; Kill All Process&#8217;s Of A Certain Name</title>
		<description><![CDATA[So you may have run something thats spawned a whole bunch of processes,  iexplore.exe  or cscript.exe ,  you need to kill them all and fast.   Heres how

1
taskkill /F /IM iexplore.exe


]]></description>
		<link>http://gazeek.com/tips-and-tricks/taskkill-kill-all-processs-of-a-certain-name/</link>
			</item>
	<item>
		<title>Useful Windows Run Commands</title>
		<description><![CDATA[A whole bunch of very useful Windows commands



To Access…
Run Command


Accessibility Controls
access.cpl


Accessibility Wizard
accwiz


Add Hardware Wizard
hdwwiz.cpl


Add/Remove Programs
appwiz.cpl


Administrative Tools
control admintools


Adobe Acrobat (if installed)
acrobat


Adobe Designer (if installed)
formdesigner


Adobe Distiller (if installed)
acrodist


Adobe ImageReady (if installed)
imageready


Adobe Photoshop (if installed)
photoshop


Automatic Updates
wuaucpl.cpl


Bluetooth Transfer Wizard
fsquirt


Calculator
calc


Certificate Manager
certmgr.msc


Character Map
charmap


Check Disk Utility
chkdsk


Clipboard Viewer
clipbrd


Command Prompt
cmd


Component Services
dcomcnfg


Computer Management
compmgmt.msc


Control Panel
control


Date and Time Properties
timedate.cpl


DDE Shares
ddeshare


Device Manager
devmgmt.msc


Direct X Control Panel (if installed)*
directx.cpl


Direct X [...]]]></description>
		<link>http://gazeek.com/tips-and-tricks/useful-windows-run-commands/</link>
			</item>
	<item>
		<title>Task Scheduler &#8211; The following error was reported: 2147944309.</title>
		<description><![CDATA[
This common task scheduler message is cryptic, and means nothing without some digging,  you can see below how we find the true answer to what it means,  but the short answer is:

Account Is Locked Out

Why?
0n2147944309 = 0x80070775
Facility: 8007 = Win32 (it&#8217;s a &#8220;Win32&#8243; status code)
Status: 0x775 = 0n1909
Q:\&#62;net helpmsg 1909
The referenced account is currently locked [...]]]></description>
		<link>http://gazeek.com/tips-and-tricks/task-scheduler-the-following-error-was-reported-2147944309/</link>
			</item>
	<item>
		<title>T-SQL Setting Date Format</title>
		<description><![CDATA[Occasionally you need to run a DATEDIFF or DATEADD against some dates that are in a reverse format,  ie Day:Month:Year instead of Month:Day:Year,  theres a simple way to set this in your query without having to string handle it all, using the SET DATEFORMAT parameter.

1
2
SET DATEFORMAT dmy
SELECT DATEDIFF&#40;MINUTE,'29-01-2010 09:13:18','29-01-2010 09:18:18'&#41;

]]></description>
		<link>http://gazeek.com/coding/t-sql-setting-date-format/</link>
			</item>
	<item>
		<title>Windows Task Scheduler &#8211; Corrupt Image Error Fix</title>
		<description><![CDATA[For some reason now with Vista and Windows Server 2008 when ever you seem to create a scheduled task, but close it before saving it, you get a &#8220;Corrupt Image&#8221; error that will not go away unless you remove the &#8220;Corrupt Image&#8221; from the registry.
Heres how to fix it

Open The Registry (Start &#62; Run &#62; [...]]]></description>
		<link>http://gazeek.com/tips-and-tricks/windows-task-scheduler-corrupt-image-error-fix/</link>
			</item>
	<item>
		<title>Copy your servers PHP.INI</title>
		<description><![CDATA[Occasionally you may need to override your hosts or servers PHP.INI config file.  If you do, you&#8217;ll want a copy of the original PHP.INI as a basis for your modifications.
You can make a copy of it to your new directory by running a PHP script with the following

1
&#60; ?php system&#40;&#34;cp /usr/local/php5/lib/php.ini /home/your-new-path/php.ini&#34;&#41;; ?&#62;

]]></description>
		<link>http://gazeek.com/coding/copy-your-servers-php-ini/</link>
			</item>
	<item>
		<title>Piracy and R18+ Games</title>
		<description><![CDATA[So another game has been banned from Australia (Aliens vs Predator), and this time the developers are refusing to censor the content.
And I don’t blame them.
Why spend years developing and testing a game, finally deeming it ready for production only to have some narrow minded Government on the opposite side of the world tell you [...]]]></description>
		<link>http://gazeek.com/articles/piracy-and-r18-games/</link>
			</item>
	<item>
		<title>Ping Host From VB.Net</title>
		<description><![CDATA[
1
2
3
4
5
6
7
8
9
10
11
12
13
14
' --- ping the ip adress in the string s_ipaddr, and get
'     the response time in the int32 n_response

&#160;
Imports system.net.networkinformation
Dim ping As New System.Net.NetworkInformation.Ping
Dim reply As System.Net.NetworkInformation.PingReply
reply = ping.Send(s_ipaddr)
If reply.Status = IPStatus.Success Then
' --- handle reachable here
MsgBox(&#34;ping time &#34; &#38;amp; reply.RoundtripTime)
Else
' --- handle non reachable here
End If

]]></description>
		<link>http://gazeek.com/coding/ping-host-from-vb-net/</link>
			</item>
</channel>
</rss>
