From f8c717600f9552ed0a16aeb817e905ebb70ee296 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 17 Oct 2016 01:15:50 +0300 Subject: add a cross-table to README --- README.md | 38 ++++++++++++++++++++++++++++++++++++-- 1 file 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 ------- -- cgit v1.2.3