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 int64 与 currency

Delphi changefileext 更改文件的后缀扩展名

Delphi 正则表达式在每行开头插入行号

Delphi 窗口跟随

Delphi调用java编写的webservice

windows7下使用Delphi7的方法

Delphi firedac 获取 insert 记录的自增 id

Delphi 截取某个字符之前的字段

Delphi 文件路径相关的字符串操作

Delphi map file

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



打赏

取消

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

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

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

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

评论

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