Skip to content

Mstoic

  • Home
  • Start Here!
  • Best Deals
  • Facebook Tricks
  • Privacy
  • Resources
  • TOC
  • Tools
    • Web Tools
      • Stop Watch
      • QR Code Generator
      • Adsense Code Converter
      • Blogger Sitemap Generator
      • Difference Between Two Texts
      • Vacation Checklist
      • Twitter Symbols
      • Count Down
    • Investment
      • SIP Calculator
      • Power of Compounding
      • PPF Calculator
      • FD Calculator
  • About Us

Using Dropbox To Monitor Your Computer Remotely

Editorial Team | October 24, 2013 | Dropbox |

There are many apps that lets you access any other computer remotely, our favorite being TeamViewer. But if you don’t want to access the computer and want to spy on it instead, then you can do it very easily using the famous file sharing service, Dropbox.

  • Cloud Storage Comparison – Dropbox, SkyDrive, Google Drive and Box
  • Enable two-step verification in Dropbox
  • Get up to 70 GB of Extra Dropbox Space For Free

Why You Will Want To Do It

There can be many reasons to do this, some of them are listed below.

  1. You want to see what is being done on your office computer when you are away or at home.
  2. You have small children at home and you want to make sure, they are not exposed to anything they are not supposed to see.
  3. You may want to track the progress of any program or process running on your computer remotely.

What Will We Do

The concept is quite simple. We will install an application that can take screenshots using hot-keys and that can save screenshots to our synced Dropbox folder. Then we’ll automate this using another application that initiates the hot-keys after the set-interval.

Setting Up PC Monitoring Using Dropbox

  1. Make sure you have Dropbox installed and it’s logged in with the account you want to sync your screenshots to.
  2. Install a screen capture utility that can capture the screen with hot-keys. You can use Dropbox Screen Grabber for this purpose. Just install the application and it will save all the screenshots to your Dropbox’s public folder. You can optionally change this folder to suit your needs. The program by default takes screenshots with the “Shift+F10” key combination. You can customize this too.
  3. Dropbox-Screen-Grabber
  4. Now we need a program that can initiate this key combination automatically after a set time interval. We will use AutoHotkey for this purpose.
  5. After installation, it will ask you for a file that it can use for the scripts. If you don’t have one, it will create it for you. Now in that file, paste the code given below.

    Loop {     Send, {SHIFTDOWN}{F10}{SHIFTUP}     Sleep, 60000 }

    The above script initiates the hotkey “Shift+F10” after every 60 seconds. You can change it to any duration and also set the key combination if you have changed it in the program or you use some other program.

That’s it. Now the Dropbox Screen Grabber will take the screenshot after every one minute and will save it to your Dropbox folder. The Dropbox application will then upload it to Dropbox.com, which can then be accessed from any remote PC or mobile device.

Previous Post

Windows Update Cleanup Recovers Many Gigabytes of Your Hard Disk Space

by Editorial Team

Next Post

What Is Poking On Facebook And How You Can Auto Poke Your Friends

by Editorial Team

Recommended Next
Host Your Website On Dropbox For Free

Your Comment Cancel reply

Follow Us

Like us Follow us Follow us

Categories

  • Tricks (93)
  • Facebook (83)
  • Tips (76)
  • Windows (67)
  • Wordpress (39)
  • Android (38)
  • Internet (33)
  • Antivirus (30)
  • How To (29)
  • Webmasters (25)
  • Customization (25)
  • Downloads (21)
  • Utilities (21)
  • Gmail (20)
  • Windows 7 (19)

Related Articles

  • Reverse a String using StringBuilder