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...
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.
This post has more information.
There are 2 comments.
Older
Stuff to Try
Older
Stuff to Try
browse with Pivot
Codility Nitrogenium Challenge
OS X Lock
HACT '13
Codility Challenges
Priority Queue
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)
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.