This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .SYNOPSIS | |
| Lists delegated permissions (OAuth2PermissionGrants) and application permissions (AppRoleAssignments). | |
| .PARAMETER DelegatedPermissions | |
| If set, will return delegated permissions. If neither this switch nor the ApplicationPermissions switch is set, | |
| both application and delegated permissions will be returned. | |
| .PARAMETER ApplicationPermissions | |
| If set, will return application permissions. If neither this switch nor the DelegatedPermissions switch is set, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Reset-LocalAccountPassword.ps1 | |
| # Written by Bill Stewart (bstewart@iname.com) | |
| #requires -version 2 | |
| <# | |
| .SYNOPSIS | |
| Resets the built-in Administrator account or a named local account password on one or more computers. | |
| .DESCRIPTION |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Get-BitLockerRecovery.ps1 | |
| # Written by Bill Stewart (bstewart@iname.com) | |
| <# | |
| .SYNOPSIS | |
| Gets BitLocker recovery information for one or more Active Directory computer objects. | |
| .DESCRIPTION | |
| Gets BitLocker recovery information for one or more Active Directory computer objects. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Grant-ComputerJoinPermission.ps1 | |
| # Written by Bill Stewart (bstewart@iname.com) | |
| # | |
| # Grants an AD identity the ability to join one or more computers to the | |
| # domain. | |
| #requires -version 2 | |
| <# | |
| .SYNOPSIS |