SetTcbPrivilege sets the TCB privilege in the current process token.
()
| 101 | |
| 102 | // SetTcbPrivilege sets the TCB privilege in the current process token. |
| 103 | func SetTcbPrivilege() { |
| 104 | enablePrivileges(SeTcbPrivilege) |
| 105 | } |
| 106 | |
| 107 | // RemoveTcbPrivilege removes the TCB privilege from the access token of the current process. |
| 108 | func RemoveTcbPrivilege() { |
no test coverage detected