Sunday, December 17, 2017

Enable "Apear Offline" on Skype for Business Office 2016

To enable the Appear Offline status to Skype for Bussines on Office 2016, simply add the Reg Key below. Exit Skype and open it again and there you have it. You can also download the Reg file from my Google Drive (link below)

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Office\16.0\Lync] "EnableAppearOffline"=dword:00000001

https://drive.google.com/open?id=1EAWesYFv1-bvPuWqV3xMP4lboGIpksrl

For Lync on Office 2013 simply change the office version to 15.
If you download the Reg file, edit it with notepad and change it.

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Office\15.0\Lync] "EnableAppearOffline"=dword:00000001

I hope you find this useful, cheers.


Tuesday, October 28, 2014

Enable Lync 2013 on Office Communicator 2007 Server and Enable Appear Offline Status

This is a simple registry tweak that will let you use Lync 2013 on a Office Communicator 2007 Server, and it will also enable the appear offline status that is not available out of the box.

Simply merge the attached registry tweak and you are good to go.

EnableLyncAdnAppearOffline.zip

Saturday, August 9, 2014

Updates listed twice after updating Mac OS X Yosemite DP 5

Found something odd after I updated to OS X 10.10 DP5 this evening. If you look in the Updates section in the App Store, I see the update installed twice.

Found that this is pretty normal while using the betas for them to show up 2/3 times.

If you, like me (?) have ocd or something and it's bugging you. You can edit the updates that the App Store shows here: ~/Library/Application Support/App Store/updatejournal.plist

Open the terminal and write:

chflags nohidden library

To show the Library Folder.
Then i used Text Wrangler app to edit the .plist

Tuesday, July 29, 2014

FIX Error 'Could not find this item. This is no longer located in :\ Verify the item's location and try again'

I got that message after copy and paste files from my external hard disk to my PC (windows 8.1), while some files weren't able to be pasted. I pressed the 'try again button', still the same problem happened.

The file that wasn't responding was in C:/Users//Downloads. So I opened Command Prompt and typed the following:

cd downloads

dir /x

[long list of files and folders in \Downloads, with each given an additional short name, in the case of my file it was FILE~1]

del FILE~1

...and that did it. Apparently some have had more success renaming the file:

REN FILE~1
DEL

Friday, March 7, 2014

How to get rid of annoying Skype advertisements on the main and chat window:


1. Open Host file

C:\Windows\System32\drivers\etc\hosts

** Open Notepad in Administrator mode and navigate to host file location.

2. Add the following lines at the end:

## Block Skype Ads
127.0.0.1 rad.msn.com
127.0.0.1 live.rads.msn.com
127.0.0.1 ads1.msn.com
127.0.0.1 static.2mdn.net
127.0.0.1 g.msn.com
127.0.0.1 a.ads2.msads.net
127.0.0.1 b.ads2.msads.net
127.0.0.1 ac3.msn.com

3. Save host file and restart Skype.

Wednesday, February 6, 2013

Error "Pendiente" al instalar apps desde la Appstore en Windows 8


Hola a todos,

La primera vez que instalé Windows 8, tenía actualizaciones para casi todas las aplicaciónes, la mayoría de ellas se descargaban e instalaban bien, al instalar Flux y Netflix la descarga se quedaba detenida y aparecia el error "pendiente"

Existen 2 maneras de arreglar este error:

La primera requiere que abra una línea de comando con privilegios de administrador y escriba lo siguiente:

  1. net stop wuauserv
  2. rename c:\windows\SoftwareDistribution softwaredistribution.old
  3. net start wuauserv
La segunda es via  services.msc  y detener el servicio Windows Update 

  1. Detener el servicio Windows Update
  2. En la ruta c:\windows\SoftwareDistribution y cambie el nombre de la carpeta a softwaredistribution.old
  3. Reiniciar el servicio Windows Update
Al renombrar la carpeta y reiniciar el servicio Windows update, auntomaticamente reiniciaran las descargas y todo volvera a la normlaidad.

Tuesday, November 6, 2012

iStat Pro Mountain Lion (FIX)

This tweak will bring back the processes to iStat Pro widget in Mountain Lion:

1. Go to:

/Library/Widgets or ~/Library/Widgets

2. Select iStat Pro, right click, and select Open Package Content.



3. Open Wide.js or Tall.js file in some editor (Wide is for horizontal view, Tall for vertical)
**in my case i use horizontal, so I'm just gonna open Wide.js**

4. Locate the following code:


if(p.v("processes_sort_mode") == 'cpu')
widget.system('ps -arcwwwxo "pid %cpu command" | egrep "PID|$1" | grep -v grep | ' + exclude + ' head -7 | tail -6 | awk \'{print ""$1""$2""$3,$4,$5"
"}\'', function(data){ _self.updateProcessesOut(data);});else
widget.system('ps -amcwwwxo "pid rss command" | egrep "PID|$1" | grep -v grep | ' + exclude + ' head -7 | tail -6 | awk \'{print ""$1""$2""$3,$4,$5"
"}\'', function(data){ _self.updateProcessesOut(data);});}


5. Change "PID|$1" to "PID| $1" (Add space before $ sign)


6. Save the changes

7. remove widget and re-add it Dashboard, and it should be fixed