2
|
1 |
|
|
2 |
This directory contains the source and the binary version of a Windows
|
|
3 |
utility to remove all non-owner Access Control Entries from a given file.
|
|
4 |
|
|
5 |
The tool is used by regression tests in the following directories :-
|
|
6 |
|
|
7 |
test/sun/management/jmxremote/bootstrap
|
|
8 |
test/sun/management/snmp/bootstrap
|
|
9 |
|
|
10 |
The tests in these directories create password or ACL files that need to
|
|
11 |
be "secured" (meaning that only the owner should have access to the
|
|
12 |
files).
|
|
13 |
|
|
14 |
Both the source and the binary version are checked into SCCS. If
|
|
15 |
you require to make changes to the tool then you need to Visual
|
|
16 |
C++ to rebuild revokeall.exe after changing the source.
|
|
17 |
|
|
18 |
To rebuild the tool you need to setup your environment (by
|
|
19 |
calling the VC++ VCVARS32.BAT script), and then executing the
|
|
20 |
following command :-
|
|
21 |
|
|
22 |
cl /mt revokeall.c advapi32.lib
|
|
23 |
|
|
24 |
This will generate revokeall.exe.
|
|
25 |
|
|
26 |
Note that a 32-bit version of revokeall.exe is checked into SCCS
|
|
27 |
- this 32-bit application is also used when running on 64-bit
|
|
28 |
versions of Windows (AMD64 and IA64).
|
|
29 |
|
|
30 |
|