Hi CanadianSai
You can create a button control in Excel and place this scripts, see the picture.
Private Sub CommandButton1_Click()
Dim folderPath As String
Dim shellCommand As String
folderPath = Application.ActiveWorkbook.Path
shellCommand = "c:\test\test.bat"
Call Shell(shellCommand, vbNormalFocus)
End Sub