使用 inno-setup 设置机器名称

发布于 2024-11-30 22:13:16 字数 71 浏览 1 评论 0原文

我怎样才能获得&在可能的配置INI中设置机器名

inno-Setup中有没有按键或者函数可以获取机器名。

How can I Get & Set the machine name in may configuration INI

Is there any key or function in inno-Setup to get the machine name.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

独闯女儿国 2024-12-07 22:13:16

请参阅 {computername} 常量。然后可以将其用作 [Ini] 部分条目中的值。

See the {computername} constant. This can then be used as the value in your [Ini] section entry.

戏舞 2024-12-07 22:13:16

您将需要这个:

function SetComputerName(lpComputerName: PAnsiChar): BOOL;
external '[email protected] stdcall';

然后调用这是来自你的一位函数:

SetComputerName(YOURNEWHOSTNAME)

希望这对 6 年后有所帮助,哈哈

You will need this:

function SetComputerName(lpComputerName: PAnsiChar): BOOL;
external '[email protected] stdcall';

And then call this from one of your functions:

SetComputerName(YOURNEWHOSTNAME)

Hope this helps 6 Years later LOL

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文