InterviewSolution
| 1. |
Who Defines The Cas Code Groups? |
|
Answer» MICROSOFT defines some default ones, but you can modify these and even CREATE your own. To see the code groups defined on your SYSTEM, run 'caspol -lg' from the command-line. On my system it looks like this: 1. All code: Nothing 0024000004800000940000000602000000240000525341310004000003 Note the hierarchy of code groups - the top of the hierarchy is the most general ('All code'), which is then sub-divided into several groups, each of which in turn can be sub-divided. Also note that (somewhat counter-intuitively) a sub-group can be associated with a more permissive permission set than its parent. Microsoft defines some default ones, but you can modify these and even create your own. To see the code groups defined on your system, run 'caspol -lg' from the command-line. On my system it looks like this: 1. All code: Nothing 0024000004800000940000000602000000240000525341310004000003 Note the hierarchy of code groups - the top of the hierarchy is the most general ('All code'), which is then sub-divided into several groups, each of which in turn can be sub-divided. Also note that (somewhat counter-intuitively) a sub-group can be associated with a more permissive permission set than its parent. |
|