
PoshTip #9 – Send an email with an attachment
PoshTip #9 – Send an email with an attachment Sending an email with PowerShell is a great way to get results from scripts or scheduled Read More
PoshTip #9 – Send an email with an attachment Sending an email with PowerShell is a great way to get results from scripts or scheduled Read More
PoshTip #8 – Send emails from the console A useful technique for every sysadmin is to be able to send an email message from PowerShell. Send-MailMessage This Read More
PoshTip #7 – How to retrieve a file from a given URL You can use Invoke-WebRequest to download files. First method To simply download a Read More
PoshTip #6 – List all Windows processes This PoshTip explain how to manage Windows processes with PowerShell. Run the Get-Process cmdlet to get all the Read More
PoshTip #5 – Measure your Powershell script First method PowerShell has a built in command Measure-Command. It is a great cmdlet to quickly find how much a Read More
PoshTip #4 – List all environment variables Retrieving the list of current environment variables is very simply with PowerShell. The windows environment variables are mounted as Read More
PoshTip #3 – Determine installed PowerShell version First of all, to check if PowerShell is installed, you need to check this registry key : Get-ItemProperty Read More
PoshTip #2 – Find Hotfixes Installed You can get the hotfixes that have been applied to your computer or on a remote computer. First method The Win32_QuickFixEngineering Read More
PoshTip #1 – Unzip Archive Ok, I start a new serie of articles about PowerShell Tips. You have the ability to unzip archives with PowerShell. You Read More