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, 1783👍, 0💬
Popular Posts:
What is "Net.Msmq Listener Adapter" in my Windows 7 service list? And how is "Net.Msmq Listener Adap...
How to change starting home page setting in Internet Explorer (IE) 7? Starting home page is a very i...
Where to find tutorials on using Windows 10? I want to learn how to use Windows 10 more efficiently....
What is "Interactive Services Detection" in my Windows 7 service list? And how is "Interactive Servi...
What is YInstStarter Class - Download Program Files (DPF)? YInstStarter Class is a Download Program ...