Difference between revisions of "Windows Batch Script"

From PKC
Jump to navigation Jump to search
Line 5: Line 5:
# [https://kedar.nitty-witty.com/blog/bat-batch-file-to-create-formatted-date-ddmmyyyy-directory Batch File to Create Formatted Date and Time]
# [https://kedar.nitty-witty.com/blog/bat-batch-file-to-create-formatted-date-ddmmyyyy-directory Batch File to Create Formatted Date and Time]
# [http://www.trytoprogram.com/batch-file/ Batch File Programming]
# [http://www.trytoprogram.com/batch-file/ Batch File Programming]
==Useful Hints==
The following special expressions or characters may be useful in understanding Batch Script:
SET varibale_name=variable_value
:: for assigning numeric value
SET /A variable_name=nameric_value
‘/A’ is used for assigning numeric values. Uninitialized variables are empty strings in batch files.

Revision as of 13:00, 18 August 2021

Windows Batch Script is a crucial instrument for setting up PKC on Windows 10 platform.

Useful Websites

  1. Batch Script Tutorial on Tutorial Point
  2. Batch File to Create Formatted Date and Time
  3. Batch File Programming

Useful Hints

The following special expressions or characters may be useful in understanding Batch Script:

SET varibale_name=variable_value
:: for assigning numeric value
SET /A variable_name=nameric_value

‘/A’ is used for assigning numeric values. Uninitialized variables are empty strings in batch files.