首页 > 代码库 > Powershell数据处理
Powershell数据处理
1、导出csv文档
Export-Csv D:\ps\xxx.csv -Encoding UTF8 -NoTypeInformation
2、发送mail
$from="frommailaddress"$to="tomailaddress"$cc="ccmailaddress"$subject="主题"$smtpserver="sendmailsmtpserver"$message="<style type=‘text/css‘><!--.style1 {font-size: 16px; color: #000099; font-family: ‘新細明體‘; }--></style><p class=‘style1‘>Dears</p><p class=‘style1‘>内容,内容中可以带变量</p></p>"#发送邮件,可以带附件文档Send-mailmessage –bodyashtml –from $from –to $to -cc $cc –subject $subject –body $message –smtpserver $smtpserver -attachments D:\ps\userPermissioninfo_$CurrentDate.csv -Encoding ([System.Text.Encoding]::Utf8)
3、导入数据库
参考http://www.cnblogs.com/scentpath/p/PowershellSQL.html
Powershell数据处理
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。