Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
declare @ZipFileName VarChar(50)
declare @SQLCommand VarChar(400)
SET @ZipFileName = 'MyZipFile.Zip'
SET @SQLCommand =
'exec master..xp_cmdshell ' + '''' + 'C:\MyDir\Winzip\WZUNZIP -yb C:\MyDir\'
+ @ZipFileName + ' C:\MyDir\' + ''''
EXEC (@SQLCommand)