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.
' Pkg 240 (Overwrite Pkg Log)
Option Explicit
Function Main()
Dim oFSO, sLogFile
sLogFile = DTSGlobalVariables.Parent.LogFileName
Set oFSO = CreateObject("Scripting.FileSystemObject")
If oFSO.FileExists(sLogFile) Then
oFSO.DeleteFile sLogFile, True
End If
Set oFSO = Nothing
Main = DTSTaskExecResult_Success
End Function