Monday, 7 December 2020

SecureDoc Password Different Windows 10 After Change

 SecureDoc is used to protect laptops so that the disc is encrypted before logging into the operating system. I have Windows 10 on my laptop and normally it's a seamless process to log in where you enter your credentials to SecureDoc on startup and this automatically logs you in to Windows.

However there seems to be an issue when Windows requires a password change and SecureDoc doesn't seem to be able to cope with this so you end up with the situation of needing a different password for SecureDoc to the one used for Windows and need to enter 2 different passwords.

The SecureDoc website is useless for finding information about this and doesn't have any support info - I guess because they expect support to be done by company helpdesks.

The answer seems to be to log in to the SecureDoc control center on your laptop once it has booted into the Operating System. Select the menu option to Communicate with Server and this appears to resync the password between Windows and SecureDoc. I don't know if the same process works for MacOS but it might be worth a try if you find that your password no longer matches SecureDoc.




Sunday, 22 November 2020

IOCrest SATA 6g Host Controller Not working - Hard Drives not showing

 For ages I've had an IO Crest 8 channel PCI-Express SATA (Serial ATA) host controller card that I've been unable to get fully working on my PC so it would allow the additional hard drives I'd got connected to it to be visible. There were a few suggestions online but nothing seemed to work and some posts had suggested the card was unlikely to function properly for various reasons so I'd not dug further into it.

I finally decided to give it another go and to look for new drivers. The driver CD that came with the card didnt have anything of use on it - not sure if it was the wrong CD but it had video software nothing to do with this card. It seemed that the card had Marvell chipsets on it so had a look on their website which was utterly useless and gave no information.

I then stumbled on a very informative post here https://www.tenforums.com/drivers-hardware/60112-marvell-92xx-sata-controller-6gb-driver-windows-10-1-2-0-1039-whql.html which gave some details of a site that had the drivers as well as the right driver to install.

Downloaded and installed - bingo - suddenly the missing drives all pop up in Windows explorer so I've now got it all working.

The website with the drivers on is https://www.evga.com/support/download/


The Marvell driver to look for is with the Intel Z87 motherboard, FTW part number. Select Sata 3G/6G and then the relevant Operating System.

Download and extract the files and a folder called 1.2.0.1039-WHQL will be created. Run the drvsetup.exe file and the drivers will be added to your system.

Once done you will see the following in the Control Panel Device manager and hopefully a bunch of disks if you have any attached.



Tuesday, 28 July 2020

Garmin Forerunner 45 Not Showing or Recording Distance Since Hack July 2020

Garmin systems appear to have been hacked from 23 July 2020 and as of 27th July are slowly starting to come back.

However I've found that since the systems started to come back online my Garmin Forerunner 45 hasn't been showing or recording the distance for activities. I rebooted it but that made no difference. The run or ride still records, it still detects the GPS signal but no distance is shown on the device screen. It shows the pace so something is getting the data for that but the distance stays as zero.
The solution that I've found is to turn the bluetooth on my phone off, then reboot the Forerunner 45 watch and the do the activity so that the watch isn't aware of the phone sync at that point. 

It seems to be the phone that is stopping the distance recording on the watch but not sure how that is being triggered. Until the problem with Garmin is sorted I'm leaving the watch like this so that I can still record distances. 

The Forerunner 45 watch stores quite a bit of data so I'm not in any rush to restart the sync if it stops distances being recorded




Tuesday, 25 February 2020

Strava Sony Smartwatch3 Data Sync Fails - How to Fix

Strava have long since stopped supporting the Sony Smartwatch 3. I first found the problem with loading my runs & rides from my watch to Strava back in late 2017 and all was working relatively smoothly with my Android phone being kept on the latest working version of Strava which I'd found to be v20.0.0

I've now got a new Android phone and am looking to sell my old phone so need to get another way to load the Strava data from my Sony Smartwatch to Strava online. I've found a great website that maintains old copies of the Android Strava app where I am able to obtain a copy of v20 of Strava.

https://strava.en.uptodown.com/android/versions

Luckily I have a very old phone that I'm able to install Strava on and use that purely for loading my activity from my Smartwatch up to Strava. I can then use my new Android phone with the latest version of Strava to view my activity and those of my friends - the old version 20 no longer shows any activity on the phone but still syncs the data from the Smartwatch in the back ground.

So if you want to continue to use Strava on your Smartwatch I'd recommend using the link above to get v20 of the Strava app to load to your phone which will continue to sync your data.


Friday, 11 October 2019

Printing Clob Attachments from Oracle Database Along with Report Data

One challenge I was set by a manager at work was to enable users to be able to print from one of our in-house Apex applications and have a single button to print a record that included both rows of data from an Oracle database as well as various attachments that are linked to that record. These attachments could be PDF files, Word documents or Excel spreadsheets.

Looking online there doesn't seem to be much in the way of options for being able to use a single tool to produce a report that includes rows of data from an Oracle table along with CLOB or BLOB data in a single place.

However one idea came to mind when I was talking through options with colleagues. We already have the facility within the Apex system for a user to email themselves a copy of a specific record with any linked data. If it was possible to add the Clob attachments to this email then it would give a way to be able to print them.

Within Microsoft Outlook there is the ability to print an email and one slightly hidden option is to also print all attachments. The main print screen is below.

Printing Clob Attachments from Oracle Database
Printing Clob Attachments from Oracle Database

Click on Print Options and you see the screen below with the option to Print attached files. If you tick this option then the email body will be sent to print and each attachment will also be sent to the printer as a separate print job. 

How to print clobs in report with Oracle data
How to print clobs in report with Oracle data

You will see a message asking if you want to open the program that processes each attachment type - answer Ok and the print is generated. You don't even see the program opening, the print is just generated. The print jobs will be sent directly to the printer and be held for printing by the user or print immediately depending on your print server setup.

To generate the email from the Oracle database we're using the Apex_Mail PROCEDURE which is part of the standard Oracle UTL_SMTP toolkit that has lots of documentation online.

https://docs.oracle.com/database/121/AEAPI/apex_mail.htm#AEAPI341

You can use the APEX_MAIL package to send an email from an Oracle Application Express application. This package is built on top of the Oracle supplied UTL_SMTP package. Because of this dependence, the UTL_SMTP package must be installed and functioning to use APEX_MAIL.APEX_MAIL contains three procedures. Use APEX_MAIL.SEND to send an outbound email message from your application. Use APEX_MAIL.PUSH_QUEUE to deliver mail messages stored in APEX_MAIL_QUEUE. Use APEX_MAIL.ADD_ATTACHMENT to send an outbound email message from your application as an attachment.

So the process to print a report from Oracle that includes table data as well as PDF, XLS, DOC or other attachments stored as Clobs is below:
  • Generate email from Oracle Apex
  • Add attachments to email
  • Send email
  • Use Outlook to print email and all attachments

An improvement/variation on this would be to include the Oracle table data in a PDF as an attachment to the email rather than being in the email body. This would allow you to control the layout and format of the table data more closely and avoid the email headers being shown.

If you have any questions, comment or feedback please post below

Wednesday, 17 October 2018

OpenHabian Raspberry Pi 3 Installation Failure Error

I've been trying to install OpenHabian 1.4 on my Raspberry Pi 3 and repeatedly getting a failure error with the installation when it tries to update packages. My Raspberry Pi has been variously plugged into a wall socket charger, TV and router to power the micro USB supply which have all worked fine when the standard Raspian Operating system was used.

However it appears that OpenHabian is very susceptible to voltage fluctuations during the installation process and if there is any slight drop it can cause the process to fail giving an error in the package installer but not making any mention of the voltage being the cause. The only sign that there may be an issue was when I connected the Pi to my TV monitor to view the install and noticed the yellow power symbol flash on screen a few times.

After seeing this error I downloaded the image onto a fresh SD card and started the installation again but this time using my mobile battery charger with 2A output. The installation completed flawlessly and I now have a fully working OpenHabian install ready to use!

Monday, 19 March 2018

Question From eBay Member - Email Virus Malware

One of the latest virus/malware attacks is an email that purports to be a question from an eBay member. Crucially the email is not shown as being from eBay but is spoofed as being a different sender - the ones I've seen are from wincanton.co.uk and meterreading@britishgas. The message says:

Hello Your ad is posted twice . Which is the right price ?Is this your product? 

The link below the question appears to be eBay but if you hover over (don't click!) then you'll see that the URL isn't the same as the link text. The link is to a compromised site so that when you click your PC will be infected with malware that can steal bank details or be controlled remotely.

This was quite an effective attack as I do currently have eBay listings running at the moment but fortunately the email came in on an account that isn't linked to eBay and all eBay emails come from them not the third party who has the question.