使用 inno-setup 设置机器名称
我怎样才能获得&在可能的配置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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅
{computername}
常量。然后可以将其用作 [Ini] 部分条目中的值。See the
{computername}
constant. This can then be used as the value in your [Ini] section entry.您将需要这个:
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