如何使我的应用程序在重启后仍在运行
本文关键字:运行 重启 我的 应用程序 何使 | 更新日期: 2023-09-27 18:11:00
我有一个登录应用程序,将禁用3次错误的尝试后,我只是想知道如何使该应用程序仍在运行后,我重新启动我的电脑,我的应用程序已经在。exe…提前感谢:)
假设你在这里谈论的是Windows,在谷歌上简单搜索"Windows启动时运行的应用程序"将会产生大量的简单方法使应用程序在操作系统启动时运行。
这是其中一个结果…
http://windows.microsoft.com/en-us/windows/run-program-automatically-windows-starts 1 tc = windows 7
我想你可以在windows启动时添加应用程序可执行文件。以下方法有助于创建应用程序快捷方式。
public static void CreateStartupShortcut(string applicationName)
{
string _startupFolder = Environment.GetFolderPath(Environment.SpecialFolder.Startup);
WshShell _shell = new WshShell();
//
string _shortcutAddress = _startupFolder + @"'" + applicationName + ".lnk";
IWshShortcut _shortcut = (IWshShortcut)_shell.CreateShortcut(_shortcutAddress);
_shell.RegDelete(_shortcutAddress);
//
_shortcut.Description = "Start up shortcut link for application " + applicationName + ". Delete shortcut to if you dont want to run application on stat up";
_shortcut.WorkingDirectory = Application.StartupPath;
_shortcut.TargetPath = Application.ExecutablePath;
_shortcut.Save();
}
只需将应用程序的exe
路径传递给该方法,它将在windows启动时添加快捷方式。