【问题标题】:Installer from NSIS tutorial wrote to wrong user's desktopNSIS 教程中的安装程序写入错误的用户桌面
【发布时间】:2021-04-01 04:52:41
【问题描述】:

我正在尝试设置 NSIS 教程中的安装程序之一。安装程序只需将一个文本文件写入桌面,上面写着“Hello world!”。安装程序脚本如下:

# declare name of installer file
Outfile "hello world.exe"
 
# open section
Section
 
# create a popup box, with an OK button and some text
MessageBox MB_OK "Now We are Creating Hello_world.txt at Desktop!"
 
/* open an output file called "Hello_world.txt", 
on the desktop in write mode. This file does not need to exist 
before script is compiled and run */
 
FileOpen $0 "$DESKTOP\Hello_world.txt" w
 
# write the string "hello world!" to the output file
FileWrite $0 "hello world!"
 
# close the file
FileClose $0
# Show Success message.
MessageBox MB_OK "Hello_world.txt has been created successfully at Desktop!"
 
 
# end the section
SectionEnd

我遇到的问题是文件没有写入桌面。浏览了几分钟后,我能够在我的计算机上的 Admin 帐户而不是当前用户的桌面上找到该文件。我需要做什么才能将 NSIS 配置为使用当前登录的用户而不是管理员帐户?

【问题讨论】:

    标签: nsis


    【解决方案1】:

    RequestExecutionLevel User 添加到您的脚本中,这将告诉 Windows 您不需要 UAC 提升。

    当非管理员用户 UAC 提升新进程时,它将以 UAC 对话框中使用的管理员用户身份运行。

    【讨论】:

      猜你喜欢
      • 2012-04-13
      • 1970-01-01
      • 2015-11-11
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2023-04-09
      • 1970-01-01
      相关资源
      最近更新 更多