Skip to content

Commit

Permalink
Merge pull request #8 from TechDufus/rename_repo
Browse files Browse the repository at this point in the history
Renaming repo name in documentation.
  • Loading branch information
TechDufus authored Apr 13, 2023
2 parents d0e3dcc + 8c88728 commit 6d0ba61
Show file tree
Hide file tree
Showing 50 changed files with 218 additions and 211 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
4 changes: 2 additions & 2 deletions Functions/Private/Get-PlainText.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
.NOTES
Author: Matthew J. DeGarmo
GitHub: https://github.com/matthewjdegarmo
GitHub: https://github.com/TechDufus
#>
Function Get-PlainText() {
[CmdletBinding()]
Expand All @@ -30,4 +30,4 @@ Function Get-PlainText() {
}
end { }
}
#EndRegion Get-PlainText
#EndRegion Get-PlainText
4 changes: 2 additions & 2 deletions Functions/Private/Set-Password.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
.NOTES
Author: Matthew J. DeGarmo
GitHub: https://github.com/matthewjdegarmo
GitHub: https://github.com/TechDufus
#>
Function Set-Password {
[CmdletBinding()]
Expand All @@ -31,4 +31,4 @@ Function Set-Password {
Set-ADUser -Identity $Username -ChangePasswordAtLogon $true
}
}
#EndRegion Set-Password
#EndRegion Set-Password
10 changes: 5 additions & 5 deletions Functions/Public/Add-LocalAdmin.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -79,4 +79,4 @@ Function Add-LocalAdmin() {

end {}
}
#EndRegion Add-LocalAdmin
#EndRegion Add-LocalAdmin
10 changes: 5 additions & 5 deletions Functions/Public/Disable-Account.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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()]
Expand All @@ -47,4 +47,4 @@ Function Disable-Account() {

Disable-ADAccount -Identity $Username -Confirm
}
#EndRegion Disable-Account
#EndRegion Disable-Account
10 changes: 5 additions & 5 deletions Functions/Public/Enable-Account.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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()]
Expand All @@ -48,4 +48,4 @@ Function Enable-Account() {

Enable-ADAccount -Identity $Username -Confirm
}
#EndRegion Enable-Account
#EndRegion Enable-Account
10 changes: 5 additions & 5 deletions Functions/Public/Get-ADGroupsManagedByUser.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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()]
Expand All @@ -37,4 +37,4 @@ Function Get-ADGroupsManagedByUser() {
Write-Error "$($_.Exception.Message) - Line Number: $($_.InvocationInfo.ScriptLineNumber)"
}
}
#EndRegion Get-ADGroupsManagedByUser
#EndRegion Get-ADGroupsManagedByUser
10 changes: 5 additions & 5 deletions Functions/Public/Get-Computer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -161,4 +161,4 @@ Function Get-Computer() {
}
end {}
}
#EndRegion Get-Computer
#EndRegion Get-Computer
10 changes: 5 additions & 5 deletions Functions/Public/Get-DaysUntil.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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()]
Expand All @@ -60,4 +60,4 @@ Function Get-DaysUntil() {

$Days
}
#EndRegion Get-DaysUntil
#EndRegion Get-DaysUntil
10 changes: 5 additions & 5 deletions Functions/Public/Get-DellTags.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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')]
Expand Down Expand Up @@ -102,4 +102,4 @@ Function Get-DellTags() {

end {}
}
#EndRegion Get-DellTags
#EndRegion Get-DellTags
10 changes: 5 additions & 5 deletions Functions/Public/Get-LocalAdmin.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand All @@ -48,4 +48,4 @@ Function Get-LocalAdmin() {
}
$NetAdminObject[6..(($NetAdminObject.count) - 3)]
}
#EndRegion Get-LocalAdmin
#EndRegion Get-LocalAdmin
12 changes: 6 additions & 6 deletions Functions/Public/Get-LockedOutADUsers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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()]
Expand Down Expand Up @@ -140,4 +140,4 @@ Function Get-LockedOutADUsers() {
}
}
}
#EndRegion Get-LockedOutADUsers
#EndRegion Get-LockedOutADUsers
4 changes: 2 additions & 2 deletions Functions/Public/Get-LockoutSource.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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()]
Expand Down
10 changes: 5 additions & 5 deletions Functions/Public/Get-User.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -150,4 +150,4 @@ Function Get-User() {
}
}
}
#EndRegion Get-User
#EndRegion Get-User
10 changes: 5 additions & 5 deletions Functions/Public/Get-UserProfile.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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()]
Expand Down Expand Up @@ -58,4 +58,4 @@ Function Get-UserProfile() {

End {}
}
#EndRegion Get-UserProfile
#EndRegion Get-UserProfile
10 changes: 5 additions & 5 deletions Functions/Public/Get-UsersWithFirstName.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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()]
Expand Down Expand Up @@ -131,4 +131,4 @@ Function Get-UsersWithFirstName() {
}
}
}
#EndRegion Get-UsersWithFirstName
#EndRegion Get-UsersWithFirstName
10 changes: 5 additions & 5 deletions Functions/Public/Get-UsersWithLastName.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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()]
Expand Down Expand Up @@ -131,4 +131,4 @@ Function Get-UsersWithLastName() {
}
}
}
#EndRegion Get-UsersWithLastName
#EndRegion Get-UsersWithLastName
10 changes: 5 additions & 5 deletions Functions/Public/New-Password.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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()]
Expand Down Expand Up @@ -94,4 +94,4 @@ Function New-Password() {
}
}
}
#EndRegion New-Password
#EndRegion New-Password
Loading

0 comments on commit 6d0ba61

Please sign in to comment.