我有一個PowerShell腳本,它查找文件夾中的文件並將其移動到另一個文件夾,並使用日期擴展名重命名文件。 像這樣:Powershell的電子郵件錯誤
$a = "\\server\Users\Desktop\why agile.docx"
$f = "\\server\Users\desktop\Archive\why agile.docx"
Move-item $a $f
Function renameFile ($location, $filename, $extension)
{
$d = get-date -uformat "%Y%m%d"
$old = $location + $filename + $extension
$new = $filename + "_" + $d + $extension
rename-item $old $new
}
renamefile -location "\\server\Users\desktop\Archive\" -filename "why agile" -extension ".docx"
我的問題是:我如何可以添加到這個腳本以電子郵件的任何錯誤信息,或者如果有丟失的文件,重複的文件,或者如果過程由於某種原因失敗(超時,等等...)?
感謝,
[這](https://social.technet.microsoft.com/Forums/windowsserver/en-US/5f7a9d63-6a37-4d98-b710-d76fde920a37/how-to-get-powershell-script-發送電子郵件附帶文件)可能會有所幫助! – ConfusedMan 2015-03-24 22:32:07