Categories:
Administration (10)
Adware Spyware (7)
Apache (10)
Bluetooth (125)
DOS Commands (1)
Edge (28)
General (2)
Internet Explorer (217)
Media Center (12)
Media Player (11)
Mozilla Firefox (18)
PHP (15)
Programming (8)
Security (4)
Silverlight (15)
Tips (17)
Tools (218)
Tutorials (5)
Windows 10 (166)
Windows 7 (636)
Windows 8 (1091)
Windows Phone (33)
Windows Server 2008 (165)
Windows Server 2012 (84)
Windows Server 2016 (23)
Windows Vista (52)
Collections:
Other Resources:
%1 and %* - Receive Parameters in Batch File
How to receive parameters in batch file?
✍: FYIcenter.com
If a batch file is invoked with parameters,
you receive them in special variables:
Here is batch file called, Batch-File-Parameters.bat, that displays those special variables holding batch file parameters:
@echo off echo (%0) echo (%1) (%2) (%3) (%4) (%5) echo (%*)
if you run the above batch file with different parameters, you get:
C:\fyicenter>Batch-File-Parameters.bat 1 2 3 4 5 (Batch-File-Parameters.bat) (1) (2) (3) (4) (5) (1 2 3 4 5) C:\fyicenter>Batch-File-Parameters.bat 1+2 3+4-5 (Batch-File-Parameters.bat) (1+2) (3+4-5) () () () (1+2 3+4-5) C:\fyicenter>Batch-File-Parameters.bat "1 2" 3 "4 5" (Batch-File-Parameters.bat) ("1 2") (3) ("4 5") () () ("1 2" 3 "4 5")
⇒ Space - Delimiter for Batch File Parameters
⇐ "echo on|off" - Control Echo Setting
2021-07-10, 1611👍, 0💬
Popular Posts:
How to remove DLG.exe from the startup application list to gain performance and reduce security risk...
How to remove jusched.exe from startup program list? jusched.exe is a background process from Sun to...
Can I disable Windows service "Infrared Monitor" to speedup my computer? Windows service "Infrared M...
Can I remove startup application "GoogleDesktop.exe - Google Desktop Search" to speedup my computer ...
How to publish HTML documents to your local Apache server? If you followed our Apache server install...