【发布时间】: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