I have resolved this.
Just add the following code to wp-mobile-detect.php
function wpmd_is_windows_phone() {
global $detect;
if( $detect->isWindowsPhoneOS() ) return true;
}
You can now call the function wpmd_is_windows_phone in your theme to detect smart phones running windows.
Be sure to also update the core class mobile-detect.php to the latest version from the mobiledetect.net