怎么批处理cmd命令

如何批处理cmd命令比如我要执行如下命令:1 F:\test\gacutil.exe /i F:\test\ReadCard.dll2 F:\test\RegAsm

如何批处理cmd命令
比如我要执行如下命令:
1 F:\test\gacutil.exe /i F:\test\ReadCard.dll
2 F:\test\RegAsm.exe F:\test\ReadCard.dll
thks

[解决办法]

BatchFile code
@F:\test\gacutil.exe /i F:\test\ReadCard.dll@F:\test\RegAsm.exe F:\test\ReadCard.dll@echo 执行完毕!&pause>nul