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, ∼3546🔥, 0💬
Popular Posts:
What is "Net.Pipe Listener Adapter" in my Windows 7 service list? And how is "Net.Pipe Listener Adap...
What is "Net Driver HPZ12" in my Windows 7 service list? And how is "Net Driver HPZ12" service relat...
What is "SynTPEnh Caller Service" in my Windows 7 service list? And how is "SynTPEnh Caller Service"...
What is "Software Protection" in my Windows 7 service list? And how is "Software Protection" service...
The overtype key seems to have been disabled since the last round of updates. I have tried following...