代码之家  ›  专栏  ›  技术社区  ›  croceldon

Delphi-如何更改Vista/Win 7中的默认文件扩展名

  •  3
  • croceldon  · 技术社区  · 15 年前

    我正在尝试添加注册一个扩展名为exe的文件。下面的代码适用于XP,但在Win Vista/7中抛出了一个错误。

    var
      reg: TRegistry;
    begin
      reg := TRegistry.Create;
      try
        reg.RootKey := HKEY_CLASSES_ROOT;
        reg.OpenKey('.' + ExtName, True);
        reg.WriteString('', ExtName + 'file');  //error: Failed to set data for ''
        reg.CloseKey;
        reg.CreateKey(ExtName + 'file');
        reg.OpenKey(ExtName + 'file\DefaultIcon', True);
        reg.WriteString('', AppName + ',0');
        reg.CloseKey;
        reg.OpenKey(ExtName + 'file\shell\open\command', True);
        reg.WriteString('', AppName + ' "%1"');
        reg.CloseKey;
      finally
        reg.Free;
      end;
    
      SHChangeNotify(SHCNE_ASSOCCHANGED, SHCNF_IDLIST, nil, nil);
    

    如何在Vista/7中完成相同的任务?

    1 回复  |  直到 15 年前
        1
  •  10
  •   Paul-Jan    15 年前

    你试过以管理员身份运行这个吗?不能像vista中的任何旧用户一样写入hkey_classes_root。除非您以超级用户/管理员身份运行,否则也不能在XP中运行。很多开发人员都是,但这也不重要。

    换句话说,你需要提升才能做到这一点。 Here 是关于如何设置清单以使用此特性标记应用程序的良好链接。