Powershell Exchange Message Per Day Sent and Reveive # Initialize some variables used for counting and for output Get-Date -UFormat "%Y-%m-%d-%H-%M" >>Per-day_recive.txt $Account="wendychen" [Int64] $intSent = $intRec = 0 [Int64]…
Server up time Get-ExchangeServer | where{$_.name -like'wendy*'} | %{ if(Test-Connection $_.name -Count 1 -Quiet) { $OS = Get-WmiObject -Class Win32_OperatingSystem -ComputerName $_.name   $uptime = (Get-Date) - $OS.ConvertToDateTime($OS.LastBootUpTi…
为了完善公司的整体邮件质量,博主通过zabbix监控了exchange的所有微软推荐项目,并写了很多powershell来辅佐, 旨在更大程度上提高整体的邮件性能 这篇文章主要是讲通过powershell监控邮件队列,因为一些历史原因,公司有很多业务系统的退信,收件人失效,错误 邮件的退信会长时间停留在提交队列中,默认情况下,这些队列中的邮件会在48小时候被清除,队列中集攒过多邮件也 会一定程度上影响邮件整体性能,且作为一个有轻微强迫症的人,博主也十分希望列队中是十分清爽的 废话不多说,先说该目…
前两篇介绍的是关于Exchange 与 Lync 之间的配制关系,这一篇介绍关于Lync.Exchange 与 SharePoint 之间建立信任关系. 首先要创建基于SSL的SharePoint Application,端口是 443,同时还要通过CA申请证书,否则在创建信任关系时,会出现错误. 第二 申请证书并导入   创建成功后,会生成一个txt 编码,之后根据生成的 txt申请证书,参考   ,导入成功后配制证书    创建PowerShell 脚本,建立信任关系 $shp = Get-…
amqp  的 excange 字面意思是一个交换机.他的任务是吧 消息 分配给消息队列. amqp 的  exchange 有三种,分别是 Direct , fanout 和 toppic.三种. Direct:通过 Routing key 来分配消息 应该分配给那个消息队列.在给交换机绑定 消息对列的时候需要指定  路由关键字,并且之歌路由关键字必须是不包含通配符. 特点:消息明确,只有一个对列会消费这个消息. 官方解释:转发消息到routingKey中指定的队列 要求队列绑定时使用的bin…
前言 来了解RabbitMQ一个重要的概念:Exchange交换机 1. Exchange概念 Exchange:接收消息,并根据路由键转发消息所绑定的队列. 蓝色框:客户端发送消息至交换机,通过路由键路由至指定的队列. 黄色框:交换机和队列通过路由键有一个绑定的关系. 绿色框:消费端通过监听队列来接收消息. 2. 交换机属性 Name:交换机名称 Type:交换机类型--direct.topic.fanout.headers.sharding(此篇不讲) Durability:是否需要持久化,…
Exchange:接收消息,并根据路由键转发消息所绑定的队列 ClientA,B将消息投递到交换机Exchange上,通过路由关系,投递到指定的queue1或者queue2上,通过监听投递到Client1... 交换机属性: Name:交换机名称 Type:交换机类型direct.topic.fanout.headers Durability:是否需要持久化,true为持久化 Auto Delete:当最后一个绑定到Exchange上的队列删除后,自动删除该Exchange Internal:当…
Microsoft Win32 to Microsoft .NET Framework API Map .NET Development (General) Technical Articles     Microsoft .NET Framework and Microsoft Visual Studio User Education TeamsMicrosoft Corporation January 2004 Applies to:    Microsoft® .NET Framework…
http://www.codeweblog.com/ssl-handshake-process-of-interaction-and/ SSL to send a message in the following order: 1.Client Hello Client sends the server information including passwords group it supports. Password set in cryptographic algorithms and k…
收藏几篇关于ssl handshake的好文 http://www.slashroot.in/comment/1242 SSL protocol, does its fantastic job of securing communication over the wire, with the help of multiple layers of protocols, above TCP(And After Application Layer). Always keep in mind that,…