PowerShell Get Memory used by a group of processes
Get the memory usage of a process, grouped, so you get the total. Example; chrome, always have one process per page, use this to get the total of…
Get the memory usage of a process, grouped, so you get the total. Example; chrome, always have one process per page, use this to get the total of…
Ever wanted to track some messages in Exchange ? Here is a neet trick to will help you track messages quickly. A lot more options are available, of…
Powerful one liner to send an email with PowerShell. Useful in scheduled tasks to send status, or additional info. The use of environment variables is totally optional, but…
Fireup your PowerShell ISE, modify to your needs, and run ! Please leave comments, suggestions below ! Import-Module ActiveDirectory # Determine the base OU $Path = 'OU=Accounting,OU=-Department,OU=Office,DC=MyDomain,DC=net' #…
First, fire up a PowerShell windows with the Active Directory module. If you have the Admins tools installed, it should be called “Active Directory Module for Windows PowerShell”…
Run from Virtual Machine Manager PowerShell Console: $IPpool = Get-SCStaticIPAddressPool "my_ip_pool" Get-SCIPAddress -StaticIPAddressPool $IPpool | ft -property Address,Description,AssignedToType,State
This script will delte everyting in the “Script” folder, sub-folder, and the “-recurse” option will prevent the prompting of confirmation. The “-exclude” option alllows you to exclude files…