Register | Login

Stacking Code

public interface IBlog { string Dump(Stream consciousness); }

Making Links Clickable in Communicator

Tuesday, 4 October, 2011 @ 10:02 PM < Adam Boddington
Tags: Communicator

My client uses Microsoft Office Communicator 2007 R2 for instant communication on the corporate LAN. It's great for quick messages, screen sharing, it even integrates with the phone system. But when someone sends me a link, it's currently configured to do this...

Before

The link isn't clickable! (Despite the warning suggesting it should be.) I'm forever cutting and pasting links into my browser -- an annoying process which sometimes becomes really annoying when I miss a bit of the URL.

Fortunately there's a fix. Here's the PowerShell version (alternatively you could use regedit.exe).

Set-Location HKCU:\Software\Policies\Microsoft\Communicator
Get-ItemProperty .

If you don't see an EnableURL property, create one...

New-ItemProperty . -Name EnableURL -PropertyType DWORD -Value 1

If there is one, update it instead.

Set-ItemProperty . -Name EnableURL -Value 1

Restart Communicator and the links should now be clickable.

After

This post has more information.

There are 2 comments.


Comments

Matt wrote on Monday, 10 October, 2011 @ 8:36 AM

Adam, you have your syntax incorrect. it's "Get-ItemProperty .", not "Get-PropertyItem ."

good tip though

Adam Boddington wrote on Thursday, 13 October, 2011 @ 7:22 AM

Thanks, I've corrected it.

Leave a Comment

Please register or login to leave a comment.


Older
Stuff to Try

Newer
Database Migrations with PowerShell

Older
Stuff to Try

Newer
Database Migrations with PowerShell

browse with Pivot


About


Projects

Building Neno


RSS
Recent Posts

Codility Nitrogenium Challenge
OS X Lock
HACT '13
Codility Challenges
Priority Queue


Tags

Architecture (13)
ASP.NET (2)
ASP.NET MVC (13)
Brisbane Flood (1)
Building Neno (38)
C# (4)
Challenges (3)
Collections (1)
Communicator (1)
Concurrency Control (2)
Configuration (1)
CSS (5)
DataAnnotations (2)
Database (1)
DotNetOpenAuth (2)
Entity Framework (1)
FluentNHibernate (2)
Inversion of Control (5)
JavaScript (1)
jQuery (4)
Kata (2)
Linq (7)
Markdown (4)
Mercurial (5)
NHibernate (20)
Ninject (2)
OpenID (3)
OS X (1)
Pivot (6)
PowerShell (8)
Prettify (2)
RSS (1)
Spring (3)
SQL Server (5)
T-SQL (2)
Validation (2)
Vim (1)
Visual Studio (2)
Windows Forms (3)
Windows Service (1)


Archives


Powered by Neno, ASP.NET MVC, NHibernate, and small furry mammals. Copyright 2010 - 2011 Adam Boddington.
Version 1.0 Alpha (d9e7e4b68c07), Build Date Sunday, 30 January, 2011 @ 11:37 AM