WP7 March Update

I've just installed the March 2011 WP7 update to my HTC Trophy, and am now graced with copy & paste functionality.  It's good to see Microsoft acting on the feedback from customers.  Below is the official list of additional features.

 

March 2011

OS version: 7.0.7390.0*
  • Copy & paste. You asked for it—now it's here. Just tap a word and drag the arrows to copy and paste it on your phone. You can copy text from emails, text messages, web pages, and Office Mobile documents, and paste it anywhere you can type. To learn more, see Copy & paste.
  • Faster apps and games. Nobody likes to wait. That's why we've whittled down the time it takes for apps and games to start up and resume. It's all part of our focus on getting you to the things you love, easier and faster.
  • Better Marketplace search. We've streamlined Marketplace search to make it easier to find specific apps, games, or music. Press the Search button in the Apps or Games section of Marketplace and you'll see only apps or games in the results. Press Search in the Music section of Marketplace to search just the music catalog.
  • Other Marketplace improvements. We've improved the stability of Marketplace while you download apps. We've also improved the experience of downloading apps larger than 20 megabytes, upgrading from trial apps to paid apps, sharing links to apps via email, sorting Xbox LIVE games by release date, and creating an Xbox LIVE account from within the Games Hub.
  • Wi-Fi improvements. We now display your phone's Media Access Control (MAC) address in Settings. (You might need this info if you try to connect to a Wi-Fi network that uses MAC address filtering. To learn more, see Connect to a Wi-Fi network.) We've also removed the limit on the number of Wi-Fi profiles that you can store and reduced the time it takes to start your phone if you've stored lots of Wi-Fi profiles.
  • Outlook improvements. We've improved the experience of viewing iPhone photo attachments you receive from a non-Exchange-based email account (such as a Google Mail, Hotmail, or Yahoo! Mail account), using the Global Address List (GAL) when connecting to Exchange Server 2003 using Exchange ActiveSync, and working with email display names that contain brackets (for example, "David Alexander [Contoso]").
  • Facebook integration. We've improved the experience of syncing Facebook accounts.
  • Camera improvements. We've improved the stability of switching between camera and video modes.
  • Audio improvements. We've improved the experience of using a Bluetooth headset to make calls when you're playing music or videos.
  • Other performance improvements. This month's update also includes software from several phone manufacturers that improves the performance of specific models. Naturally, if you don't have one of the affected models, we won't install this portion of the update on your phone.

April 2011 Lync Updates

April 2011 Lync updates have today been made available.  Details are below.
 

Lync 2010 (64bit)
Lync 2010 (32bit)
Lync 2010 Phone Edition (Tanjay)
Lync 2010 Phone Edition (Aries-Aastra)
Lync 2010 Phone Edition (Aries-Polycom)
Lync 2010 Attendee (Admin Install)
Lync 2010 Attendee (User mode install)
Lync 2010 Attendant (32 & 64 bit are a combined patch)
Lync 2010 Group Chat Client
Lync 2010 Group Chat Server
Lync 2010 Group Chat Admin

Some links are still working their way through the system and will become available within a week from today.
Some of the KBs are still in process. These should be available by 4/8.

Additional Notes:
Lync Client and Group Chat build number is 4.0.7577.253
Lync Attendee/Attendant build number is 4.0.7577.254
The Phone Editions build number is 4.0.7577.250

Server patches will be available soon. 
Both client and server patches will tentatively be available on Microsoft Update the second Tuesday of May.

BES 5 Service Pack 3

RIM have now released BES 5 SP3, which includes native functionality for OCS and Lync.  This means there is no longer the requirement to install an OCS 2007 R1 CWA server to achieve connectivity with a Blackberry handset.

http://swdownloads.blackberry.com/Downloads/entry.do

http://docs.blackberry.com/en/

Using OpenSSL to secure and encrypt your SabNZBd server traffic with self signed certificates

If you are planning on (or already have) externally published your SabNZBd server, it’s a good idea to implement SSL certificates to securely encrypt traffic going in and out of your network.  This will prevent any overzealous network admins, or even your ISP from snooping on your traffic and seeing what you are downloading.  It also makes sure things like your username and password aren’t sent in plain text traffic over network devices you aren’t in control of.

To begin with, you need access to an instance of OpenSSL.  The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a full-strength general purpose cryptography library.  It can be used to create self-signed certificates at no cost.  Many Linux distributions come with pre-compiled OpenSSL packages, if you have a favourite, go with that!

I didn’t have access to a linux distro, so choose to install and fire up a virtual instance of Ubuntu Desktop (ubuntu-10.04.1-desktop-amd64.iso),using a copy of VMWare server I had installed locally on my laptop.  It only takes a few minutes to install, and can be shutdown again afterwards.
Once you are in your chosen Linux distro, drop to a console/command prompt.



Launch your instance of Ubuntu and drop to a terminal prompt
Once you have a terminal session open, create yourself a working folder and CD into it.


We can then generate the SSL’s using the following commands

openssl genrsa 1024 > host.key



openssl req -new -x509 -nodes -sha1 -days 365 -key host.key > host.cert

After running the req –new command you will be prompted to enter required information.  Most isn’t mandatory; the only one you really need to get right is the Common Name.  It is important to note, whatever common name you choose for your certificate, must match the public dns record or hostfile entry you are using to access your instance on from the internet.

For example: If you create your certificate with a common name of “sabinstance.davesimm.com” but you then access that instance at http://89.23.233.51/sab the certificate will fail as the names do not match.  The easiest way to ensure the names on your certificate match is either to utilise a static IP and your own domain name, or use a dynamic DNS service such a dyndns.com.  You would then match the certificate name to your chosen dyndns record.
Extract the .key and .cert files from your Ubuntu/openssl instance and copy them to whatever machine is running Sabnzbd.  An easy way to do this is run “view host.key” / “view host.cert” and just clipboard copy the information to a txt file on your host machine.
Copy the 2 files into the correct location for Sabnzbd files depending on which OS you are running.
WinXP:
%localappdata%/sabnzbd/admin/server.cert
%localappdata%/sabnzbd/admin/server.key
Linux:
~/.sabnzbd/admin/server.cert
~/.sabnzbd/admin/server.key

Depending on your current setup you may need to select the certificate files in Sab, enable HTTPS, and choose your SSL port.



At this point, remember, your certifcates haven’t been issued by a public trusted certificate authority, such as Verisign or Geotrust.  This means that any machine or device you use to access your sab instance will not trust your SSL certificate.  You can work around this by installing the certificate into any remote machines “trusted root authority” certificate store.  I have also installed my certificate into the certificate store of my Windows Mobile 7 phone to enable secure encrypted connection from my handset.  I will cover both below.

To install your certificate in windows XP / Windows 7 do the following.
Click start/run
Type MMC
File Add/Remove snap in
Choose Certificaes
Click Add
Click Computer Account
Click Next

Click Local Computer
Click Finish
Click OK
Expand the certificate management console and expand the Trusted Root Certificate Authorities folder.

Right click, choose all tasks and chose import.   Browse to your host.cer file and import.
To install the SSL certificate on your WP7 device do the following
There are a few documented ways to install SSL certificates on WP7 devices, the easiest way I found was the email method.  Take the host.cert  file we created earlier, rename it to host.cer and email it to yourself on an email address you can retrieve on the WP7 device.  When the email arrives, open the attachment and follow the onscreen prompts to install the certificate.
When you attempt to access your instance on the common name you specified earlier, you should have an error free encrypted connection to your instance.

Lync enabling or making Lync changes to a user who is or was a member of the Domain Admins security group

There are already a number of forums posts floating around on this, but it’s something I found out about the hard way, so i’ll blog it in the hope it helps someone else out.

While attempting to make a change to my own Lync user (on a sandpit development environment I’d like to add!) I was presented with the following operation failed error...


Active Directory operation failed on . You cannot retry this operation: “Insufficient access rights to perform the operation 00002098: SccErr: DSID-03150BB9, problem 4003 (INSUFF_ACCESS RIGHTS), data O”.
You do not have the appropriate permissions to perform this operation in Active Directory. One possible cause Is that the Lync Server Control Panel and Remote Windows PowerShell cannot modify users who belong to protected security groups (for example, the Domain Admins group). To manage users In the Domain Admins group, use the Lyric Server Management Shell and log on using a Domain Admins account. There are other possible causes. For details, see Lync Server 2010 Help.

I also found the following errors in the application event log...

Login failed for user 'OS\Dave.Simm'. Reason: Failed to open the explicitly specified database. [CLIENT: 89.31.238.2]

At this point it’s convenient to mention that I was going against all best practise and Microsoft security models known to man. This is a sandpit/development Lync environment with no other products installed and with only a handful of IT users on it. What had I done that was against best practise? I had added my own everyday Lync sip enabled user into the Domain Admins and CSAdministrators group. Any active directory administrator worth their salt will frown heavily upon this. Admins/Engineers should always have 2 accounts, a normal everyday user account, for Lync, Exchange, Sharepoint, and an admin account with escalated privileges to run admin procedures with.


So, realising the error of my ways, and being pointed in the right direction by the fairly helpful error messages. I took my account out of the Domain Admins group, logged out, and back in using my LyncAdmin user. This user isn’t Lync enabled and is purely an admin account. Only to hit exactly the same issue.
Adding a user account into the Domain Admins group makes changes to the way advanced security permissions are propagated and inherited by a user account. In order to reverse these changes you have to re-inherit these permissions. From dsa.msc (Active Directory Users & Computers) make sure that you are viewing advanced features; from the view menu select Advanced Features.


Find the user in question, edit the users properties, click the security tab, then click advanced. You need to tick the “Include inheritable permissions from this object’s parent” tick box to re propagate the required permissions.




Retry any Lync user changes and this time they should be successful.

Wigan Warriors Fixtures iCalendar 2011 Season

I took it upon myself to create a Wigan Warriors 2011 iCalendar fixture list. this is importable into Outlook/Gmail/Hotmail and a host of other calendars. Information is upto date at time of publishing. If any fixtures are changed i will update as soon as possible. Hope this helps a few people out.

Download the calendar here

HTC Trophy & Windows Phone 7 Review


“Close, but no cigar”… “So near, yet so far”… “Better luck next time”…

It’s hard to know how to begin to write this post, and it’s even harder for me being the semi Microsoft-fanboy that I am. I’ve been using the HTC Trophy and WP7 (Windows Phone 7) OS for a little over a month now. There aren’t many fully independent and unbiased reviews of the WP7 OS yet, so I thought I’d add this to my blog. Don’t be too scared of the opening line, this OS has lots to offer, but it also needs a lot of extra work before it can rival Blackberry/iPhone/Android competitors.

First impressions of the device and OS are good. Navigation through settings, and preference changes are intuitive and generally very easy. It’s live tile ability where “live tile” developed apps can display notifications and updates without it being opened is great, and mostly very quick at performing. Email setup for corporate Exchange and Google/Hotmail is very simple and fast. For me, email ability of the phone is easily comparable to that of a Blackberry. The phone screen clarity is excellent, and this helps its performance on the gaming front. The handset itself is lightweight and very aesthetically pleasing, just a little scratch prone.



For me, one of the best features is the seamless and unified integration of all the various contact hives that everyone now has. Outlook/Exchange contacts, Facebook contacts, Windows Live contacts and Google Gmail contacts are all brought into one place, and where possible, are linked into a single contact view (would love to see Twitter in this as well). So where previously I had an Outlook corporate contact with an email address attribute, a local contact stored in my phone memory with a phone number, and also that person added as a Facebook friend, this is now all in one place. 1 single contact, with email/phone and any latest status updates and Facebook activity in one place. No duplicates! It also means that all my contacts are preloaded with their Facebook profile picture, so incoming calls from a contact display a picture without any additional configuration… None of that running around and taking pictures of your mates to save against a contact business anymore!

The gaming aspect of the phone is superb, a lot of the marketplace games are xbox live enabled/aware, and so any achievement points go towards your Gamerscore. This is all nicely presented on a front screen live tile as well. Most games utilize in one form or another, the devices accelerometer, which I have to say, in the HTC Trophy, is superb. It is very precise, and I’m hard pushed to fault it in any way. Others use touch screen, and as you would expect are also faultless. The choice of games is still a major grumbling point, as are the prices, but this is still a relatively immature OS, and developers are still very much getting to grips with it. Microsoft are however putting their weight behind developers in a bid to push more games/apps onto the WP7 platform by offering payments to developers. Until Rovio release angry birds (this is of critical importance for use as a business phone!). Skype develop a WP7 client, and there is a fully functional voice guided nav app available, I’m remaining sceptical.

http://www.businessweek.com/news/2010-07-14/microsoft-pays-mobile-app-developers-to-catch-apple.html

A lot of people have been barking about the lack of muti-tasking, but for me I haven’t found this to be much of an issue. My emails delivers and sync via live tiles without having an app open, and I can play music while using other apps. For me it’s as functional as it needs to be.

So… That’s the positives. It’s probably easier to get the negatives out in a list format, so here goes…

• Copy/Paste

It’s been said before, and it’ll be said again. I just can’t believe Microsoft launched without this function. When I first starting using the phone, I didn’t think I’d miss it…. I do. When manipulating emails, contacts, text messages…. Allsorts. It’s a big oversight, and needs addressing. Quickly.

• Marketplace

It’s new, and is still work in progress, so the lack of apps/games can be forgiven. However, the stability and usability of the marketplace app desperately need improving. It’s impossible to do any kind of granular search within the marketplace. While trying to search for apps, you end up with results for music artists and games. Put this on top of the frequent crashes of the marketplace app itself (which can only be resolved with a reboot) and it’s a real sore point of the OS.
http://social.answers.microsoft.com/Forums/en-US/windowsphone7/thread/fc8ad1c7-1db3-4ba3-9b31-c655c4f30ff0

• Calendar

The calendar is functional, and quick, but just missing a few things. In single day view, you cannot see the day name. The only way to determine what day a certain date is. Is by exiting back out to monthly view…. Yes, monthly view, there is no weekly view at all. For someone using this as a Blackberry replacement business phone always arranging, and re-arranging appointments, this is painful.

• UC Ability

I’m a UC engineer working in an environment where presence is everything, people using WM6/Symbian/Android devices all have the OCS clients installed on their devices, so they are permanently available. MS still haven’t released a WP7 OCS client, and by the looks of things, there are no plans to in the near future. For the time being, this is the brick wall reason my company will not be rolling out this device/OS. Which is a shame, you would have thought that a Microsoft OS and Microsoft server software should natively be somewhat functional together.

• Wireless

Currently it isn’t possible to connect to any wireless network with a hidden SSID, and yes, I know the risks, yes I know it doesn’t provide any extra security. The fact remains that some businesses, hotspots, hotels etc, use hidden SSID’s, and for such a small addition, I think this needs addressing.

The simple fact is that this OS has been rushed, and the final result just stinks of small issues that have a big effect on end user impression. It’s rumoured that a big update in the first quarter of this year (2011) will address a lot of my and other users concerns. The amount and quality of marketplace apps will grow over time, and hopefully reduced in price. Until then, the WP7 OS, for me has bridged the gap between the iPhone/Android devices being very much personal gaming machines, and Blackberry devices being hardcore business machines. It still has some way to go before it comes the force that Microsoft hope it to be though.