Run MSSQL script from command line

sqlcmd.exe -S ".\" -b -i ".\MySqlFile.sql"
USE [master]
GO
DROP DATABASE IF EXISTS [MyDatabase]
GO
78350cookie-checkRun MSSQL script from command line