Google


Get this widget!








Archive for July, 2007

One thing i like the most about firefox is the ability to blend other thing inside firefox. Like last time I introduce how to boost your firefox with faster fox. This time I would like to share with you guys ChatZilla. Another notable addon that include a full feature chat client into your firefox. ChatZilla is compliant with Mirc syntax, you wont get lost anywhere.

ChatZilla - Chatting while browsing the net?

ChatZilla provides all the usual IRC client features: multiple servers, a built-in list of standard networks, easy searching and sorting of available channels, logging, and DCC chat and file transfers, plus easy customization with JavaScript plug-ins and CSS styling. You can get a copy here. Sure a good thing to have all in one.

Download Here : ChatZilla 0.9.78.1


Naruto Shippuuden 21

naruto_shippuuden.jpg

The saga continue, Interesting fight between two most powerful puppet master from the sand country has begun. Chiyo and her grandchild is fighting each other. But there is great difference in strength and power. While others, team gai is still busy fighting their own clone which later admitted, that it is much tougher than they first thought. All the clone seems to acquire all the jutsu mastered by the original. Deidara is still on the move with naruto and kakashi aftering him from behind. Catch the latest naruto shippuuden in action. Things started to ge rough!!


Download here : Naruto Shippuuden 21


Microsoft is planning to ship its next major version of Windows known internally as version 7 within roughly three years time.
The company discussed Windows 7 on Thursday at a conference for its field sales force in Orlando, Fla., according to sources close to the company.

While the company provided few details, Windows 7, the next client version of the operating system, will be among the steps taken by Microsoft to establish a more predictable release schedule, according to sources. The company plans a more “iterative” process of information disclosure to business customers and partners, sources said.

Windows Vista, the oft-delayed most recent release of Windows, shipped to businesses in November and to consumers in January after more than five years of development. Vista’s gestation period was marked by shifting product details as internal priorities changed and problems arose with development.


Like Vista, Windows 7 will ship in consumer and business versions, and in 32-bit and 64-bit versions. The company also confirmed that it is considering a subscription model to complement Windows, but did not provide specifics or a time frame.

 

Next up on Microsoft’s agenda is Service Pack 1 for Windows Vista, which is expected before year’s end.The discussion of Windows’ future isn’t surprising, given that Microsoft has been criticized by business customers for delays related to Vista. Many business customers pay for Microsoft’s software under a license agreement called Software Assurance.

Windows 7 was previously known by the code name Vienna. A Microsoft representative confirmed that Windows 7 is the internal code name for the next client release of Windows. The details were released “as part of our ongoing outreach to enterprise customers and partners, Microsoft has begun sharing plans for how they will continue to deliver value to businesses in the future…Software Assurance customers in particular,” a representative said in a statement via e-mail.

“Microsoft is scoping Windows 7 development to a three-year time frame, and then the specific release date will ultimately be determined by meeting the quality bar,” according to the representative.


Sometimes it is useful or necessary to simply copy existing directories to another hard disk or network drive than using complicated backup methods. Multiple directories can be backed up easily with a simple click by creating a batch file. That file can be executed manually from your desktop, can be added to startup or scheduled for execution as needed.


Batch files basically easy and their syntax have many uses this method could also be use for learning experience by example. Simply copy the text below and paste it into Notepad. Create a new file with with .bat or .cmd extension..

Here is a working example of a backup script you can modify for your needs:

@echo off
:: variables
set drive=G:\Backup
set backupcmd=xcopy /s /c /d /e /h /i /r /y

echo ### Backing up My Documents…
%backupcmd% “%USERPROFILE%\My Documents” “%drive%\My Documents”

echo ### Backing up Favorites…
%backupcmd% “%USERPROFILE%\Favorites” “%drive%\Favorites”

echo ### Backing up email and address book (Outlook Express)…
%backupcmd% “%USERPROFILE%\Application Data\Microsoft\Address Book” “%drive%\Address Book”
%backupcmd% “%USERPROFILE%\Local Settings\Application Data\Identities” “%drive%\Outlook Express”

echo ### Backing up email and contacts (MS Outlook)…
%backupcmd% “%USERPROFILE%\Local Settings\Application Data\Microsoft\Outlook” “%drive%\Outlook”

echo ### Backing up the Registry…
if not exist “%drive%\Registry” mkdir “%drive%\Registry”
if exist “%drive%\Registry\regbackup.reg” del “%drive%\Registry\regbackup.reg”
regedit /e “%drive%\Registry\regbackup.reg”

:: use below syntax to backup other directories…
:: %backupcmd% “…source directory…” “%drive%\…destination dir…”

echo Backup Complete!
@pause

The above example backs up “My Documents”, Favorites, Outlook Express email/address book, and the Windows Registry. It copies the files to the directory defined in the %drive% variable, or “g:\Backup”. If the script is ran multiple times, it will only rewrite if the source files are newer. It will create subdirectories as necessary, and it will retain file attributes. It can copy system and hidden files.

In the above file, all lines that begin with “::” are comments. The “set drive=” and “set backupcmd=” near the top define two variables (referenced by %drive% and %backupcmd%), used a number of times throughout the file; the first being the location of the top directory where we want to backup, and the second the actual copy command with all necessary switches. All the “echo ” lines in the file simpy output the line of text to the screen, and the lines beginning with %backupcmd% are the actual commands to execute.

Note that most of the folders in the above backup example are subdirectories of the %USERPROFILE%… It is possible to simply backup the entire user profile with My Documents, Favorites, Outlook Express, Outlook, etc. by backing up this one folder. Here is an example (it assumes the above “drive” and “backupcmd” variables are set):

%backupcmd% “%USERPROFILE%” “%drive%\%UserName% - profile”

Using the Current Date

Sometimes it is useful to create folders with the date incorporated in the folder name. Here is how to set the variable folder to the current date:

set folder=%date:~10,4%_%date:~4,2%_%date:~7,2%
%backupcmd% “…source dir…” “%drive%\%folder%\…destination dir…”

It is also possible to use the current time in the folder name. The following example with incorporate both the current date and time to the minute, separated by underscores. There is an extra step that cleans up possible spaces in single-digit hours in the system time:

set hour=%time:~0,2%
if “%hour:~0,1%”==” ” set hour=0%time:~1,1%
set folder=%date:~10,4%_%date:~4,2%_%date:~7,2%_%hour%_%time:~3,2%
%backupcmd% “…source dir…” “%drive%\%folder%\…destination dir…”

Hope that helps…





 Subscribe in a reader

Enter your email address:

Delivered by FeedBurner

WidgetBucks - Trend Watch - WidgetBucks.com

UserOnline