aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-10-17 01:15:50 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-10-17 01:15:50 +0300
commitf8c717600f9552ed0a16aeb817e905ebb70ee296 (patch)
treeabfc3f10c477417682cb2edc63a9879260d8b7b3
parentCMakeLists.txt update (diff)
downloadprivilege-check-f8c717600f9552ed0a16aeb817e905ebb70ee296.tar.gz
privilege-check-f8c717600f9552ed0a16aeb817e905ebb70ee296.zip
add a cross-table to README
-rw-r--r--README.md38
1 files changed, 36 insertions, 2 deletions
diff --git a/README.md b/README.md
index 1657ac9..9a45d95 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ Create the build files using CMake and build using your native build tools
For example, using Visual Studio Community 2015 Update 3 (targetting x86-64):
> cd
- D:\workspace\build\privilege-check\msvc
+ D:\workspace\build\privilege-check\msvc\x64
> cmake -G "Visual Studio 14 2015 Win64" D:\workspace\personal\privilege-check
...
@@ -33,7 +33,7 @@ For example, using Visual Studio Community 2015 Update 3 (targetting x86-64):
Another example, using Cygwin + MinGW-w64 + `make` (again, targetting x86-64):
> pwd
- /cygdrive/d/workspace/build/privilege-check/mingw/release
+ /cygdrive/d/workspace/build/privilege-check/mingw/x64/release
> cmake -G "Unix Makefiles" \
-D CMAKE_CXX_COMPILER=x86_64-w64-mingw32-g++ \
@@ -45,6 +45,40 @@ Another example, using Cygwin + MinGW-w64 + `make` (again, targetting x86-64):
> cmake --build . -- -j
...
+Cross table
+-----------
+
+Snippets of information provided by the tool on different Windows versions
+are summarized in the table below.
+
+"Administrator" below stands for the built-in Administrator account.
+"testadmin" is a user that belongs to the BUILTIN\Administrators group.
+"test" is a user that doesn't belong to this group.
+
+### UAC on
+
+User | | Windows 7 | Windows 8.1 | Windows 2012 R2
+------------- | --------------- | --------- | ----------- | ---------------
+Administrator | Integrity level | - | - | High
+ | Elevated? | - | - | True
+testadmin | Integrity level | Medium | Medium | Medium
+ | Elevated? | False | False | False
+test | Integrity level | Medium | Medium | Medium
+ | Elevated? | False | False | False
+
+### UAC off
+
+User | | Windows 7 | Windows 8.1 | Windows 2012 R2
+------------- | --------------- | --------- | ----------- | ---------------
+Administrator | Integrity level | - | - | High
+ | Elevated? | - | - | True
+testadmin | Integrity level | High | High | High
+ | Elevated? | True | True | True
+test | Integrity level | Medium | Medium | Medium
+ | Elevated? | False | False | False*
+
+\* True on domain controllers.
+
License
-------