Windows Xp - Time Zone Update

In order to comply with the new daylight savings time, we need to deploy a windows patch, which needs to be installed on every computer running windows XP.

The patch is click here to download: KB931836-x86-ENU

There is no restart needed.

 


Outlook Tool - Time Zone Update

After installing the patch please run the following tool tzmove.exe.

The patch is click here to download: TZMOVE

It will check your calendar and update all appointments that you have set up, just uncheck the bottom box, otherwise it will send out an update response to all parties involved in a particular meeting.

 

Blackberry Device - Time Zone Update

This is for those who are using blackberry please navigate your blackberry browser to http://blackberry.com/dst2007

Once the page loads, please click on download and install the DST update for your blackberry. The whole process should take no more than 15-20 min.

Once a patch has been installed it will ask you to reset your blackberry device, please do that. After all steps are done, please still check your calendars to make sure that the correct times are shown.

 

Find list of patches for different application for A to Z applications & OS http://www.dstpatch.com/

A

Apple: Mac OS X 10.4.6 Update (delta)

Apple Newton

Apple: Unofficial Fix for 10.3 and 10.2 (not supported)

Adobe

Avaya (Long List of Products)

B

BlackBerry (Updated with a new link again (3/1/07)

Blackberry KB12016 regarding Exchange DST Patch

BEA

BMC Software

Bluecoat

C

Checkpoint (support account required)

Cisco Information

Cisco Information (PDF)

Field Notice: FN - 62613 - U.S. Daylight Savings Time Policy Changes Effective March 2007 - for Cisco IOS Software

Citrix

Cold Fusion Info

D

E

EMC (Login)

F

Fortinet: Fortinet recommends disabling the Daylight savings feature

G

H

HPUX JDK

HP SUPPORT COMMUNICATION - CUSTOMER NOTICE

HP Procurve Daylight Savings Time Instructions

I

Iatrics (Caution PDF File)

IBM: General Information

IBM: OS/400 SI24906 - OSP-Additional time zones for 2007 Daylight Saving Time

IBM: Daylight Saving Time (DST) changes for 2007 will affect Lotus software products

IBM: Executive Summary and End User Guide: Daylight Saving Time (DST) 2007

IBM: i5/OS Updates

J

Juniper

K

Kronos DST Information

L

M

Microsoft (MSFT): General Information

Microsoft Portal for DST

MSFT: How to configure daylight saving time for the United States in 2007

MSFT: How to configure daylight saving time for the United States and Canada in 2007 and in subsequent years on Windows Mobile-based devices

MSFT: 2007 time zone update for Windows operating systems

MSFT: Update for daylight saving time changes in 2007 for Exchange 2003 Sevice Pack 2

MSFT: Changes to daylight-saving time in 2007 for Microsoft Dynamics CRM

MSFT: Small Business Server Blog Entry

MSFT: Microsoft IT Daylight Savings Time Assessment Checklist

MSFT: Daylight Saving Time: Microsoft IT Enterprise Response Plan Preparing for Daylight Saving Time Changes in 2007

MSFT: Exchange Time Zone Update Tool: Guidance from Microsoft IT

MSFT: Outlook Time Zone Update Tool: Guidance from Microsoft IT

MSFT: Windows XP Embedded (Account Required)

MySQL: Server Time Zone Support

N

NETAPP (login required)

Novell: Daylight Saving Time Adjustment Tool for NetWare Servers

Novell Groupwise

O

Oracle Blog

Oracle Metalink (Account Required)

P

Palm

PostgreSQL

Q

R

RedHat: RHEA-2005:656-6

Red Hat Linux RHEL 3

S

SAP

Spectracom Master Clocks and Time Servers

Symantec Veritas NetBackup

Symantec Veritas NetBackup Java JRE

Sun: Solaris 9, Solaris 10, and Solaris 8 Operating System (Note: New Link 3/2/07)

Sun: Java SE JDK tzupdater Tool

Sun Developer Network: U.S. Daylight Saving Time Changes in 2007

Sybase

T

U

Ubuntu

V

VMWARE: ESX 2.x and 3.x

W

WebMethods (Requires a Login: WebMethods Advantage)

Websense

X

Y

Z

 

 

Midlets are java applications written for phones under the MDIP specification

1> Download and install the RIM Java Development Environment.
from http://www.BlackBerry.net/developers/

This software requires the sun Java SDK, so

2> Download and install the Sun Java SDK.
http://java.sun.com/j2se/1.4.2/download.html


MAKE SURE YOU GET THE SDK! *NOT* THE JRE (Java Runtime Environment).

Once both are installed, download the midlets you wish to put on your BlackBerry. Midlets are BOTH a .jar and .JAD file.

3> For ease of use, move the JAD and JAR files for each midlet you want to convert to the BIN directory in the RIM Java Development Environment directory on your hard drive, for example: C:\program files\Research in Motion\BlackBerry JDE 3.7\bin\

4> Go to C:\windows right-click and do New -> Text File. Call this text file “Mid2Cod.bat” and say “yes” on the question if you are sure to change the extension.

5> Copy and paste the batch file text that I have attached below.

6> Make sure that the path after “SET JDEPATH=…..” (In the file to be converted to BAT file and kept under C:\windows) is correct for your installation of the JDE. If it’s not correct, please modify it to point to correct path.


7> Save and exit from the file

How to use this batch file:

1. Download your MidLet (.JAD and .JAR files) into some directory. Do Start->Run and type “cmd” (without the “”) followed by .

2. In the DOS window, change directory (using “cd”) to go to the directory where you stored your MidLet

3. Connect your BlackBerry to the USB port, and type “Mid2Cod filename” followed by . Note, that the “” should not be typed, and that the filename must NOT have a .JAR or .JAD extension. So, for the “ravi” Midlet (ravi.jad / ravi.jar), type “Mid2Cod ravi “.

4. Follow what’s happening on the screen. After a while, it asks you to press a key to continue (if all went well). If you do so, the .COD file will be uploaded to your BlackBerry. If you are not ready to upload at that time, press CNTL-C.

Below is the file to be converted to BAT file and kept under C:\windows.

@echo off

set JDEPATH=C:\Program Files\Research In Motion\BlackBerry JDE 4.1

cls

echo Midlet to COD translator

echo this utitily translates MIDP Midlets to COD Blackberry files

echo.

if “%1″== “” goto noargs

if not exist “%1.jad” goto nojad

if not exist “%1.jar” goto nojar

if not exist “%JDEPATH%\apps” md “%JDEPATH%\apps”

goto continue

:noargs

echo Usage: %0 inputfile

echo Note: don’t add an extension to the input file name, so no .jad or .jar endings!

goto last

:nojad

echo %1.jad doesn’t exist. Both %1.jad and %1.jar are needed for conversion to be successful.

echo Note: don’t add an extension to the input file name, so no .jad or .jar endings!

goto last

:nojar

echo %1.jar doesn’t exist. Both %1.jad and %1.jar are needed for conversion to be successful

echo Note: don’t add an extension to the input file name, so no .jad or .jar endings!

goto last

:continue

copy %1.jar “%JDEPATH%\apps”

copy %1.jad “%JDEPATH%\apps”

cd “%JDEPATH%\apps”

pause

..\bin\rapc import=”%JDEPATH%\lib\net_rim_api.jar” codename=%1 -midlet jad=%1.jad %1.jar

if not errorlevel 1 goto load

echo An error has occurred. Check your files and try again.

goto last

:load

echo.

echo If you see ‘No Errors’ noted above, most probably the cross-compiling was successful.

echo Now we are going to upload the app to the device. Please make sure your

echo Blackberry is connected to the USB port.

pause

“%JDEPATH%\bin\javaloader” -usb load %1.cod

echo.

:last

echo Thank you for using the Jar2Cod utility.

Caveats:

a) If you use the application loader at a future date, the loader WILL remove your midlets as they are not known by it. You will probably have to re-upload them again in this case.
b) Make sure you have enough free space to upload the applications..
c> Please do not blame ME if some thing goes wrong. J . I have tried this and very sure this will work.

d> If the device crashes, we can easily reload the OS to it. So please try. ( I tried this as well J )

e> Please be VERY careful while executing following commands. Device fails to come up if the below commands are executed haphazardly.


wipe [-a|-f]

Wipes the handheld

-a Wipe applications only

-f Wipe filesystem only

erase [-f] …

Erases modules on the handheld

-f Force erase of in-use module

 

Note : As far as I know i m not doing any business. No copyright infringement is intended. If you think that there is any violation of any rights, please let me know and I shall immediately remove the content.