Skip to main content

Featured

WIN ALL ACTEVETED LIFETIME

  Search for: Recent Posts Simple trick to install Windows 11 on an old PC Easy ways to activate Windows 11 for FREE without a product key Remove “You may be a victim of software counterfeiting” notification Windows Defender detects my scripts as “HackTool:BAT/AutoKMS” Quickly convert Windows Server Evaluation edition to the retail one Easiest way to remove the Windows watermark from your screen Categories Computer Tips Microsoft Software Products 2 ways to activate Windows 10 for FREE without additional software Posted by  Always Smile   in  Microsoft Software Products  /  Last updated on  August 26, 2021 As you know, Microsoft notified Windows 10 is “the last version of Windows” and explained that they will be focused on the development of powerful and new features under the guise of software updates instead of building a new version. This means there will be no Windows 11 or 12 in the future(*). So if you are thinking about an upgrade, this is the b...

 If you're like me then you probably don't check your email often just because you forget or don't want to waste your time if there are no new emails. Then all your emails pile up and you have to go through all of them all at once. Well today that stops. I am going to show you step by step how to run a Python script I wrote that will run every hour through windows task scheduler and open up gmail if you have any unread messages. It should take about 20 minutes so if you have time now let's get to it.

Step 1: Download Python

Download Python

Step 2: Download PyCharm

Download PyCharm

Download the community version here

www.jetbrains.com/pycharm/download/#tabs_1=windows

Step 3: In PyCharm Create a .py File

In PyCharm Create a .py File

It should be under File, New, then click python file name it whatever. I named mine hi.

Step 4: Put Code Into File and Run

Put Code Into File and Run

REPLACE USERNAME with the part in your email address before the @ and PASSWORD with your password

import imaplib

import webbrowser

obj = imaplib.IMAP4_SSL('imap.gmail.com','993')

obj.login('USERNAME','PASSWORD')

obj.select() unread = str(obj.search(None, 'UNSEEN'))

print(unread)

print(len(unread) - 13)

if (len(unread) - 13) > 0: webbrowser.open('http://gmail.com')


RUN the file by clicking run then the file name. If it fails go on to the next step. If not go to the step after the next step.

Step 5: Turn Down Security

Turn Down Security

Go to this page

www.google.com/settings/security/lesssecureapps

then set access to less secure on

Step 6: Run It Again

This time run the script and there should be no errors

Step 7: Open Windows Task Scheduler

Open Windows Task Scheduler

Search for windows task scheduler in the program search bar

Step 8: Create a Task

Follow these instructions here to create the task

Sorry I dont know how to expain this part.

http://blogs.esri.com/esri/arcgis/2013/07/30/sched...

Step 9: Done

Now every hour or whatever interval you set it at the program will run and open gmail if you have unread messages.

Here is a video of it in action.

Comments

Popular Posts