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.
FromFile = "c:\xx" ' or other directory
ToFile = "c:\yy" ' where it needs to go
CopyParams = "/s /y /c" ' specific options
CmdLine "xcopy " & FromFile & " " & ToFile & " " & CopyParams
Shell CmdLine, vbNormalFocus ' or other Window setting