Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2010-12-27 15:42:51 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2010-12-27 15:42:51 +0300
commitb9a633178146429f3e6a83218e3de18d1895cf12 (patch)
tree7c60586ffcbe1e08453dba1425a0a642847e94ef /release/windows/installer/00.sconsblender.nsi
parentbf1eff43cf044fb9cb81ef3c386f50203b1a0da7 (diff)
By default install to the user profile instead of Program Files. This because right now the installer
runs in user mode, not elevated to admin. Otherwise users can't install to the default which used to be Program Files, which causes more problems than necessary. Although unconventional location, probably currently a better solution. Network admins etc. can override install location on command-line. NSIS docs tell how.
Diffstat (limited to 'release/windows/installer/00.sconsblender.nsi')
-rw-r--r--release/windows/installer/00.sconsblender.nsi5
1 files changed, 4 insertions, 1 deletions
diff --git a/release/windows/installer/00.sconsblender.nsi b/release/windows/installer/00.sconsblender.nsi
index 1f2913f7f62..e5ebf8b2f64 100644
--- a/release/windows/installer/00.sconsblender.nsi
+++ b/release/windows/installer/00.sconsblender.nsi
@@ -70,7 +70,10 @@ UninstallIcon "[RELDIR]\00.installer.ico"
Caption "Blender [VERSION] Installer"
OutFile "[DISTDIR]\..\blender-[VERSION]-windows[BITNESS].exe"
-InstallDir "$PROGRAMFILES[BITNESS]\Blender Foundation\Blender"
+;InstallDir "$PROGRAMFILES[BITNESS]\Blender Foundation\Blender"
+; Install to user profile dir. While it is non-standard, it allows
+; users to install without having to have the installer run in elevated mode.
+InstallDir "$PROFILE\Blender Foundation\Blender"
BrandingText "Blender Foundation | http://www.blender.org"
ComponentText "This will install Blender [VERSION] on your computer."