Skip to content

Instantly share code, notes, and snippets.

View michaellee7's full-sized avatar

Michael Lee michaellee7

  • Buckinghamshire England
View GitHub Profile
@michaellee7
michaellee7 / Get-Diacritic.ps1
Created March 20, 2016 16:57
March Scripting Games Advanced Diacritics script and Scheduled task.
<#
.Synopsis
Scans the file names for Diacritics letters beloning to the Latin-1 Supplement.
.DESCRIPTION
Scans the file names for Diacritics letters beloning to the Latin-1 Supplement.
Before use check that valid values for the -Path, $Mailserver,$From and $To are correct.
#>
function Get-Diacritic
@michaellee7
michaellee7 / Jan2016SG.ps1
Created January 19, 2016 17:27
January 2016 scripting games
# function to test connection
Function test-ping{
Param
( [string] $compName)
Try{ Test-Connection -computername $compName -count 1 -EA stop
}catch{
Write-Warning "$_"