As very often requested or even legally forbidden in certain countries, Administrators seeking for a possible solution removing the user activity time stamp.
Mostly it is misinterpreted and secretly used for user activity monitoring. There Microsoft introduced an update with Lync Server 2010 CU6 and enabled without additional costs a simple and easy way removing this LastActive Attribute from the Users Lync Object.
Note:
After you apply this solution, only newly written/ detected activity time stamps are effected. In other words, if the user object was Lync enabled before has not yet logged into Lync again, the last time stamp is still visible, as you can see in the illustration below.
As well remember, this setting affect all user hosted on the Front-End Server (Pool) and cannot be set to individual users.
Procedure:
1. Create a text file, named Rtcaggregate.exe.configin the Lync Server 2013 Folder, e.g.C:\Program Files\Microsoft Lync Server 2013\Server\Core
2. Add the following configuration information into the .config file
<configuration>
<appSettings>
<add key="PublishLastActive" value="false" />
</appSettings>
</configuration>
3. Now restart the Lync Server Front-End Service (RtcSrv)
Stop-CsWindowsService -Name "RtcSrv"
Start-CsWindowsService -Name "RtcSrv"
-------------------
Before:
-------------------
After:
Author: Thomas Pött Managing Consultant Microsoft UC
Mostly it is misinterpreted and secretly used for user activity monitoring. There Microsoft introduced an update with Lync Server 2010 CU6 and enabled without additional costs a simple and easy way removing this LastActive Attribute from the Users Lync Object.
Note:
After you apply this solution, only newly written/ detected activity time stamps are effected. In other words, if the user object was Lync enabled before has not yet logged into Lync again, the last time stamp is still visible, as you can see in the illustration below.
As well remember, this setting affect all user hosted on the Front-End Server (Pool) and cannot be set to individual users.
Procedure:
1. Create a text file, named Rtcaggregate.exe.configin the Lync Server 2013 Folder, e.g.C:\Program Files\Microsoft Lync Server 2013\Server\Core
2. Add the following configuration information into the .config file
<configuration>
<appSettings>
<add key="PublishLastActive" value="false" />
</appSettings>
</configuration>
3. Now restart the Lync Server Front-End Service (RtcSrv)
Stop-CsWindowsService -Name "RtcSrv"
Start-CsWindowsService -Name "RtcSrv"
-------------------
Before:
-------------------
After:
Author: Thomas Pött Managing Consultant Microsoft UC