diff --git a/CHANGELOG.md b/CHANGELOG.md index 8656e7f..bbbbd3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog for HelpDesk +## v1.1.0.3 + +`Documentation`: + +Updating the Repo owner name to `TechDufus`. + - This was a rename of the repo, not an ownership change. + - I feel this warranted a version bump to get this updated in all help docs for this module. + ## v1.1.0.2 `Get-LockedOutADUsers`: Aliased as `GLO` diff --git a/Functions/Private/Get-PlainText.ps1 b/Functions/Private/Get-PlainText.ps1 index 713e54a..abd255c 100644 --- a/Functions/Private/Get-PlainText.ps1 +++ b/Functions/Private/Get-PlainText.ps1 @@ -6,7 +6,7 @@ .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus #> Function Get-PlainText() { [CmdletBinding()] @@ -30,4 +30,4 @@ Function Get-PlainText() { } end { } } -#EndRegion Get-PlainText \ No newline at end of file +#EndRegion Get-PlainText diff --git a/Functions/Private/Set-Password.ps1 b/Functions/Private/Set-Password.ps1 index a4c81e1..3dd4b49 100644 --- a/Functions/Private/Set-Password.ps1 +++ b/Functions/Private/Set-Password.ps1 @@ -14,7 +14,7 @@ .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus #> Function Set-Password { [CmdletBinding()] @@ -31,4 +31,4 @@ Function Set-Password { Set-ADUser -Identity $Username -ChangePasswordAtLogon $true } } -#EndRegion Set-Password \ No newline at end of file +#EndRegion Set-Password diff --git a/Functions/Public/Add-LocalAdmin.ps1 b/Functions/Public/Add-LocalAdmin.ps1 index bebc9fc..1e687fb 100644 --- a/Functions/Public/Add-LocalAdmin.ps1 +++ b/Functions/Public/Add-LocalAdmin.ps1 @@ -32,11 +32,11 @@ .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk Azure AD Joined machines will require the user to first login to a computer with their domain account before adding their domain account as a local admin. The user logging in registers their SID so that the command is successful. @@ -79,4 +79,4 @@ Function Add-LocalAdmin() { end {} } -#EndRegion Add-LocalAdmin \ No newline at end of file +#EndRegion Add-LocalAdmin diff --git a/Functions/Public/Disable-Account.ps1 b/Functions/Public/Disable-Account.ps1 index c904d14..5126df5 100644 --- a/Functions/Public/Disable-Account.ps1 +++ b/Functions/Public/Disable-Account.ps1 @@ -33,11 +33,11 @@ .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> Function Disable-Account() { [CmdletBinding()] @@ -47,4 +47,4 @@ Function Disable-Account() { Disable-ADAccount -Identity $Username -Confirm } -#EndRegion Disable-Account \ No newline at end of file +#EndRegion Disable-Account diff --git a/Functions/Public/Enable-Account.ps1 b/Functions/Public/Enable-Account.ps1 index b20ce74..a3838cd 100644 --- a/Functions/Public/Enable-Account.ps1 +++ b/Functions/Public/Enable-Account.ps1 @@ -33,11 +33,11 @@ .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> Function Enable-Account() { [CmdletBinding()] @@ -48,4 +48,4 @@ Function Enable-Account() { Enable-ADAccount -Identity $Username -Confirm } -#EndRegion Enable-Account \ No newline at end of file +#EndRegion Enable-Account diff --git a/Functions/Public/Get-ADGroupsManagedByUser.ps1 b/Functions/Public/Get-ADGroupsManagedByUser.ps1 index ffad92b..9a9040a 100644 --- a/Functions/Public/Get-ADGroupsManagedByUser.ps1 +++ b/Functions/Public/Get-ADGroupsManagedByUser.ps1 @@ -15,11 +15,11 @@ This will generate all groups (Security or Distribution) Managed by `mjdegar`. .NOTES Author: Matthew J. DeGarmo - Handle: @matthewjdegarmo + Handle: @TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> Function Get-ADGroupsManagedByUser() { [CmdletBinding()] @@ -37,4 +37,4 @@ Function Get-ADGroupsManagedByUser() { Write-Error "$($_.Exception.Message) - Line Number: $($_.InvocationInfo.ScriptLineNumber)" } } -#EndRegion Get-ADGroupsManagedByUser \ No newline at end of file +#EndRegion Get-ADGroupsManagedByUser diff --git a/Functions/Public/Get-Computer.ps1 b/Functions/Public/Get-Computer.ps1 index 34abbd0..abbb972 100644 --- a/Functions/Public/Get-Computer.ps1 +++ b/Functions/Public/Get-Computer.ps1 @@ -77,11 +77,11 @@ PS>Get-Computer -FilePath .\Computers.txt .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk Change Log: @@ -161,4 +161,4 @@ Function Get-Computer() { } end {} } -#EndRegion Get-Computer \ No newline at end of file +#EndRegion Get-Computer diff --git a/Functions/Public/Get-DaysUntil.ps1 b/Functions/Public/Get-DaysUntil.ps1 index 98a0d4d..45249f0 100644 --- a/Functions/Public/Get-DaysUntil.ps1 +++ b/Functions/Public/Get-DaysUntil.ps1 @@ -37,11 +37,11 @@ See `Get-Help Get-DaysUntil -Parameter Date` for example date formats. .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> Function Get-DaysUntil() { [CmdletBinding()] @@ -60,4 +60,4 @@ Function Get-DaysUntil() { $Days } -#EndRegion Get-DaysUntil \ No newline at end of file +#EndRegion Get-DaysUntil diff --git a/Functions/Public/Get-DellTags.ps1 b/Functions/Public/Get-DellTags.ps1 index 090be36..176c8c6 100644 --- a/Functions/Public/Get-DellTags.ps1 +++ b/Functions/Public/Get-DellTags.ps1 @@ -45,11 +45,11 @@ Providing the -ComputerName will attempt to generate this information if the computer is online, and it is a Dell computer. .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> Function Get-DellTags() { [cmdletBinding(DefaultParameterSetName='ComputerName')] @@ -102,4 +102,4 @@ Function Get-DellTags() { end {} } -#EndRegion Get-DellTags \ No newline at end of file +#EndRegion Get-DellTags diff --git a/Functions/Public/Get-LocalAdmin.ps1 b/Functions/Public/Get-LocalAdmin.ps1 index f3c50a3..69eb5f9 100644 --- a/Functions/Public/Get-LocalAdmin.ps1 +++ b/Functions/Public/Get-LocalAdmin.ps1 @@ -26,11 +26,11 @@ .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> #Requires -Assembly C:\Windows\system32\net.exe Function Get-LocalAdmin() { @@ -48,4 +48,4 @@ Function Get-LocalAdmin() { } $NetAdminObject[6..(($NetAdminObject.count) - 3)] } -#EndRegion Get-LocalAdmin \ No newline at end of file +#EndRegion Get-LocalAdmin diff --git a/Functions/Public/Get-LockedOutADUsers.ps1 b/Functions/Public/Get-LockedOutADUsers.ps1 index 825c6cd..5d6e494 100644 --- a/Functions/Public/Get-LockedOutADUsers.ps1 +++ b/Functions/Public/Get-LockedOutADUsers.ps1 @@ -71,12 +71,12 @@ This will show all users who are currently locked out, while displaying a message letting you know you do not have rights to read these events from the Domain Controller. .NOTES Author: Matthew.DeGarmo - Github: https://github.com/matthewjdegarmo - Sponsor: https://github.com/sponsors/matthewjdegarmo + Github: https://github.com/TechDufus + Sponsor: https://github.com/sponsors/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> Function Get-LockedOutADUsers() { [CmdletBinding()] @@ -140,4 +140,4 @@ Function Get-LockedOutADUsers() { } } } -#EndRegion Get-LockedOutADUsers \ No newline at end of file +#EndRegion Get-LockedOutADUsers diff --git a/Functions/Public/Get-LockoutSource.ps1 b/Functions/Public/Get-LockoutSource.ps1 index c5cde51..c1231ac 100644 --- a/Functions/Public/Get-LockoutSource.ps1 +++ b/Functions/Public/Get-LockoutSource.ps1 @@ -29,8 +29,8 @@ ----------- This will get the lockout (4740) events log from the current domain controller for the Administrator user. .NOTES - Author: matthewjdegarmo - GitHub: https://github.com/matthewjdegarmo + Author: TechDufus + GitHub: https://github.com/TechDufus #> Function Get-LockoutSource() { [CmdletBinding()] diff --git a/Functions/Public/Get-User.ps1 b/Functions/Public/Get-User.ps1 index 4c12944..6910fa1 100644 --- a/Functions/Public/Get-User.ps1 +++ b/Functions/Public/Get-User.ps1 @@ -54,11 +54,11 @@ This shows the usage of the alias `LU`, which points to the old command name `Lookup`, which now points to `Get-User` .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk Change Log: @@ -150,4 +150,4 @@ Function Get-User() { } } } -#EndRegion Get-User \ No newline at end of file +#EndRegion Get-User diff --git a/Functions/Public/Get-UserProfile.ps1 b/Functions/Public/Get-UserProfile.ps1 index 5edf6a4..ee69c3a 100644 --- a/Functions/Public/Get-UserProfile.ps1 +++ b/Functions/Public/Get-UserProfile.ps1 @@ -21,11 +21,11 @@ This will retrieve User Profile CIM Objects from the remote PC. .NOTES Author: Matthew J. DeGarmo - Handle: @matthewjdegarmo + Handle: @TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> Function Get-UserProfile() { [CmdletBinding()] @@ -58,4 +58,4 @@ Function Get-UserProfile() { End {} } -#EndRegion Get-UserProfile \ No newline at end of file +#EndRegion Get-UserProfile diff --git a/Functions/Public/Get-UsersWithFirstName.ps1 b/Functions/Public/Get-UsersWithFirstName.ps1 index 0da3664..4af3eb6 100644 --- a/Functions/Public/Get-UsersWithFirstName.ps1 +++ b/Functions/Public/Get-UsersWithFirstName.ps1 @@ -49,11 +49,11 @@ This example shows using the alias for this function. The alias is FName. .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> Function Get-UsersWithFirstName() { [CmdletBinding()] @@ -131,4 +131,4 @@ Function Get-UsersWithFirstName() { } } } -#EndRegion Get-UsersWithFirstName \ No newline at end of file +#EndRegion Get-UsersWithFirstName diff --git a/Functions/Public/Get-UsersWithLastName.ps1 b/Functions/Public/Get-UsersWithLastName.ps1 index cf89ce6..3e70554 100644 --- a/Functions/Public/Get-UsersWithLastName.ps1 +++ b/Functions/Public/Get-UsersWithLastName.ps1 @@ -48,11 +48,11 @@ This example shows using the alias for this function. The alias is LName. .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> Function Get-UsersWithLastName() { [CmdletBinding()] @@ -131,4 +131,4 @@ Function Get-UsersWithLastName() { } } } -#EndRegion Get-UsersWithLastName \ No newline at end of file +#EndRegion Get-UsersWithLastName diff --git a/Functions/Public/New-Password.ps1 b/Functions/Public/New-Password.ps1 index aea49d9..16c676d 100644 --- a/Functions/Public/New-Password.ps1 +++ b/Functions/Public/New-Password.ps1 @@ -39,11 +39,11 @@ .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> Function New-Password() { [CmdletBinding()] @@ -94,4 +94,4 @@ Function New-Password() { } } } -#EndRegion New-Password \ No newline at end of file +#EndRegion New-Password diff --git a/Functions/Public/Remove-LocalAdmin.ps1 b/Functions/Public/Remove-LocalAdmin.ps1 index 553fb29..aa60b0a 100644 --- a/Functions/Public/Remove-LocalAdmin.ps1 +++ b/Functions/Public/Remove-LocalAdmin.ps1 @@ -25,11 +25,11 @@ .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk Azure AD Joined machines will require the user to first login to a computer with their domain account before adding their domain account as a local admin. The user logging in registers their SID so that the command is successful. @@ -72,4 +72,4 @@ Function Remove-LocalAdmin() { end {} } -#EndRegion Remove-LocalAdmin \ No newline at end of file +#EndRegion Remove-LocalAdmin diff --git a/Functions/Public/Remove-UserProfile.ps1 b/Functions/Public/Remove-UserProfile.ps1 index cd66007..da39238 100644 --- a/Functions/Public/Remove-UserProfile.ps1 +++ b/Functions/Public/Remove-UserProfile.ps1 @@ -37,11 +37,11 @@ This will remove all user profiles EXCEPT for the ones listed in the `-Except` parameter. .NOTES Author: Matthew J. DeGarmo - Handle: @matthewjdegarmo + Handle: @TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> Function Remove-UserProfile() { [CmdletBinding(SupportsShouldProcess, ConfirmImpact = 'High', DefaultParameterSetName = 'Named')] diff --git a/Functions/Public/Reset-Password.ps1 b/Functions/Public/Reset-Password.ps1 index d9f3234..e946f70 100644 --- a/Functions/Public/Reset-Password.ps1 +++ b/Functions/Public/Reset-Password.ps1 @@ -29,11 +29,11 @@ .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> Function Reset-Password() { [CmdletBinding()] @@ -86,4 +86,4 @@ Function Reset-Password() { Write-Error "$($_.Exception.Message)" } } -#EndRegion Reset-Password \ No newline at end of file +#EndRegion Reset-Password diff --git a/Functions/Public/Send-DesktopPopupMessage.ps1 b/Functions/Public/Send-DesktopPopupMessage.ps1 index 9d4a79e..95b6b56 100644 --- a/Functions/Public/Send-DesktopPopupMessage.ps1 +++ b/Functions/Public/Send-DesktopPopupMessage.ps1 @@ -30,11 +30,11 @@ This will create a small popup window on the target computer with the message text, and the From: and ComputerName: information at the bottom. .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> Function Send-DesktopPopupMessage() { [CmdletBinding()] @@ -83,4 +83,4 @@ Source: $using:LocalComputer" } } } -#EndRegion Send-DesktopPopupMessage \ No newline at end of file +#EndRegion Send-DesktopPopupMessage diff --git a/Functions/Public/Start-MSRA.ps1 b/Functions/Public/Start-MSRA.ps1 index 0650483..42bd88c 100644 --- a/Functions/Public/Start-MSRA.ps1 +++ b/Functions/Public/Start-MSRA.ps1 @@ -15,11 +15,11 @@ This example shows how to call the Start-MSRA function and automatically connect to the remote computer. .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> Function Start-MSRA() { [CmdletBinding()] @@ -43,4 +43,4 @@ Function Start-MSRA() { } } } -#EndRegion Start-MSRA \ No newline at end of file +#EndRegion Start-MSRA diff --git a/Functions/Public/Test-Administrator.ps1 b/Functions/Public/Test-Administrator.ps1 index 32763fe..c1fc356 100644 --- a/Functions/Public/Test-Administrator.ps1 +++ b/Functions/Public/Test-Administrator.ps1 @@ -15,11 +15,11 @@ This will return a boolean based on if the user is an admin or not. .NOTES Author: Matthew J. DeGarmo - Handle: @matthewjdegarmo + Handle: @TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> Function Test-Administrator() { [CmdletBinding()] @@ -28,4 +28,4 @@ Function Test-Administrator() { ) (New-Object Security.Principal.WindowsPrincipal $user).IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator) } -#EndRegion Test-Administrator \ No newline at end of file +#EndRegion Test-Administrator diff --git a/Functions/Public/Unlock-LockedOutADUsers.ps1 b/Functions/Public/Unlock-LockedOutADUsers.ps1 index 46efc51..44d9064 100644 --- a/Functions/Public/Unlock-LockedOutADUsers.ps1 +++ b/Functions/Public/Unlock-LockedOutADUsers.ps1 @@ -28,11 +28,11 @@ A short-handed command for this using aliases: PS> glo | ul .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> Function Unlock-LockedOutADUsers() { [CmdletBinding()] @@ -56,4 +56,4 @@ Function Unlock-LockedOutADUsers() { } } } -#EndRegion Unlock-LockedOutADUsers \ No newline at end of file +#EndRegion Unlock-LockedOutADUsers diff --git a/Functions/Public/Watch-Connection.ps1 b/Functions/Public/Watch-Connection.ps1 index 0b191c0..e1912ee 100644 --- a/Functions/Public/Watch-Connection.ps1 +++ b/Functions/Public/Watch-Connection.ps1 @@ -38,11 +38,11 @@ This will loop through a `Test-Connection -Count 1` command against 'SomeComputer'. .NOTES Author: Matthew J. DeGarmo - GitHub: https://github.com/matthewjdegarmo + GitHub: https://github.com/TechDufus - You can either submit a [PR](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an [Issue](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk + You can either submit a [PR](https://github.com/TechDufus/HelpDesk/pulls) + or create an [Issue](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk #> Function Watch-Connection() { [cmdletbinding()] @@ -111,4 +111,4 @@ Function Watch-Connection() { end {} } -#EndRegion Watch-Connection \ No newline at end of file +#EndRegion Watch-Connection diff --git a/HelpDesk.psd1 b/HelpDesk.psd1 index 1a69417..d594a86 100644 --- a/HelpDesk.psd1 +++ b/HelpDesk.psd1 @@ -12,7 +12,7 @@ RootModule = 'HelpDesk.psm1' # Version number of this module. -ModuleVersion = '1.1.0.2' +ModuleVersion = '1.1.0.3' # Supported PSEditions CompatiblePSEditions = @('Desktop','Core') @@ -24,7 +24,7 @@ GUID = '5c937704-b89c-4f49-a324-f01d85ebb4a9' Author = 'Matthew J. DeGarmo' # Company or vendor of this module -CompanyName = 'https://matthewjdegarmo.com' +CompanyName = 'https://TechDufus.com' # Copyright statement for this module Copyright = '(c) Matthew J. DeGarmo. All rights reserved.' @@ -104,16 +104,16 @@ PrivateData = @{ # Tags = @() # A URL to the license for this module. - LicenseUri = 'https://github.com/matthewjdegarmo/HelpDesk/blob/master/LICENSE' + LicenseUri = 'https://github.com/TechDufus/HelpDesk/blob/master/LICENSE' # A URL to the main website for this project. - ProjectUri = 'https://github.com/matthewjdegarmo/HelpDesk/' + ProjectUri = 'https://github.com/TechDufus/HelpDesk/' # A URL to an icon representing this module. # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = 'https://github.com/matthewjdegarmo/HelpDesk/CHANGELOG.md' + ReleaseNotes = 'https://github.com/TechDufus/HelpDesk/CHANGELOG.md' # Prerelease string of this module # Prerelease = '' diff --git a/README.md b/README.md index 55fc684..648d459 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # HelpDesk Many useful ActiveDirectory and other admin-type utilities typical in a HelpDesk role. - + [![Build](https://github.com/techdufus/HelpDesk/workflows/Build%20and%20Publish/badge.svg)](https://github.com/techdufus/HelpDesk/actions?query=workflow%3A%22Version+Check+%2B+Publish+to+PSGallery%22) [![PSGallery](https://img.shields.io/powershellgallery/v/HelpDesk?color=G&label=PowerShell%20Gallery)](https://www.powershellgallery.com/packages/HelpDesk/) [![Downloads](https://img.shields.io/powershellgallery/dt/HelpDesk?label=Downloads)](https://www.powershellgallery.com/packages/HelpDesk/) diff --git a/docs/Add-LocalAdmin.md b/docs/Add-LocalAdmin.md index c58538a..a2da208 100644 --- a/docs/Add-LocalAdmin.md +++ b/docs/Add-LocalAdmin.md @@ -90,11 +90,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk Azure AD Joined machines will require the user to first login to a computer with their domain account before adding their domain account as a local admin. The user logging in registers their SID so that the command is successful. diff --git a/docs/Disable-Account.md b/docs/Disable-Account.md index 8b9d076..7fd56be 100644 --- a/docs/Disable-Account.md +++ b/docs/Disable-Account.md @@ -68,10 +68,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk ## RELATED LINKS diff --git a/docs/Enable-Account.md b/docs/Enable-Account.md index 3847271..a31d3a9 100644 --- a/docs/Enable-Account.md +++ b/docs/Enable-Account.md @@ -68,10 +68,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk ## RELATED LINKS diff --git a/docs/Get-ADGroupsManagedByUser.md b/docs/Get-ADGroupsManagedByUser.md index 0222c4a..566be90 100644 --- a/docs/Get-ADGroupsManagedByUser.md +++ b/docs/Get-ADGroupsManagedByUser.md @@ -50,10 +50,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -Handle: @matthewjdegarmo +Handle: @TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk ## RELATED LINKS diff --git a/docs/Get-Computer.md b/docs/Get-Computer.md index 0ee8b26..5a7ff34 100644 --- a/docs/Get-Computer.md +++ b/docs/Get-Computer.md @@ -141,11 +141,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk Change Log: diff --git a/docs/Get-DaysUntil.md b/docs/Get-DaysUntil.md index b1194fe..6afab9a 100644 --- a/docs/Get-DaysUntil.md +++ b/docs/Get-DaysUntil.md @@ -75,10 +75,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk ## RELATED LINKS diff --git a/docs/Get-DellTags.md b/docs/Get-DellTags.md index eec0a76..72ae895 100644 --- a/docs/Get-DellTags.md +++ b/docs/Get-DellTags.md @@ -123,10 +123,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk ## RELATED LINKS diff --git a/docs/Get-LocalAdmin.md b/docs/Get-LocalAdmin.md index 005e8bf..1c55a6e 100644 --- a/docs/Get-LocalAdmin.md +++ b/docs/Get-LocalAdmin.md @@ -1,5 +1,4 @@ # Get-LocalAdmin - ## SYNOPSIS Retrieves a list of users in the local Administrators group. @@ -59,11 +58,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk Requires -Assembly C:\Windows\system32\net.exe diff --git a/docs/Get-LockedOutADUsers.md b/docs/Get-LockedOutADUsers.md index df8cf12..2ffbc4d 100644 --- a/docs/Get-LockedOutADUsers.md +++ b/docs/Get-LockedOutADUsers.md @@ -55,10 +55,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk ## RELATED LINKS diff --git a/docs/Get-User.md b/docs/Get-User.md index 1c5ab8b..fb466ba 100644 --- a/docs/Get-User.md +++ b/docs/Get-User.md @@ -125,11 +125,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk Change Log: diff --git a/docs/Get-UserProfile.md b/docs/Get-UserProfile.md index 48c003d..4a48781 100644 --- a/docs/Get-UserProfile.md +++ b/docs/Get-UserProfile.md @@ -60,10 +60,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -Handle: @matthewjdegarmo +Handle: @TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk ## RELATED LINKS diff --git a/docs/Get-UsersWithFirstName.md b/docs/Get-UsersWithFirstName.md index 9e5e96f..ab7fc15 100644 --- a/docs/Get-UsersWithFirstName.md +++ b/docs/Get-UsersWithFirstName.md @@ -107,10 +107,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk ## RELATED LINKS diff --git a/docs/Get-UsersWithLastName.md b/docs/Get-UsersWithLastName.md index 6201f4f..932a8ed 100644 --- a/docs/Get-UsersWithLastName.md +++ b/docs/Get-UsersWithLastName.md @@ -106,10 +106,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk ## RELATED LINKS diff --git a/docs/New-Password.md b/docs/New-Password.md index 1fe9566..5caafed 100644 --- a/docs/New-Password.md +++ b/docs/New-Password.md @@ -123,10 +123,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk ## RELATED LINKS diff --git a/docs/Remove-LocalAdmin.md b/docs/Remove-LocalAdmin.md index 65b6662..3e0da08 100644 --- a/docs/Remove-LocalAdmin.md +++ b/docs/Remove-LocalAdmin.md @@ -80,11 +80,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk Azure AD Joined machines will require the user to first login to a computer with their domain account before adding their domain account as a local admin. The user logging in registers their SID so that the command is successful. diff --git a/docs/Remove-UserProfile.md b/docs/Remove-UserProfile.md index 2c70328..c507ddd 100644 --- a/docs/Remove-UserProfile.md +++ b/docs/Remove-UserProfile.md @@ -158,10 +158,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -Handle: @matthewjdegarmo +Handle: @TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk ## RELATED LINKS diff --git a/docs/Reset-Password.md b/docs/Reset-Password.md index 5c263ed..a94a319 100644 --- a/docs/Reset-Password.md +++ b/docs/Reset-Password.md @@ -118,10 +118,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk ## RELATED LINKS diff --git a/docs/Send-DesktopPopupMessage.md b/docs/Send-DesktopPopupMessage.md index 8450ff6..87f6a4b 100644 --- a/docs/Send-DesktopPopupMessage.md +++ b/docs/Send-DesktopPopupMessage.md @@ -96,10 +96,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk ## RELATED LINKS diff --git a/docs/Start-MSRA.md b/docs/Start-MSRA.md index 7617fa7..9f109d0 100644 --- a/docs/Start-MSRA.md +++ b/docs/Start-MSRA.md @@ -53,10 +53,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk ## RELATED LINKS diff --git a/docs/Test-Administrator.md b/docs/Test-Administrator.md index f32dbeb..0dce8ce 100644 --- a/docs/Test-Administrator.md +++ b/docs/Test-Administrator.md @@ -51,10 +51,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -Handle: @matthewjdegarmo +Handle: @TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk ## RELATED LINKS diff --git a/docs/Unlock-LockedOutADUsers.md b/docs/Unlock-LockedOutADUsers.md index 5605020..1ff9ee4 100644 --- a/docs/Unlock-LockedOutADUsers.md +++ b/docs/Unlock-LockedOutADUsers.md @@ -65,10 +65,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk ## RELATED LINKS diff --git a/docs/Watch-Connection.md b/docs/Watch-Connection.md index 2f8f49a..9adb3d0 100644 --- a/docs/Watch-Connection.md +++ b/docs/Watch-Connection.md @@ -145,10 +145,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES Author: Matthew J. DeGarmo -GitHub: https://github.com/matthewjdegarmo +GitHub: https://github.com/TechDufus -You can either submit a \[PR\](https://github.com/matthewjdegarmo/HelpDesk/pulls) - or create an \[Issue\](https://github.com/matthewjdegarmo/HelpDesk/issues/new) - on this GitHub project at https://github.com/matthewjdegarmo/HelpDesk +You can either submit a \[PR\](https://github.com/TechDufus/HelpDesk/pulls) + or create an \[Issue\](https://github.com/TechDufus/HelpDesk/issues/new) + on this GitHub project at https://github.com/TechDufus/HelpDesk ## RELATED LINKS