search
Categories
Sponsors
VirtualMetric Hyper-V Monitoring, Hyper-V Reporting
Archive
Blogroll

Badges
MCSE
Community

Cozumpark Bilisim Portali
Posted in Exchange Server | No Comment | 3,644 views | 14/11/2009 18:10

Exchange Server 2010 ile birlikte gelen yeni bir özellik sayesinde artık maillere otomatik imza eklenebildiğini söylemiş ve nasıl ekleyebileceğinizle ilgili örnek bir Powershell kodu eklemiştim. Şimdi o kodda kullanabileceğiniz diğer ADAttribute’ları ekliyorum.

%%DisplayName%%
%%FirstName%%
%%Initials%%
%%LastName%%
%%Office%%
%%PhoneNumber%%
%%OtherPhoneNumber%%
%%Email%%
%%Street%%
%%POBox%%
%%City%%
%%State%%
%%ZipCode%%
%%Country%%
%%UserLogonName%%
%%HomePhoneNumber%%
%%OtherHomePhoneNumber%%
%%PagerNumber%%
%%MobileNumber%%
%%FaxNumber%%
%%OtherFaxNumber%%
%%Notes%%
%%Title%%
%%Deparatment%%
%%Company%%
%%Manager%%
%%CustomAttribute1%%
%%CustomAttribute15%%

HTML kullanabildiğiniz için yukardaki Attribute’ları istediğiniz gibi yerleştirerek, güzel bir imza oluşturabilirsiniz.


Posted in Exchange Server, Windows Powershell | No Comment | 5,429 views | 14/11/2009 18:01

Exchange Server 2010 ile birlikte gelen yeni özelliklerden bir tanesi de maillere artık otomatik imza eklenebiliyor olması. Active Directory içersinden kullanıcı bilgilerini çekerek, imzalara basmanız, şirket logonuzu yerleştirmeniz mümkün. Transport rule altında bulacağınız imza ekleme kuralını, daha hızlı ve kolay bir şekilde yapabilmeniz için Powershell komutlarını gösteriyorum.

New-TransportRule -Name 'Signatures' -Comments 'Signatures for Inside Organization' -Priority '0' -Enabled $true -FromScope 'InOrganization' 
-ApplyHtmlDisclaimerLocation 'Append' -ApplyHtmlDisclaimerText '</br></br>
<div style="font-size:11pt;  font-family: ''Calibri'',sans-serif;">
<div><img alt="yusufozturk"  src="http://www.yusufozturk.info/logo.png"></br>
</br></div>
%%displayname%%
</br>
MCSE+S
</br></div>' -ApplyHtmlDisclaimerFallbackAction 'Wrap'

İmzalarda isim soyisim çıkması için %%displayname%% kullandım. İmzalarda kullanabileceğiniz kullanıcı bilgilerini diğer postta belirteceğim.


Posted in Exchange Server, Windows Powershell | No Comment | 7,023 views | 14/11/2009 00:36

With a new feature of Exchange Server 2010, now you can append signature or disclaimer messages to emails. You should create a new Transport rule to do this. Also there is an easy way to do this with Powershell:

New-TransportRule -Name 'Signatures' -Comments 'Signatures for Inside Organization' -Priority '0' -Enabled $true -FromScope 'InOrganization' 
-ApplyHtmlDisclaimerLocation 'Append' -ApplyHtmlDisclaimerText '</br></br>
<div style="font-size:11pt;  font-family: ''Calibri'',sans-serif;">
<div><img alt="yusufozturk"  src="http://www.yusufozturk.info/logo.png"></br>
</br></div>
%%displayname%%
</br>
MCSE+S
</br></div>' -ApplyHtmlDisclaimerFallbackAction 'Wrap'

I used %%displayname%% to add my name.