To restore the master database
This example restores the master database backup from tape without using a permanent (named) backup device.
USE master
GO
RESTORE DATABASE master
FROM TAPE = '\\.\Tape0'
GO
Restoring the master Database from a Current Backup
How to start the default instance of SQL Server in single-user mode (Command Prompt)