<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Remote Administration For Windows &#187; Windows 2000</title>
	<atom:link href="http://www.intelliadmin.com/index.php/category/windows-2000/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.intelliadmin.com</link>
	<description>Windows Network Administration Software</description>
	<lastBuildDate>Wed, 08 Feb 2012 13:36:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Cron Service for Windows</title>
		<link>http://www.intelliadmin.com/index.php/2011/11/cron-service-for-windows/</link>
		<comments>http://www.intelliadmin.com/index.php/2011/11/cron-service-for-windows/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 17:49:48 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/?p=4392</guid>
		<description><![CDATA[If you spend any amount of time working with Unix, you will come across Cron and the CronTab file. What is it? Cron allows you to schedule programs to run at specified intervals, like every Sunday at 1AM. Now I can already hear it&#8230;&#8221;Steve, that is what the task scheduler is for in Windows&#8221; While [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.intelliadmin.com/index.php/2011/11/cron-service-for-windows/" title="Permanent link to Cron Service for Windows"><img class="post_image alignleft remove_bottom_margin" src="http://www.intelliadmin.com/icons/Utility.jpg" width="66" height="73" alt="Post image for Cron Service for Windows" /></a>
</p><p>If you spend any amount of time working with Unix, you will come across Cron and the CronTab file.</p>
<p>What is it? </p>
<p>Cron allows you to schedule programs to run at specified intervals, like every Sunday at 1AM.</p>
<p><img src="http://www.intelliadmin.com/images/Alarm%20Clock.jpg" alt="Alarm Clock"/></p>
<p>Now I can already hear it&#8230;&#8221;Steve, that is what the task scheduler is for in Windows&#8221;</p>
<p>While it is true you can schedule tasks in Windows, one big issue with task scheduler is how do you transfer scheduled tasks from one computer to another?</p>
<p>You could copy the folder c:\windows\tasks, but this is totally unsupported and it does not always work.</p>
<p>That is the beauty of Cron. Every bit of scheduling info is contained within the Crontab file. </p>
<p>If you want a group of servers to have the same scheduled jobs, you just need to sync this file. No registry hacks, no tricks. Just one file.</p>
<p>Not only that, since it is just a simple text file you can easily schedule jobs from PHP, PowerShell or VBScript&#8230;without any ActiveX or hooks into Windows. You just need to modify a simple text file.</p>
<p>There are a few Windows implementations out there&#8230;but most of them are quite old. We wanted something that would work on 2000 through 2008 x64 &#8211; so we built our own <img src='http://www.intelliadmin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>To use it, download the setup file from our downloads page:</p>
<p><a href="http://www.intelliadmin.com/index.php/downloads/">http://www.intelliadmin.com/index.php/downloads/</a></p>
<p>The install does not create any icons, or shortcuts. It installs all the application files into <code>c:\program files\IntelliAdmin\Cron</code> by default, and automatically starts the cron service (Named icronsvr).</p>
<p><img src="http://www.intelliadmin.com/images/IntelliAdmin%20Cron%20Service.jpg" alt="IntelliAdmin Cron Service"/></p>
<p>There are two files for configuration, they are both in the same folder as the service.</p>
<p>The first to look at is the file config.cfg:<br />
<code><br />
[Configuration]<br />
status_enabled=true<br />
status_handler=<br />
path=<br />
</code></p>
<p>Here is what each option does:</p>
<p><b>status_enabled (true/false)</b> &#8211; If set to true, each time a program is executed it is logged to a file named status.log in the same folder as the service</p>
<p><b>status_handler</b> &#8211; If set to point to an executable file, it is executed each time a process is run. The first argument is the status text shown in status.log. (Example usage of this would be to send an email each time a process is executed by cron..using a bat file and a command like tool <a href="http://www.blat.net/">blat</a>)</p>
<p><b>path</b> &#8211; An alternative path for the crontab file. By default the service looks for the crontab in the same folder as the service. Setting this tells the service to look at the specified folder for the crontab file</p>
<p>The next is the actual crontab file. It roughly follows the same format as the <a href="http://en.wikipedia.org/wiki/Cron">Unix crontab</a></p>
<p>The file is formatted in this way:</p>
<p>[M] [H] [D] [M] [DOW] [Process Name] [Process Arguments]</p>
<p>M &#8211; The minute that the process should be executed (0-59)<br />
H &#8211; The hour that the process should be executed (0-23)<br />
D &#8211; The day that the process should be executed (1-31)<br />
M &#8211; The month that the process should be executed (1-12)<br />
DOW &#8211; The day of the week that the process should be executed (0-6 Sunday = 0, Monday = 1, Etc)</p>
<p><b>Note:</b> <i>Our format does not support names such as THU, or JAN&#8230;only numerical values</i></p>
<p>Each section can:</p>
<p>-Have a range of values like this: 12-24 (All items from 12 to 24)<br />
-Have a list of values like this: 12,13,14,15<br />
-Include all possible values like this: *<br />
-Skip values using the / like this: 0-59/5 (This would only include 0,5,10,15,20,etc)</p>
<p>Lets put it all together. If we wanted a process to run every 5 minutes we would create a line like this in our crontab file:</p>
<p><code>*/5 * * * * c:\process.bat</code></p>
<p>See how the skip value works? We specified the * for the minute section (All minutes), and then told it to skip 5. This means it will run at 0, 5, 10, 15, 20, etc.</p>
<p>If you wanted to run a process every Sunday at 1 pm:</p>
<p><code>00 01 * * 00 c:\process.bat</code></p>
<p>Or how about, only every Sunday from June to the end of the year:</p>
<p><code>00 01 * 06-12 00 c:\process.bat</code></p>
<p>At 15, and 30 minutes past every hour:</p>
<p><code>15,30 * * * * c:\process.bat</code></p>
<p>This might give you a clearer picture:</p>
<pre>
*     *     *   *    *     C:\SomeEXE.EXE ARG1 ARG2 ARG3
-     -     -   -    -
|     |     |   |    |
|     |     |   |    +----- day of week (0 - 6) (Sunday=0)
|     |     |   +------- month (1 - 12)
|     |     +--------- day of        month (1 - 31)
|     +----------- hour (0 - 23)
+------------- min (0 - 59)
</pre>
<p>It takes a little time to get used to the format, but once you do it is a breeze to work with.</p>
<p>A few things to think about when using this:</p>
<p>-Make sure you secure the crontab file by only allowing &#8216;System&#8217; and Administrator write access. Otherwise a standard user could simply alter the crontab file and start running stuff as &#8216;System&#8217;</p>
<p>-The programs are run in the context of a service. By default the user account is &#8216;System&#8217;, and for security reasons it does not have network share access. If you want to allow access to network shares you would have to go into the settings of the IntelliAdmin Cron Service, and have it login as a user with the appropriate rights.</p>
<p>-Since it is a service, make sure your program does not pop up forms or message boxes&#8230;otherwise they will just get stuck and you will never see them. Test&#8230;test&#8230;test before you deploy.</p>
<p>If you have any other features you would like to add to this little tool, let us know and we will see what we can do.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2011/11/cron-service-for-windows/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Remote Control 4.0 Released</title>
		<link>http://www.intelliadmin.com/index.php/2009/06/remote-control-40-released/</link>
		<comments>http://www.intelliadmin.com/index.php/2009/06/remote-control-40-released/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 06:35:17 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/blog/?p=789</guid>
		<description><![CDATA[This is a quick one &#8211; The final version of Remote Control 4.0 has been released. Current customers with an upgrade protection license should receive their email within 24 hours. If you did not, please send an email to support@intelliadmin.com and we will take care of you as soon as possible. Here are the screenshots: [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>This is a quick one &#8211; The final version of Remote Control 4.0 has been released. Current customers with an upgrade protection license should receive their email within 24 hours. If you did not, please send an email to <a href="mailto:support@intelliadmin.com">support@intelliadmin.com</a> and we will take care of you as soon as possible.</p>
<p>Here are the screenshots:<br />
<a href="http://www.intelliadmin.com/RemoteControl4_ScreenShots.htm">http://www.intelliadmin.com/RemoteControl4_ScreenShots.htm</a></p>
<p>And a link to the trial download:<br />
<a href="http://www.intelliadmin.com/setupex.exe" rel="nmlp">setupex.exe</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2009/06/remote-control-40-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remote Control 4.0 Beta</title>
		<link>http://www.intelliadmin.com/index.php/2009/05/remote-control-40-beta/</link>
		<comments>http://www.intelliadmin.com/index.php/2009/05/remote-control-40-beta/#comments</comments>
		<pubDate>Tue, 26 May 2009 23:58:56 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Beta]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/blog/?p=716</guid>
		<description><![CDATA[We have been working hard on the new version of IntelliAdmin Remote Control. Some things that will be in the new version: Screen scaling &#8211; The client will automatically shrink the view to fit the screen within the window. With huge resolutions, you no longer are forced to constantly scroll around Alpha Capture Disable &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>We have been working hard on the new version of IntelliAdmin Remote Control.</p>
<p>Some things that will be in the new version:</p>
<p><b>Screen scaling</b> &#8211; The client will automatically shrink the view to fit the screen within the window. With huge resolutions, you no longer are forced to constantly scroll around</p>
<p><b>Alpha Capture Disable</b> &#8211; Applications like Office 2007 need alpha capture turned on, or parts of their windows will not be sent back to the remote client. This was always turned on in 3.x. Once side effect of this setting is the mouse flickers with some video cards. Now you have the option to turn this off and keep the mouse flicker to a minimum &#8211; great if you are given the task of watching a user without them knowing.</p>
<p><b>Screen Shots</b> &#8211; You can easily save the current view in the client window to a JPG file. This is good for keeping a visual log of crash events, or activity of users.</p>
<p><b>Auto-Reconnect</b> &#8211; When a connection is lost, it will automatically attempt to re-establish the connection</p>
<p><b>Computer Lists</b> &#8211; We have loaded it up with options for getting lists of computers. You can get them from Windows Networking like you do right now, but in addition you can import them from an XML file, add them manually, or update them in real time from a http URL &#8211; this allows you to create a common computer list that all administrators can see and use.</p>
<p><b>Computer Search</b> &#8211; This is the big one. When talking with customers the biggest complaint is finding a single computer among 1000s. When remote control connects to a machine, it will pull username, computername, and operating system info. All of this is stored in a database. When you click on the find button in the client window, you are shown a full listing of computers:</p>
<p><img src="http://www.intelliadmin.com/images/IntelliAdmin%204%20Preview.jpg" alt="IntelliAdmin 4 Preview"/></p>
<p>When you start typing in the search box at the top it will narrow down your results immediately. So, if you get a call from a user you can simply start typing their username and their computer will be automatically filtered out &#8211; no more digging around for their IP address, or computer name.</p>
<p>Lots of time was spent to make sure this was efficient &#8211; we threw the client on an old XP machine and it was able to search 10,000 computer records in less than 1 second.</p>
<p>Everything about the &#8220;find computer&#8221; section was designed to reduce the time it takes to find and control a computer, and make you more productive.</p>
<p>Why am I teasing you with all of this? Because I want you to join our beta program. To join, simply follow this link:</p>
<p><!-- BEGIN: Constant Contact Text Link Email List Button --></p>
<div align="center">
<table width="200" border="0" cellpadding="0" cellspacing="0">
<tr>
<td nowrap width="100%"><a href="http://visitor.constantcontact.com/d.jsp?m=1102324226745&#038;p=oi"  target="_blank" style="font-family:Arial; font-size:13px; color:#000000;">Sign up for our Email Newsletter</a></td>
</tr>
</table>
</div>
<p>Make sure you check the 4.0 beta option.</p>
<p>The final release date will be June 27th. If you <a href="http://www.intelliadmin.com/RemoteControl3Purchase.asp">order Remote Control 3.2 right now</a> the upgrade protection option will allow you to get a free upgrade when it comes out &#8211; a good deal since this will give you close to 40% in savings</p>
<p>While we are at it. What do you want to see in 4.5? File Transfers, Chat, or what other wish do you have for the next version. Post in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2009/05/remote-control-40-beta/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Delete files securely</title>
		<link>http://www.intelliadmin.com/index.php/2009/05/delete-files-securely/</link>
		<comments>http://www.intelliadmin.com/index.php/2009/05/delete-files-securely/#comments</comments>
		<pubDate>Thu, 14 May 2009 03:38:02 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Sysinternals]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/blog/?p=651</guid>
		<description><![CDATA[Since 2000 every version of Windows uses object reuse protection. When you create a file, the space on the hard drive for that file will be zeroed out. Another way of looking at this is when a file is created, Windows will make it impossible to see what was there before. But what about right [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Since 2000 every version of Windows uses object reuse protection. When you create a file, the space on the hard drive for that file will be zeroed out.</p>
<p>Another way of looking at this is when a file is created, Windows will make it impossible to see what was there before.</p>
<p>But what about right after you delete a file? Nothing has been written to that space yet. What is on the physical hard drive? The entire file of course. Not good if the file is highly confidential.</p>
<p>What if you wanted to delete a file securely?</p>
<p>There are plenty of tools out there that can do this, and most of them cost quite a bit of money. But there is a free alternative.</p>
<p>It is called SDelete and it is from Microsoft:</p>
<p><a href="http://download.sysinternals.com/Files/SDelete.zip">http://download.sysinternals.com/Files/SDelete.zip</a></p>
<p>How does it work?</p>
<p>Simply download the program and run it from the command line. By default it will only complete 1 pass when erasing a file. I would suggest overriding that with a higher number &#8211; the higher the better, but it will be slower.</p>
<p>Lets delete a file with it, using 25 passes:<br />
<font style="font-family: Courier New, Courier, monospace; color: blue"><br />
sdelete.exe -p 25 FileToDelete.zip</font></p>
<p>This will securely delete FileToDelete.zip</p>
<p>SDelete implements the Department of Defense clearing and sanitizing standard DOD 5220.22-M. This will give you confidence that once deleted with this tool, your file is gone forever. Note that it does delete the file, but the file name is still recoverable from the file system (Make sure the file name itself does not have any revealing information).</p>
<p>The full list of possible commands for SDelete are:<br />
<font style="font-family: Courier New, Courier, monospace; color: blue"><br />
usage: sdelete [-p passes] [-s] [-q] <file or directory><br />
       sdelete [-p passes] [-z|-c] [drive letter]<br />
   -c         Zero free space (good for virtual disk optimization)<br />
   -p passes  Specifies number of overwrite passes (default is 1)<br />
   -q         Don&#8217;t print errors (Quiet)<br />
   -s         Recurse subdirectories<br />
   -z         Clean free space<br />
</font></p>
<p>It supports wildcards too. So if you wanted to securely delete an entire folder you can call it like this:<br />
<font style="font-family: Courier New, Courier, monospace; color: blue"><br />
C:\>sdelete c:\temp\*.*</p>
<p>SDelete &#8211; Secure Delete v1.51<br />
Copyright (C) 1999-2005 Mark Russinovich<br />
Sysinternals &#8211; www.sysinternals.com</p>
<p>SDelete is set for 1 pass.<br />
c:\temp\Eula.txt&#8230;deleted.<br />
c:\temp\Import.csv&#8230;deleted.<br />
c:\temp\readme.txt&#8230;deleted.<br />
c:\temp\sdelete.exe&#8230;deleted.<br />
c:\temp\VCdControlTool.exe&#8230;deleted.<br />
c:\temp\VCdRom.sys&#8230;deleted.<br />
</font></p>
<p>If you have files that need to remain secure, SDelete is a great way to make sure they are removed from your hard drive.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2009/05/delete-files-securely/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Write script results to the event log</title>
		<link>http://www.intelliadmin.com/index.php/2009/05/write-script-results-to-the-event-log/</link>
		<comments>http://www.intelliadmin.com/index.php/2009/05/write-script-results-to-the-event-log/#comments</comments>
		<pubDate>Tue, 12 May 2009 06:49:36 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/blog/?p=640</guid>
		<description><![CDATA[I have quite a few scripts that are run by task scheduler on my server.  One of the ways I track the results is by writing to a text file in a common share. After a while this can become a little ridiculous to follow. Recently I discovered that it is possible to create your [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I have quite a few scripts that are run by task scheduler on my server.  One of the ways I track the results is by writing to a text file in a common share. After a while this can become a little ridiculous to follow.</p>
<p>Recently I discovered that it is possible to create your own Application, or System events from a script that will show up in the Windows event viewer.</p>
<p>To create your own events, you need to use the &#8220;eventcreate&#8221; command line argument. This command line program is available in Windows XP, 2003, Vista, and Windows 7 &#8211; unfortunately not in Windows 2000.</p>
<p>How can you use it?</p>
<p>Let me take a simple example, and then I will walk you through writing an event to the log. In one of my scripts I have an xcopy that I check for errors:</p>
<p><font style="font-family: Courier New, Courier, monospace; color: blue"></p>
<p>@echo off</p>
<p>xcopy c:\temp c:\temp2 /y /i /c</p>
<p>if ERRORLEVEL 5 GOTO ERROR<br />
if ERRORLEVEL 4 GOTO ERROR<br />
if ERRORLEVEL 1 GOTO ERROR</p>
<p>REM SUCCESS</p>
<p>goto exit</p>
<p>:ERROR</p>
<p>REM FAILURE</p>
<p>:EXIT<br />
</font></p>
<p>The above script looks for the different error codes that XCOPY can return &#8211; right now we won&#8217;t concentrate on that. What we want to do is add our EventCreate command right around where we have our &#8220;REM FAILURE&#8221;</p>
<p>There are a few details we need to collect together before we can call our command. First we want to determine which event log we want to write.</p>
<p>For our example I want to pick the &#8220;Application&#8221; log</p>
<p>Then, we need to determine an event source. The event source specifies the text that will be shown as the source in the log. The trick is you need to pick something unique that won&#8217;t have a name conflict with Windows, or other scripts. This means don&#8217;t pick DNS, VSS, or W32Time &#8211; or any common windows service name. At the same time, no spaces, and keep it short.</p>
<p>I picked XCOPYRESLT</p>
<p>Next we need to pick an event type. Our choices are Information, Warning, or Error. In the case of my example, I am only going to report errors so the obvious pick is &#8220;Error&#8221;.</p>
<p>What else? Well an event ID is needed. This is an arbitrary number that you may pick to suite your own custom needs. 1000 sounds good to me.</p>
<p>And finally, a description. &#8220;Domain Controller XCOPY Failure&#8221; seems like an easy description.</p>
<p>Now, lets bring it all together at the command line:</p>
<p><font style="font-family: Courier New, Courier, monospace; color: blue">eventcreate /l Application /so XCOPYRESLT /t Error /id 1000 /d &#8220;Domain Controller XCOPY Failure&#8221;</font></p>
<p>One run at the prompt:</p>
<p><img src="http://www.intelliadmin.com/images/EventCreate%20XCOPY.jpg" alt="XCOPY Event Error"/></p>
<p>Now, if we take a peek at the event log:</p>
<p><img src="http://www.intelliadmin.com/images/Custom%20Event%20Log%20Entry.jpg" alt="Custom Event Log Entry"/></p>
<p>So there you go. Custom event log items right from your batch file. For more detailed information on the <b>eventcreate</b> command, visit <a href="http://technet.microsoft.com/en-us/library/bb490899.aspx">this section</a> on Microsoft Technet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2009/05/write-script-results-to-the-event-log/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unofficial Windows 2000 Daylight Saving Time Patch</title>
		<link>http://www.intelliadmin.com/index.php/2007/01/unofficial-windows-2000-daylight-saving-time-patch/</link>
		<comments>http://www.intelliadmin.com/index.php/2007/01/unofficial-windows-2000-daylight-saving-time-patch/#comments</comments>
		<pubDate>Thu, 11 Jan 2007 05:31:00 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2000]]></category>

		<guid isPermaLink="false">http://intelliadmin.wordpress.com/2007/01/11/unofficial-windows-2000-daylight-saving-time-patch/</guid>
		<description><![CDATA[We have updated our Network Administrator product &#8211; You can use it to deploy the patch, and verify it&#8217;s installation on machines across your network. Also we have updated the free patch More info about it hereUpdate 10/25/2009: We have updated our patch again. Both the patch, and Network Administrator have been updated with the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>We have updated our <a href="http://www.intelliadmin.com/NetworkAdministrator.htm">Network Administrator</a> product &#8211; You can use it to deploy the patch, and verify it&#8217;s installation on machines across your network. Also we have updated the free patch <a href="http://www.intelliadmin.com/blog/2007/02/verify-install-of-windows-daylight.html">More info about it here</a><br /></span><br /></span><span style="color:blue;">Update 10/25/2009: We have updated our patch again. Both the patch, and Network Administrator have been updated with the latest</span></p>
<p><span style="color:blue;">Update 2/12/2007 12:57 AM EST &#8211; We created a different patch for Windows 98/ME. <a href="http://www.intelliadmin.com/blog/2007/02/windows-98-me-dst-patch.html">Visit here for more information</a></p>
<p><span style="color:blue;">Update 2/12/2007 12:56 AM EST &#8211; We want to also remind you that Outlook, Exchange and Java have their own issues. This patch will not fix that. Please see these links for more info on fixing those issues:<br /></span><br /><span style="color:blue;"> See this article for Exchange, and Outlook<br /><a href="http://www.microsoft.com/windows/timezone/dst2007.mspx">http://www.microsoft.com/windows/timezone/dst2007.mspx</a></p>
<p>For Java:<br /><a href="http://java.sun.com/developer/technicalArticles/Intl/USDST/">http://java.sun.com/developer/technicalArticles/Intl/USDST/</a></span><br /></span></p>
<p>Update for 2009:</p>
<p>We have updated our free DST patch for Windows NT, 2000, 2003 and XP. You don&#8217;t need it for Vista, 2008, or Windows 7 since Microsoft still supports those operating systems</p>
<p>For Windows XP, you only need it if you don&#8217;t want to be forced to upgrade to the latest service pack, and 2000 and NT, you need it if you want your time to be right. There were a few changes across the world since last year, so we have released an update</p>
<p><img src="http://www.intelliadmin.com/images/DST%202009%20Application.jpg" alt="DST 2009 Application"/></p>
<p>You can download the free application from here:</p>
<p><a href="http://www.intelliadmin.com/DaylightSavingFix.exe" rel="nmlp">Daylight Saving Fix Download</a></p>
<p>You can use Network Administrator to deploy it across your network, since it has the updated settings too:</p>
<p><img src="http://www.intelliadmin.com/images/Network%20Administrator%20DST%20Update.jpg" alt="Network Administrator DST Update"/></p>
<p>You can download it from here:</p>
<p><a href="http://www.intelliadmin.com/NetworkAdministratorTrial.exe" rel="nmlp">Network Administrator Download</a></p>
<p>Post from 2007 Continues below:</p>
<p>You may have forgotten by now, but two years ago the US government changed the dates for daylight saving time. When the law was passed it was set to take effect in 2007.</p>
<p>Well, here we are. It is 2007, and Microsoft has published updates for XP, and 2003. But&#8230;No update for 2000 Workstation, or any of the server editions.</p>
<p>This is a huge problem for many organizations. I know some companies that have hundreds of Windows 2000 boxes. The thought that they will need to upgrade to XP or 2003 (Just for this) is a nightmare. Microsoft is providing a hotfix &#8211; but only to the companies that have an extended support contract. To their credit, Microsoft does provide a registry workaround for the rest of us.</p>
<p>The workaround that Microsoft provides is not easy to follow. <a href="http://support.microsoft.com/kb/914387">Check out the KB article at Microsoft.</a></p>
<p>We have created a utility that will update any machine to the new daylight saving format (XP, NT, 2000, 2003, Vista). Obviously you only need it for 2000, or NT since those operating systems have dropped off support.</p>
<p>It updates Daylight Saving Time (Yes it is Saving, not Savings) in these time zones:</p>
<p>-Alaska Standard Time Zone<br />-Central Standard Time Zone<br />-Eastern Standard Time Zone<br />-Mountain Standard Time Zone<br />-Pacific Standard Time Zone<br />-Atlantic Standard Time Zone (Canada)<br />-Newfoundland Standard Time Zone (Canada)</p>
<p>If we are missing another US timezone that supports daylight saving time, please let us know by emailing <a href="mailto:support@intelliadmin.com">support@intelliadmin.com</a></p>
<p>The utility can install, or uninstall the change. It runs without any setup and requires no extra DLLs or runtime. It is less than 1mb, so you can put it on a flash drive:</p>
<p><img src="http://www.intelliadmin.com/images/Daylight%20Saving%20Fix.jpg" alt="Daylight Saving Time Fix" /></p>
<p>It can run silently from the command line if you use these options:</p>
<p>Install:</p>
<p>DaylightSavingFix.exe /qinstall</p>
<p>UnInstall:</p>
<p>DaylightSavingFix.exe /quninstall</p>
<p>Please note that the program must be run as administrator since it access HKEY_LOCAL_MACHINE</p>
<p>If you want to roll it out to multiple machines we have updated our Network Administrator product to install the patch.</p>
<p><img src="http://www.intelliadmin.com/images/Network%20Administrator%20Daylight%20Saving%20Time%20Fix.jpg" alt="Network Administrator Daylight Saving Time Fix" /></p>
<p>Both can be downloaded from our <a href="http://www.intelliadmin.com/Daylight%20Saving%20Fix%20Download.asp">downloads section</a>
<div class="blogger-post-footer"><a href="http://www.intelliadmin.com/downloads.htm">Check out our Windows Admin Tools</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2007/01/unofficial-windows-2000-daylight-saving-time-patch/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
	</channel>
</rss>

