Categories
News

AT&T Galaxy S4 SGH-I337 OTA Update to Lollipop

Woke up this morning to Lollipop, so its official AT&T has finally started pushing out the highly-anticipated Android 5.0 Lollipop Over-The-Air (OTA) update for Galaxy S4 Now its time for me to find a method to root and enable some features such as Wifi Tethering Tech Info: Model SAMSUNG-SGH-I337 Android Ver: 5.0.1 Baseband Ver: I337UCUGOC3 Kernel Ver: […]

Categories
News

Famous physicist Covers Monty Python’s: Galaxy Song

Famous physicist Stephen Hawking covers Monty Python’s: Galaxy Song This goes to show us all that even a serious scientist and perhaps the smartest man alive can be silly at times. [youtube id=”XfcC6FYyL4U” width=”600″ height=”350″]

Categories
How-To Technical

Option to mount .iso in Windows 8 missing

Friday, April 10, 2015 By now we are aware that Windows 8 has the ability to mount .ISO files. But what happens when one day you go to click on that .ISO file and the mount option is missing. This is what happened to me.  To fix this little problem the following steps were followed: […]

Categories
News

Office 365: EX20870 – Restoring service

Incident and Reported Details Incident ID: EX20870 Details: Current Status: Engineers have found that a portion of the affected infrastructure did not upgrade to the latest version as was intended. The remaining server capacity is now being updated. Once this is complete, engineers will run additional tests to confirm the update resolves the underlying root cause. […]

Categories
How-To Technical

Tech Short: Stop and Start Lync Services On A Server

How can I take on this task, let me count the ways… After installing a new certificate on our Lync server I needed to restart the services to complete the change.  I was able to do this with two powershell commands. Stop Services Get-CsWindowsService | Where-Object {$_.Status -eq “Running”} | Stop-CsWindowsService Start Services Get-CsWindowsService | […]

Categories
How-To Technical

Tech Short: List Running Lync Services

A quick task on the Lync server where I needed to list running services.  Indeed I could do this in the services panel using services.msc but this time I wanted to play in powershell. By typing the following I could list all running services that pertains to Lync Get-CsWindowsService | Where-Object {$_.Status -eq “Running”} ref: https://technet.microsoft.com/en-us/library/gg398803.aspx