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.
#include <windows.h>
char CopyFrom[MAX_PATH];
char CopyTo[] = "C:\\Anywhere\\You\\Want\\Copy.exe";
BOOL fOverWriteOK = TRUE; // or FALSE, if you don't want to overwrite
if ( GetModuleFileName ( GetModuleHandle ( NULL ),
CopyFrom,
sizeof ( CopyFrom )))
{ CopyFile ( CopyFrom, CopyTo,
fOverWriteOK ? FALSE : TRUE ); }