Category Archives: Tips

Here are random tips I find along the way. I hope they help, enjoy!

How to Enable “Undo Send” for your Gmail Account

Recently, Gmail rolled out a cool little feature called “undo send”. Basically this feature allows a user to “call back” a sent email. “Undo Send” doesn’t actually pull the email from the recipient’s mailbox; but instead puts a small time limit on the email before it is sent from your account. This allows you to undo a “sent” email for up to 30 seconds.

This is very useful if you accidentally forgot to attach a document or having the wrong recipient for the email. I would recommend enabling this feature. It may save you some embarrassment down the road.

Here is how to enable “Undo Send” for your Gmail account.

Step One: Log into your Gmail account.

Step Two: Click the gear in the right hand corner and go down to Settings.Gmail Settings

Step Three: Once Settings is opened click the General tab and you will see an Undo Send Option. Continue reading

Setup Gmail Account as POP3 in Outlook 2013

Here is a tutorial on how to setup your Gmail account in Microsoft Office 2013. These instructions will also work for Outlook 2007, 2010, and Outlook Preview 2016.

I created the video below on how to setup your Gmail account as POP3 in Outlook 2013. However, if you would rather follow text instructions you will find them below.

Before we open Outlook lets visit your Gmail account.

Log into your Gmail and go the gear in the right corner and select Settings.Gmail Account Settings

Go to the Forwarding and IMAP/POP setting tab. Enable POP for all mail. Continue reading

Remove Third Party Ads and Offers From Java

Here is a small tip I came across a while ago. In this post I will show you how to remove third party offers and advertisements during Java updates. You can follow this video tutorial or follow my written steps below.

Step One: Search for Java in your start menu. Click “Configure Java“.

Step Two: Go to the Advanced tab and scroll down to the bottom.

Step Three: Check the following box “Suppress sponsor offers when installing or updating Java”.Uncheck Java Option

 

Save your settings. Now that you have this setting checked you won’t see any more third party offers or programs to install.

Please follow me on Google Plus and Twitter if you want to see more content like this.

This was posted by techspeeder.

 

Configure Email Notification for Windows Server 2012 Windows Backup

I can’t find anywhere in the Windows Server 2012 (R2) settings to allow an email notification when a server backup completes successfully. Windows Server 2012 Essentials has a nice feature that you allows you to get email reports on your backup status. This helps keep tabs on your server without logging in everytime. I wanted a similar notification for when a Windows Server 2012 backed up successfully.

After some research online this is how I found to accomplish this task.

Part One of Tutorial

Lets create a Powershell script. This script will allow us to send email.

Use this Powershell script. Please note your username and password isn’t encrypted. There are ways to encrypt your password but the following tutorial doesn’t show you how to.

$EmailFrom = “notifications@somedomain.com”
$EmailTo = “me@earth.com”
$Subject = “Notification from XYZ”
$Body = “this is a notification from XYZ Notifications..”
$SMTPServer = “smtp.gmail.com”
$SMTPClient = New-Object Net.Mail.SmtpClient($SmtpServer, 587)
$SMTPClient.EnableSsl = $true
$SMTPClient.Credentials = New-Object System.Net.NetworkCredential(“username”, “password”);
$SMTPClient.Send($EmailFrom, $EmailTo, $Subject, $Body)
Just change $EmailTo, and username/password in $SMTPClient. For the credentials don’t include @gmail.com in your username.

Thanks to Christian Muggli for this script.

Log into your Gmail account and make sure two factor authentication is turned off. Also make sure less secure apps are enabled. Visit this site https://www.google.com/settings/security/lesssecureapps to find out if it is enabled or not. If it isn’t enabled you will get this error message.

Powershell SMTP Server ErrorThe SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 authentication required. Continue reading

Clear App Defaults On Android Lollipop Phone

I decided to post something a little different than my normal troubleshooting tips.

Here is a small video tutorial on how to clear default apps on an Android phone. My phone is running Android Lollipop but the settings will be similar on other versions of Android.

If you enjoyed the video please subscribe for more.

This was posted by techspeeder.