summaryrefslogtreecommitdiffstats
path: root/doc/manual/en_US
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:47:04 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:47:04 +0000
commit1ce3c672e49dba730b528aa346bb522c0150567c (patch)
tree3dcb498231ff119d9a836ed1a154d81140b84f8e /doc/manual/en_US
parentAdding upstream version 7.0.16-dfsg. (diff)
downloadvirtualbox-upstream.tar.xz
virtualbox-upstream.zip
Adding upstream version 7.0.18-dfsg.upstream/7.0.18-dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'doc/manual/en_US')
-rw-r--r--doc/manual/en_US/user_Installation.xml44
1 files changed, 44 insertions, 0 deletions
diff --git a/doc/manual/en_US/user_Installation.xml b/doc/manual/en_US/user_Installation.xml
index 2661b259..4cf6e403 100644
--- a/doc/manual/en_US/user_Installation.xml
+++ b/doc/manual/en_US/user_Installation.xml
@@ -56,6 +56,50 @@
</sect2>
+ <sect2 id="install-win-installdir-req">
+
+ <title>Windows Installation Directory Security Requirements</title>
+
+ <para>
+ The installation directory on Windows hosts must meet certain security requirements, in
+ order to be accepted by the Windows installer.
+ </para>
+
+ <para>
+ This also applies for upgrades of &product-name;.
+ </para>
+
+ <para>
+ For example, when installing &product-name; into a custom location at
+ X:\Data\MyPrograms\&product-name;, all parent directories of this path
+ (namely X:\Data and X:\Data\MyPrograms) have to meet the following
+ Discretionary Access Control List (DACL):
+ <screen>
+ Users S-1-5-32-545:(OI)(CI)(RX)
+ Users S-1-5-32-545:(DE,WD,AD,WEA,WA)
+ Authenticated Users S-1-5-11:(OI)(CI)(RX)
+ Authenticated Users S-1-5-11:(DE,WD,AD,WEA,WA)
+ </screen>
+ Directory inheritance must also be disabled for all parent directories.
+ </para>
+
+ <para>
+ You can use the <command>icacls</command> Windows command line tool
+ to meet the security requirements. For example:
+ <screen>
+ icacls &lt;Directory&gt; /reset /t /c
+ icacls &lt;Directory&gt; /inheritance:d /t /c
+ icacls &lt;Directory&gt; /grant *S-1-5-32-545:(OI)(CI)(RX)
+ icacls &lt;Directory&gt; /deny *S-1-5-32-545:(DE,WD,AD,WEA,WA)
+ icacls &lt;Directory&gt; /grant *S-1-5-11:(OI)(CI)(RX)
+ icacls &lt;Directory&gt; /deny *S-1-5-11:(DE,WD,AD,WEA,WA)
+ </screen>
+ Note that these commands must be repeated for all parent directories
+ (X:\Data and X:\Data\MyPrograms in this example).
+ </para>
+
+ </sect2>
+
<sect2 id="install-win-performing">
<title>Performing the Installation</title>