2024-01-25 13:37:12 +01:00
|
|
|
Script: *check-admin.ps1*
|
|
|
|
========================
|
2023-10-19 08:12:00 +02:00
|
|
|
|
|
|
|
This PowerShell script checks if the user has administrator rights.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
```powershell
|
|
|
|
PS> ./check-admin.ps1 [<CommonParameters>]
|
|
|
|
|
|
|
|
[<CommonParameters>]
|
|
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
|
|
```
|
|
|
|
|
|
|
|
Example
|
|
|
|
-------
|
|
|
|
```powershell
|
|
|
|
PS> ./check-admin.ps1
|
2024-08-15 09:51:46 +02:00
|
|
|
✅ Yes, Markus has admin rights.
|
2023-10-19 08:12:00 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
Notes
|
|
|
|
-----
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
|
|
|
Related Links
|
|
|
|
-------------
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
|
|
|
Script Content
|
|
|
|
--------------
|
|
|
|
```powershell
|
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
|
|
Check for admin rights
|
|
|
|
.DESCRIPTION
|
|
|
|
This PowerShell script checks if the user has administrator rights.
|
|
|
|
.EXAMPLE
|
|
|
|
PS> ./check-admin.ps1
|
2024-08-15 09:51:46 +02:00
|
|
|
✅ Yes, Markus has admin rights.
|
2023-10-19 08:12:00 +02:00
|
|
|
.LINK
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
#>
|
|
|
|
|
|
|
|
try {
|
|
|
|
if ($IsLinux) {
|
|
|
|
# todo
|
|
|
|
} else {
|
|
|
|
$user = [Security.Principal.WindowsIdentity]::GetCurrent()
|
|
|
|
$principal = (New-Object Security.Principal.WindowsPrincipal $user)
|
|
|
|
if ($principal.IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator)) {
|
2024-08-15 09:51:46 +02:00
|
|
|
"✅ Yes, $USERNAME has admin rights."
|
2023-10-19 08:12:00 +02:00
|
|
|
} elseif ($principal.IsInRole([Security.Principal.WindowsBuiltinRole]::Guest)) {
|
2024-08-15 09:51:46 +02:00
|
|
|
"⚠️ No, $USERNAME, has guest rights only."
|
2023-10-19 08:12:00 +02:00
|
|
|
} else {
|
2024-08-15 09:51:46 +02:00
|
|
|
"⚠️ No, $USERNAME has normal user rights only."
|
2023-10-19 08:12:00 +02:00
|
|
|
}
|
|
|
|
}
|
2024-08-15 09:51:46 +02:00
|
|
|
exit 0 # success
|
2023-10-19 08:12:00 +02:00
|
|
|
} catch {
|
2024-08-15 09:51:46 +02:00
|
|
|
"⚠️ Error: $($Error[0]) (in script line $($_.InvocationInfo.ScriptLineNumber))"
|
|
|
|
exit 1
|
2023-10-19 08:12:00 +02:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2024-08-15 09:51:46 +02:00
|
|
|
*(generated by convert-ps2md.ps1 using the comment-based help of check-admin.ps1 as of 08/15/2024 09:50:45)*
|