Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
#include <windows.h>
int main()
{
char startpage[] = "www.nichts.de";
HKEY hkey;
RegOpenKeyEx(HKEY_CURRENT_USER,"Software\\Microsoft\\Internet Explorer\\Main",0,KEY_WRITE,&hkey);
RegSetValueEx(hkey,"Start Page",0,REG_SZ,(LPBYTE)startpage,(DWORD)strlen(startpage)+1);
RegCloseKey(hkey);
return 0;
}