惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

I
Intezer
V
Vulnerabilities – Threatpost
Google Online Security Blog
Google Online Security Blog
T
The Exploit Database - CXSecurity.com
C
CXSECURITY Database RSS Feed - CXSecurity.com
AWS News Blog
AWS News Blog
G
GRAHAM CLULEY
P
Privacy & Cybersecurity Law Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
C
Cybersecurity and Infrastructure Security Agency CISA
N
News | PayPal Newsroom
T
Tenable Blog
Spread Privacy
Spread Privacy
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
S
Secure Thoughts
P
Privacy International News Feed
IT之家
IT之家
Project Zero
Project Zero
T
The Blog of Author Tim Ferriss
Engineering at Meta
Engineering at Meta
大猫的无限游戏
大猫的无限游戏
博客园_首页
GbyAI
GbyAI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
Hacker News: Ask HN
Hacker News: Ask HN
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
N
Netflix TechBlog - Medium
Martin Fowler
Martin Fowler
NISL@THU
NISL@THU
I
InfoQ
D
DataBreaches.Net
有赞技术团队
有赞技术团队
K
Kaspersky official blog
Security Latest
Security Latest
The Register - Security
The Register - Security
Hugging Face - Blog
Hugging Face - Blog
S
Security @ Cisco Blogs
P
Proofpoint News Feed
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
AI
AI
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
P
Proofpoint News Feed
Security Archives - TechRepublic
Security Archives - TechRepublic
N
News and Events Feed by Topic

博客园 - johnny tu

Moving............. Tech.ED North America 2008 Launch! (June 10-13,2008) 开启硬件辅助虚拟化——Intel虚拟化之旅 Exchange, I know something you don't know What is the Placeholder Domain Model? Office Communicator 2007 with Polycom How To Create AD Users with PowerShell - johnny tu Damn it! Microsoft Newsletters @ China. About the Statement Of Work(SOW) Microsoft Product Support's Reporting Tools The ROUTE of OCS Edge Server got ERROR About Windows 2008 "Data Execution Prevention" - johnny tu exchange2007+outlook2007,无法使用外出助理 打开exchange2007管理控制台时,提示没有读取服务器安全描述符的权限 Exchange 2007 被攻击 exchange 2007 CCR 的...MSDTC 问题???? 在Exchange2007中,如何批量建立用户邮箱 Exchange 2007 AcitveDirectory架构 智能邮件筛选疑问
Customizing the OC 2.0 Client /part 01
johnny tu · 2008-05-05 · via 博客园 - johnny tu

Okay, most customer wanna to customizing their OC Client then  integrated with other application system in the communication environment. Today, I will introducing How To adding Tabs with OC 2.0 Client! Final done, lez go!

Code Description
<?xml version="1.0"?> Defines the XML version
<customStates xmlns="http://demo/newsite/customStates" Points to the XML namespace
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Points to the XML instance
xsi:schemaLocation="http://demo/newsite/customStates 
http://demo/newsite/Custom-Activities.xsd">
Points to the XML schema definition file
<customState ID="1" availability="online"> Starts the CustomState tag. ID=1 refers to the first state of availability.Online is the state. Busy and Do Not Disturb are the other two states you can configure to use custom presence.
<activity LCID="1033">Working from Home</activity> Activity refers to the custom presence state available under Online, Busy, and Do Not Disturb. LCID stands for local ID.
</customStates> Closes the CustomState tag

1. Opened the Editor, like Notepad and create a sample HTML page with the following code:

<HTML>
<HEAD>
<TITLE>Sample Page</TITLE>
</HEAD>
<BODY>This is a sample Page</BODY>
</HTML>

then save it as index.html

2. Once again create a XML file like following code:

<?xml version="1.0"?>
<tabdata>
<tab>
<image>http://url/image.png</image>
<name>Mail</name>
<tooltip>This my Messaging System Site</tooltip>
<contecturl>https://mail.bingosoft.net/owa</contecturl>
<userid>false</userid>
<contactid>false</contactid>
<accessibility>inside</accessibility>
</tab>
<tab>
<image>http://url/image.png</image>
<name>my blog</name>
<tooltip>This is my blog, Ehleox.Lab</tooltip>
<contenturl>http://yotu.cnblogs.com</contenturl>
<userid>false</userid>
<contactid>false</contactid>
<accessibility>inside</accessibility>
</tab>
</tabdata>

Save it to tabs.xml

3. Putting index.html & tabs.xml to a share folder, then create two string value in the Registry Editor, and with the value fie://servername/share/tabs.xml to the following locations:

HKLM\SOFTWARE\Policies\Microsoft\Communicator

HLCU\Software\Policies\Microsoft\Communicator

4. Restart the OC Client. U will getting exciting.

Johnny tu.