gpt4 book ai didi

windows - 如何在 Inno Setup 中为每个用户(包括 future 的新用户)安装文件?

转载 作者:行者123 更新时间:2023-12-03 11:06:47 24 4
gpt4 key购买 nike

我有一个安装程序需要分发一些默认文件供用户修改。每个 Windows 用户配置文件都需要有自己的这些(可写)文件副本,包括将来在 Windows 中创建新用户时。

我已经知道如何分发到当前用户的个人资料,但对所有用户的个人资料,尤其是 future 的用户一无所知。我已经看到某些软件如何自动将文件包含在新的 Windows 用户配置文件中。

如何让 Inno Setup 以这种方式分发文件?

最佳答案

对于所有现有帐户,请参阅:
Inno Setup Create individual shortcuts on all desktops of all users


对于 future 的帐户:默认用户 配置文件中的任何内容都会自动复制到所有新创建的配置文件中。

因此,如果您想将文件添加到所有新用户的“文档”文件夹中,请将其添加到默认用户 配置文件的Documents 文件夹中。通常是:

C:\Users\Default\Documents

要检索正确的路径,请使用 SHGetFolderPathnFolder 参数设置为您之后的路径(例如,CSIDL_PERSONAL 用于“文档”文件夹)并将 hToken 参数设置为 - 1(默认用户配置文件)。

[Files]
Source: "default.txt"; DestDir: "{code:GetDefaultUserDocumentsPath}"

[Code]

const
CSIDL_PERSONAL = $0005;
SHGFP_TYPE_CURRENT = 0;
MAX_PATH = 260;
S_OK = 0;

function SHGetFolderPath(
hwnd: HWND; csidl: Integer; hToken: THandle; dwFlags: DWORD;
pszPath: string): HResult;
external 'SHGetFolderPathW@shell32.dll stdcall';

function GetDefaultUserDocumentsPath(Param: string): string;
var
I: Integer;
begin
SetLength(Result, MAX_PATH);
if SHGetFolderPath(0, CSIDL_PERSONAL, -1, SHGFP_TYPE_CURRENT, Result) <> S_OK then
begin
Log('Failed to resolve path to default user profile documents folder');
end
else
begin
{ Look for NUL character and adjust the length accordingly }
SetLength(Result, Pos(#0, Result) - 1);

Log(Format('Resolved path to default user profile documents folder: %s', [Result]));
end;
end;

(代码为 Unicode version of Inno Setup )。

关于windows - 如何在 Inno Setup 中为每个用户(包括 future 的新用户)安装文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44477941/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com