Tuesday

file rename : removing non-ascii characters from filename in linux

this application for removing special characters for windows
detox -r -v /path/to/your/files


-r Recurse into subdirectories
-v Be verbose about which files are being renamed 
-n Can be used for a dry run (only show what would be changed)

No comments:

test smtp server with powershell

Send-MailMessage -SMTPServer smtp.domain.com -To [email protected] -From [email protected] -Subject "This is a test email" -Body ...