Using ado I use this:

VB Code:
  1. strExecute = "BACKUP DATABASE ['database name"] "
  2.     strExecute = strExecute & "TO DISK = 'path" ' "
  3.     strExecute = strExecute & "WITH INIT" ', STATS "
  4.     Dim AdoCmd As New ADODB.Command
  5.     With AdoCmd
  6.         .ActiveConnection = 'active connection
  7.         .CommandType = adCmdText
  8.         .CommandTimeout = 0
  9.         .CommandText = "use master"
  10.         .Execute
  11.         .CommandText = strExecute
  12.         .Execute
  13.         Set .ActiveConnection = Nothing
  14.     End With
  15.     Set AdoCmd = Nothing

Can it be turned to T-SQL so I could just execute it asynchronously and dont wait till it is finished backing-up the sql server database?