Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Diagnostics;
namespace SMS_Archiv
{
static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
static void Main()
{
string[] arguments = Environment.GetCommandLineArgs();
MessageBox.Show("schritt 1");
foreach (string argument in arguments)
{
MessageBox.Show("schritt 2");
if (argument.Split(new char[] { '=' }, 0).ToString().ToLower() == "/u")
{
MessageBox.Show("schritt 3");
string guid = argument.Split(new char[] { '=' }, 1).ToString();
string path = Environment.GetFolderPath(Environment.SpecialFolder.System);
ProcessStartInfo si = new ProcessStartInfo(path + "\\msiexec.exe", "/i " + guid);
MessageBox.Show("schritt 4");
Process.Start(si);
//Close();
Application.Exit();
System.Environment.Exit(0);
MessageBox.Show("schritt 5");
}
}
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new f_Hauptmenue());
}
}
}