├── Bash ├── ChangeHostname.sh ├── CheckForAdminAccount.sh ├── Ignore Catalina.sh ├── InstallPrinter.sh ├── MessagePopupAndRebootAtTime.sh ├── RemovePrintersByName.sh ├── SetTimeToSydney.sh └── UninstallApplicationIfInstalled.sh ├── LICENSE ├── Powershell ├── API │ ├── AirwatchRESTAPI.ps1 │ ├── InfobloxRESTAPI.ps1 │ ├── OktaRESTAPI.ps1 │ └── TrelloRESTAPI.ps1 ├── Active Directory │ ├── ChangeADPassword.ps1 │ ├── CheckADReplication.ps1 │ ├── CheckGroupReplication.ps1 │ ├── ForceChangeDomainController.ps1 │ ├── GetADGroupMembership │ ├── InactiveComputerObjects.ps1 │ └── RejoinHostToDomain.ps1 ├── Exchange │ ├── AutomaticOutlookSignature.ps1 │ ├── DeleteOSTFileForAllUsers.ps1 │ ├── DisableBulkUserMailboxes.ps1 │ ├── ExportMailboxesFromDatabase.ps1 │ ├── FindMoveRequestsFromDateAndDatabase.ps1 │ ├── GetBiggestItemsInMailbox.ps1 │ ├── GetNumberOfMailboxesPerDatabase.ps1 │ ├── GetTop50BiggestMailboxes.ps1 │ ├── MoveMailboxesAfterTime.ps1 │ └── SetOutOfOfficeForUser.ps1 ├── Generic │ └── ExportCSVNoHeader.ps1 ├── VMWare │ ├── AddDiskToVM.ps1 │ ├── VMShutdown.ps1 │ └── VMshutdownanddelete.ps1 ├── Windows │ ├── AirwatchDevicesBelongingToDisabledUser.ps1 │ ├── AutoDownloadLatestApp.ps1 │ ├── ChangeTimezonetoAEST.ps1 │ ├── CheckForLocalAdminUser.ps1 │ ├── CheckHostUserLogonHistory.ps1 │ ├── CheckLastLoggedOnUsers.ps1 │ ├── CheckOfficeRunning.ps1 │ ├── ConvertOfficeMAKKeyToKMS.ps1 │ ├── CopyMostRecentFileToFolder.ps1 │ ├── CreateLocalAdminUser.ps1 │ ├── CreateRegKey.ps1 │ ├── DeleteOSTFileForAllUsers.ps1 │ ├── ForceWSUSClientCheckin.ps1 │ ├── GetLoggedOnUser.ps1 │ ├── InstalRSATs1909.ps1 │ ├── LogOffDisconnectedUsers.ps1 │ ├── MassPing.ps1 │ ├── MeetingRoomDiskSpace.ps1 │ ├── PrintNightmareVulnerability.ps1 │ ├── RebootHostWithPrompt.ps1 │ ├── RemoveRegKeyPropertyIfExists.ps1 │ ├── RemoveTempUserProfilesRegistry.ps1 │ ├── RemoveUsersLocalAdmin.ps1 │ ├── RemoveWindowsPrinters.ps1 │ ├── StartSlideshow.ps1 │ └── UserPopupPrompt.ps1 └── imempty.txt └── README.md /Bash/ChangeHostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Bash/ChangeHostname.sh -------------------------------------------------------------------------------- /Bash/CheckForAdminAccount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Bash/CheckForAdminAccount.sh -------------------------------------------------------------------------------- /Bash/Ignore Catalina.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Bash/Ignore Catalina.sh -------------------------------------------------------------------------------- /Bash/InstallPrinter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Bash/InstallPrinter.sh -------------------------------------------------------------------------------- /Bash/MessagePopupAndRebootAtTime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Bash/MessagePopupAndRebootAtTime.sh -------------------------------------------------------------------------------- /Bash/RemovePrintersByName.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Bash/RemovePrintersByName.sh -------------------------------------------------------------------------------- /Bash/SetTimeToSydney.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Bash/SetTimeToSydney.sh -------------------------------------------------------------------------------- /Bash/UninstallApplicationIfInstalled.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Bash/UninstallApplicationIfInstalled.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /Powershell/API/AirwatchRESTAPI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/API/AirwatchRESTAPI.ps1 -------------------------------------------------------------------------------- /Powershell/API/InfobloxRESTAPI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/API/InfobloxRESTAPI.ps1 -------------------------------------------------------------------------------- /Powershell/API/OktaRESTAPI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/API/OktaRESTAPI.ps1 -------------------------------------------------------------------------------- /Powershell/API/TrelloRESTAPI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/API/TrelloRESTAPI.ps1 -------------------------------------------------------------------------------- /Powershell/Active Directory/ChangeADPassword.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Active Directory/ChangeADPassword.ps1 -------------------------------------------------------------------------------- /Powershell/Active Directory/CheckADReplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Active Directory/CheckADReplication.ps1 -------------------------------------------------------------------------------- /Powershell/Active Directory/CheckGroupReplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Active Directory/CheckGroupReplication.ps1 -------------------------------------------------------------------------------- /Powershell/Active Directory/ForceChangeDomainController.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Active Directory/ForceChangeDomainController.ps1 -------------------------------------------------------------------------------- /Powershell/Active Directory/GetADGroupMembership: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Active Directory/GetADGroupMembership -------------------------------------------------------------------------------- /Powershell/Active Directory/InactiveComputerObjects.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Active Directory/InactiveComputerObjects.ps1 -------------------------------------------------------------------------------- /Powershell/Active Directory/RejoinHostToDomain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Active Directory/RejoinHostToDomain.ps1 -------------------------------------------------------------------------------- /Powershell/Exchange/AutomaticOutlookSignature.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Exchange/AutomaticOutlookSignature.ps1 -------------------------------------------------------------------------------- /Powershell/Exchange/DeleteOSTFileForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Exchange/DeleteOSTFileForAllUsers.ps1 -------------------------------------------------------------------------------- /Powershell/Exchange/DisableBulkUserMailboxes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Exchange/DisableBulkUserMailboxes.ps1 -------------------------------------------------------------------------------- /Powershell/Exchange/ExportMailboxesFromDatabase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Exchange/ExportMailboxesFromDatabase.ps1 -------------------------------------------------------------------------------- /Powershell/Exchange/FindMoveRequestsFromDateAndDatabase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Exchange/FindMoveRequestsFromDateAndDatabase.ps1 -------------------------------------------------------------------------------- /Powershell/Exchange/GetBiggestItemsInMailbox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Exchange/GetBiggestItemsInMailbox.ps1 -------------------------------------------------------------------------------- /Powershell/Exchange/GetNumberOfMailboxesPerDatabase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Exchange/GetNumberOfMailboxesPerDatabase.ps1 -------------------------------------------------------------------------------- /Powershell/Exchange/GetTop50BiggestMailboxes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Exchange/GetTop50BiggestMailboxes.ps1 -------------------------------------------------------------------------------- /Powershell/Exchange/MoveMailboxesAfterTime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Exchange/MoveMailboxesAfterTime.ps1 -------------------------------------------------------------------------------- /Powershell/Exchange/SetOutOfOfficeForUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Exchange/SetOutOfOfficeForUser.ps1 -------------------------------------------------------------------------------- /Powershell/Generic/ExportCSVNoHeader.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Generic/ExportCSVNoHeader.ps1 -------------------------------------------------------------------------------- /Powershell/VMWare/AddDiskToVM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/VMWare/AddDiskToVM.ps1 -------------------------------------------------------------------------------- /Powershell/VMWare/VMShutdown.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/VMWare/VMShutdown.ps1 -------------------------------------------------------------------------------- /Powershell/VMWare/VMshutdownanddelete.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/VMWare/VMshutdownanddelete.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/AirwatchDevicesBelongingToDisabledUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/AirwatchDevicesBelongingToDisabledUser.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/AutoDownloadLatestApp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/AutoDownloadLatestApp.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/ChangeTimezonetoAEST.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/ChangeTimezonetoAEST.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/CheckForLocalAdminUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/CheckForLocalAdminUser.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/CheckHostUserLogonHistory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/CheckHostUserLogonHistory.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/CheckLastLoggedOnUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/CheckLastLoggedOnUsers.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/CheckOfficeRunning.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/CheckOfficeRunning.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/ConvertOfficeMAKKeyToKMS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/ConvertOfficeMAKKeyToKMS.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/CopyMostRecentFileToFolder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/CopyMostRecentFileToFolder.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/CreateLocalAdminUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/CreateLocalAdminUser.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/CreateRegKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/CreateRegKey.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/DeleteOSTFileForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/DeleteOSTFileForAllUsers.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/ForceWSUSClientCheckin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/ForceWSUSClientCheckin.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/GetLoggedOnUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/GetLoggedOnUser.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/InstalRSATs1909.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/InstalRSATs1909.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/LogOffDisconnectedUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/LogOffDisconnectedUsers.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/MassPing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/MassPing.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/MeetingRoomDiskSpace.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/MeetingRoomDiskSpace.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/PrintNightmareVulnerability.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/PrintNightmareVulnerability.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/RebootHostWithPrompt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/RebootHostWithPrompt.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/RemoveRegKeyPropertyIfExists.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/RemoveRegKeyPropertyIfExists.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/RemoveTempUserProfilesRegistry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/RemoveTempUserProfilesRegistry.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/RemoveUsersLocalAdmin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/RemoveUsersLocalAdmin.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/RemoveWindowsPrinters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/RemoveWindowsPrinters.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/StartSlideshow.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/StartSlideshow.ps1 -------------------------------------------------------------------------------- /Powershell/Windows/UserPopupPrompt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/Powershell/Windows/UserPopupPrompt.ps1 -------------------------------------------------------------------------------- /Powershell/imempty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusburst/scripts/HEAD/README.md --------------------------------------------------------------------------------