{"id":14064487,"url":"https://github.com/TechDufus/AdminToolkit","last_synced_at":"2025-07-29T18:32:39.339Z","repository":{"id":43819417,"uuid":"285718287","full_name":"TechDufus/AdminToolkit","owner":"TechDufus","description":"Miscellaneous functions and utilities for System Administrators.","archived":false,"fork":false,"pushed_at":"2023-07-21T17:06:10.000Z","size":275,"stargazers_count":16,"open_issues_count":4,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-08-14T07:07:14.269Z","etag":null,"topics":["powershell"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TechDufus.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null},"funding":{"github":"TechDufus"}},"created_at":"2020-08-07T02:29:59.000Z","updated_at":"2024-06-02T08:48:43.000Z","dependencies_parsed_at":"2024-02-15T00:46:26.146Z","dependency_job_id":null,"html_url":"https://github.com/TechDufus/AdminToolkit","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechDufus%2FAdminToolkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechDufus%2FAdminToolkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechDufus%2FAdminToolkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechDufus%2FAdminToolkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TechDufus","download_url":"https://codeload.github.com/TechDufus/AdminToolkit/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228040676,"owners_count":17860211,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["powershell"],"created_at":"2024-08-13T07:03:53.497Z","updated_at":"2024-12-04T03:30:55.418Z","avatar_url":"https://github.com/TechDufus.png","language":"PowerShell","funding_links":["https://github.com/sponsors/TechDufus"],"categories":["PowerShell"],"sub_categories":[],"readme":"# AdminToolkit\nPowerShell Module to assist Windows Admins. This contains many useful administration and utility functions.\n\n\u003c!-- [![Build Status](https://dev.azure.com/TechDufus/AdminToolkit/_apis/build/status/TechDufus.AdminToolkit?branchName=master)](https://dev.azure.com/TechDufus/AdminToolkit/_build/latest?definitionId=1\u0026branchName=master) --\u003e\n[![Build](https://github.com/TechDufus/AdminToolkit/workflows/Build%20and%20Publish/badge.svg)](https://github.com/TechDufus/AdminToolkit/actions?query=workflow%3A%22Build+%2B+and+%2B+Publish%22)\n[![PSGallery](https://img.shields.io/powershellgallery/v/AdminToolkit?color=G\u0026label=PowerShell%20Gallery)](https://www.powershellgallery.com/packages/AdminToolkit/)\n[![Downloads](https://img.shields.io/powershellgallery/dt/AdminToolkit?label=Downloads)](https://www.powershellgallery.com/packages/AdminToolkit/)\n[![License](https://img.shields.io/github/license/TechDufus/AdminToolkit?color=g\u0026label=License)](https://github.com/TechDufus/AdminToolkit/blob/master/LICENSE)\n![CodeSize](https://img.shields.io/github/languages/code-size/TechDufus/AdminToolkit?label=Code%20Size)\n\u003c!--\n[![Known Vulnerabilities](https://snyk.io/test/github/dwyl/hapi-auth-jwt2/badge.svg)](https://snyk.io/test/github/TechDufus/HelpDesk)\n--\u003e\n## Install from PowerShell Gallery\n```powershell\nInstall-Module AdminToolkit\n```\n## Update from PowerShell Gallery\n```powershell\nUpdate-Module AdminToolkit\n```\n\n## Installing with Git\n### For Windows PowerShell 5.1\n```powershell\n# For CurrentUser scope\ngit clone https://github.com/TechDufus/AdminToolkit.git ($env:PSModulePath -split ';')[0]\n\n# For AllUsers scope. Must be Admin.\ngit clone https://github.com/TechDufus/AdminToolkit.git ($env:PSModulePath -split ';')[2]\n```\n### For PowerShell 6.0+\n```powershell\n# For CurrentUser scope\ngit clone https://github.com/TechDufus/AdminToolkit.git $PSGetPath.CurrentUserModules\n\n# For AllUsers scope. Must be Admin.\ngit clone https://github.com/TechDufus/AdminToolkit.git $PSGetPath.AllUsersModules\n```\n\nPowerShell will now Auto-Load the commands in this module.\n\n## Updating with Git\nNavigate into the cloned AdminToolkit folder and run `git pull` to pull the current main (master) branch.\n### For Windows PowerShell 5.1\n```powershell\n# For CurrentUser scope\nSet-Location (Join-Path -Path ($env:PSModulePath -split ';')[0] -ChildPath AdminToolkit)\ngit pull\n\n# For AllUsers scope. Must be Admin.\nSet-Location (Join-Path -Path ($env:PSModulePath -split ';')[2] -ChildPath AdminToolkit)\ngit pull\n```\n### For PowerShell 6.0+\n```powershell\n# For CurrentUser scope\nSet-Location (Join-Path -Path $PSGetPath.CurrentUserModules -ChildPath AdminToolkit)\ngit pull\n\n#For AllUsers scope. Must be Admin\nSet-Location (Join-Path -Path $PSGetPath.AllUsersModules -ChildPath AdminToolkit)\ngit pull\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTechDufus%2FAdminToolkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FTechDufus%2FAdminToolkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTechDufus%2FAdminToolkit/lists"}