Windows Quick Guide
 
 
This guide contains usefull Windows commands.

rss






Batch programming.

Related information:


Information:
In the table below some batch programs can be found to explain some programming statements.

batch Description
display.bat Display message (Explain: echo, goto, if, set)
readfile.bat
display.bat
data.txt
Read and processes a data file (Explain: for, call)
menu.bat Displays a menu (Explain: echo, set, color, if, goto, cls)
start_unsign.bat
unsign_jar.bat
signed_jars.txt
The two batch scripts unsigns all *.jar files listed in file signed_jars.txt (Explain: for, call, rmdir, mkdir, copy, move, del)

Click here to get information about the purpose of these batch scripts.
date_time.bat Use current date and time as part of log file name (Explain: for, usebackq, tokens, delims)
backup_drupal_database.bat Makes a backup of the drupal database. The backup file contains the current date and time as part of its file name: drupal47_yyyymmdd_hhmm.sql

Click here to get information about the purpose of this batch script.
backup_drupal_database_and_
templates_with_winzip.bat
Makes a backup of the drupal database and drupal templates using WinZip Pro. The backup file contains the current date and time as part of its file name: yyyymmdd_hhmm.zip

Click here to get information about the purpose of this batch script.
backup_drupal_database_and_
templates_with_cygwin.bat
Makes a backup of the drupal database and drupal templates using Cygwin. The backup file contains the current date and time as part of its file name: yyyymmdd_hhmm.tgz

Click here to get information about the purpose of this batch script.
showlog.bat This batch file opens a dos window and goes to the directory where the log file test.log is located. The Cygwin tail command is then excuted to display the last 100 lines of the log file continuously.