Delphi 设置系统启动文件夹自身开机自动运行


本文整理自网络,侵删。

 

 uses  ShlObj, ShellAPI,System.IniFiles, System.UITypes;


 function GetAutoRunFilePath(): String;
var
  fileName, pathStartUp: String;
  path: array [0 .. 255] of Char;
begin
  fileName := Application.title + '.url';  //url
  if SHGetSpecialFolderPath(0, @path[0], CSIDL_STARTUP, true) then
    pathStartUp := String(path);

  Result := pathStartUp + PathDelim + fileName;
end;

 procedure CreateAutoRun();
const
  FileProtocol = 'file:///';
var
  fileName: String;
  pathExe, pathUrl, pathAutoRun: String;
begin
  fileName := Application.title + '.url'; //url
  pathUrl := application.Exename;
  pathExe := ParamStr(0);

  pathAutoRun := GetAutoRunFilePath();

  with TIniFile.Create(pathAutoRun) do
    try
      WriteString('InternetShortcut', 'URL', FileProtocol + pathExe);
      WriteString('InternetShortcut', 'IconIndex', '0');
      WriteString('InternetShortcut', 'IconFile', pathExe);
    finally
      DisposeOf();
    end;

end;



procedure TForm1.FormCreate(Sender: TObject);
begin
CreateAutoRun();  //调用演示
end;

相关阅读 >>

Delphi getforegroundwindow 与 getactivewindow 的区别

Delphi 检查注册表键、键值是否存在

Delphi中move函数的正确理解

Delphi 判断字符串是否包含汉字

format、formatdatetime、formatfloat 的用法

vclzip控件的简单使用

Delphi pascal 单元文件的特殊定义格式

Delphi xe5、6、7在android或者ios上使用ansistring和ansichar

Delphi link() 精简打开网址

Delphi format 另类用法

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...