Posts

Showing posts from December, 2019

Mike's Profile Cleanup Tool

Image
Mike's Profile Cleanup Tool This excludes by default the system profile that is listed under special, the default user that is executing this program script. This PowerShell Script pulls a list of user profiles that you can select which ones you want to exclude and then clean the profiles. This tool is useful for those computers that have old profiles on it and the users no longer need them.  #Created by Michael J. Thomas #Created on 12/27/2019 #Updated on 12/28/2019 # Use at your own risk. We are not responsible for any lost of data. # Thomas IT Services. All Rights Reserved. (c) 2019-2020 $ErrorActionPreference = 0 Add-Type -AssemblyName System.Windows.Forms [System.Windows.Forms.Application]::EnableVisualStyles() $Form = New-Object system.Windows.Forms.Form $Form.ClientSize = '446,256' $Form.text = "Mike'`s Profile Cleaner Tool - PowerShellWeekly.com" $Form.TopMost = $true $Form.StartPosition = "CenterScreen" $Form.FormBorderSt