This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Finds and removes file duplicates from the Downloads folder | |
.DESCRIPTION | |
Single .ps1 to clean up files stored in Downloads. It removes items opens to view (e.g. JPG and PDF) and Clears Duplicates. Based on Winston McMiller Duplicate File Finder and Remover | |
.PARAMETER DownloadPath | |
Specifies the folder used to store Chrome's Downloads. Default: %USERPROFIKE%\Downloads |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.Synopsis | |
Gets a list of Computer Objects in the supplied domain, including if they're online (pingable). | |
.DESCRIPTION | |
This script uses the ActiveDirectory module to get a list of all computer objects (optionally filtered). | |
It will also add an Online boolean attribute showing if the Computer is pingable or not. | |
.PARAMETER Domain | |
A String specifying the domain you'd like to audit | |
.PARAMETER Filter | |
A standard Filter to reduce the Computer Objects returned. By default all Computers object will be returned/ |
NewerOlder