5

Tips & Tricks : iTunes store crashes on Windows 8.1

-
NOTE: iTunes version 11.1.4.62 or above is free from that issue.

When trying to access iTunes Store from iTunes installed on Windows 8.1 it crashes. Problem is that iTunes can’t find specific DLL which is used to display content of the store.

In order to fix problem cop: QTMovieWin.dll

from:  C:\Program Files (x86)\Common Files\Apple\Apple Application Support

to: C:\Program Files (x86)\iTunes

and now you can access iTunes Store without any problems on Windows 8.1.

5

How-to : Access BlackBerry PlayBook via SSH

-

So, I was wondering how to access my PlayBook using SSH. It would be really convinient to access it from laptop, browse files, etc. I did poke around on Internet and finally identified solution how to SSH to PlayBook 🙂 For now only as a normal user and working towards getting root access (I guess Dingleberry will be helpful at some stage) 🙂

For now let’s have a look into details of accessing PlayBook via SSH. for that I will use:

  • BlackBerry Tablet SDK 2.0.0 – available for free on BlackBerry web page here. There might be newer version available by now.
  • PuTTY – I guess most popular free terminal emulator for SSH, Telnet and Serial connections, available here. From that package PuTTY.exe and PuTTYgen.exe will be required.

(more…)

5

Tips & Tricks : Office 365 Error 30088-4 “Something went wrong”

-

What to do when Office 365 shows you message “Something went wrong”?

o365-error-30088-4-01

(more…)

5

How-to : Setup AlwaysOn Availability Group on SQL Server 2012

-

SQL Server 2012 has very nice HADR technology built-in, AlwaysOn Availability Groups. It allows to have multiple replicas of selected databases across multiple servers, which can be even located across multiple sites. AlwaysOn itself provides mechanism to keep all replicas of database synchronized and up-to-date, as some of them might serve data for read-only purposes (for example reporting).

MSDN article: AlwaysOn Availability Groups (SQL Server) describes AlwaysOn technology in details. In this article I will focus on practical side of this HADR technology and how to get this up and running fast without any issues.

To test and demonstrate SQL Server 2012 AlwaysOn capabilities I built simple Lab environment on VMware Workstation as shown below. Lab contains 2 servers with Windows Server 2012 R2 Datacenter and SQL Server 2012 Enterprise.

Lab environment also contains Active Directory domain and Domain Controller, which is not shown on the diagram.

In order to get SQL Server AlwaysOn up and running we will complete following activities:

  • Install Failover Clustering Role
  • Configure Windows Server Failover Clustering
  • SQL Server installation
  • Demo database preparation
  • Enable Availability Groups on SQL Server
  • Creating AlwaysOn Availability Group

So, let’s get started…

(more…)

5

How-to : Create virtual machine template for VMware Workstation 8

-

Often using VMware Workstation platform we need to quickly create new virtual machine. reasons for that might be different. For example additional machine for our Lab environment or just quick test without affecting other machines we have setup in our virtual environment.

Installing whole operating system with all applications we used to have in our setup might be time consuming process. That is why it is worth to consider creating and using templates to be able quickly generate virtual machines we need.

(more…)

4

Tips & Tricks : OneNote 2013 keeps crashing when trying to open notebook from OneDrive

-

If you come across issue that OneNote 2013 will keep crashing each time you try to open notebook from OneDrive

  • Go to %userprofile%\AppData\Local\Microsoft\OneNote\15.0 folder and delete OneNoteOfflineCache_Files folder and OneNoteOfflineCache.onecache file
  • Go to %userprofile%\AppData\Local\Microsoft\Office\15.0\ path and delete OfficeFileCache folder.

Then go back to OneNote 2013 and try to open notebook from OneDrive. This time it should work.

PS. %userprofile% points to C:\Users\%username%\

4

How-to : Publish multiple URLs with single IP and HAProxy

-

Many times there is a need to publish multiple websites from internal network, but there is only one public IP address available.

How this can be done easy way? HAProxy can help us with it.

In example configuration I have 2 URLs registered to same public IP address:

  • first.laboratory.net
  • second.laboratory.net
  • third.laboratory.net

Here is how HAProxy configuration for given example looks like…

(more…)

4

Tips & Tricks : HP TouchSmart tm2t, Windows 8 and Switchable Graphics

-

Recently I came up with idea to upgrade operating system on my HP TouchSmart tm2t to Windows 8. In general there was no major issues except one. As this computer has two graphics adapters (Intel for low performance when operate on battery, AMD/ATI for better performance when operate on mains) there was small issue with configuring Switchable Graphics option.

After installation computer was operating only on low performance Intel card and thre was no possibility to switch to AMD/ATI. Here is what I’ve done ot make it work:

(more…)

4

How-to : RiOS upgrade on Riverbed Steelhead 250H

-

When I got Riverbed Stellhead 250H for Lab environment, first thing I checked was version of RiOS on device. It turns out that device was outdated and had RiOS 5.5.6, while current version is 7.0.3.

Next thing I did was jump on Riverbed Support web page to identify how to upgrade my test Riverbed, as there is always certain path of RiOS versions you have to go through to get to recent one.

(more…)

4

Config snippets : OpenSSL for Windows can’t find openssl.cfg

-

Little issue with OpenSSL for Windows came out recently when I tried to create certificate request. Just after installation when tried to generate cert request got error message:

WARNING: can't open config file: /usr/local/ssl/openssl.cnf
Unable to load config info from /usr/local/ssl/openssl.cnf

Reason was that by default OpenSSL couldn’t find configuration file (even if it was located in same folder as excutable file).

So, to fix it just set environmental variable with information where openssl.cfg file is located:

set OPENSSL_CONF=c:\OpenSSL-Win32\bin\openssl.cfg

You can consider adding this to system environmental variables.