<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Rakgowda</title>
    <description>The latest articles on DEV Community by Rakgowda (@rakgowda).</description>
    <link>https://dev.to/rakgowda</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F440538%2F21bf9f4a-2396-4007-b58a-d0339b0fe121.jpeg</url>
      <title>DEV Community: Rakgowda</title>
      <link>https://dev.to/rakgowda</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rakgowda"/>
    <language>en</language>
    <item>
      <title>How to keep your Microsoft team online even if you're not using it !!!</title>
      <dc:creator>Rakgowda</dc:creator>
      <pubDate>Sun, 30 May 2021 13:26:09 +0000</pubDate>
      <link>https://dev.to/rakgowda/how-to-keep-your-microsoft-team-online-even-if-you-re-not-using-it-5cma</link>
      <guid>https://dev.to/rakgowda/how-to-keep-your-microsoft-team-online-even-if-you-re-not-using-it-5cma</guid>
      <description>&lt;p&gt;Hello world, this is my first blog that I’m writing. In this blog, I will explain 2 ways to set Microsoft team application online even if you're not using it.&lt;br&gt;
The key here is we need to move the mouse🖱️ because the Microsoft team application detects the mouse movement to show online or away.&lt;br&gt;
Number one:-&lt;br&gt;
Using external mouse&lt;br&gt;
Requirement: — External mouse and any glass surface like watch or glass cup.&lt;br&gt;
Connect the external mouse to our laptop.&lt;br&gt;
Place mouse laser sensor on top of the watch ⌚.&lt;/p&gt;

&lt;p&gt;3.That’s it. It will keep your Microsoft team application online.&lt;br&gt;
Number Two:-&lt;br&gt;
Requirement:- Download jar and bat file from the below link.&lt;br&gt;
&lt;a href="https://drive.google.com/drive/folders/1VaN95wsmUut_qgh67KrA5BFMjy0xsK8o?usp=sharing"&gt;https://drive.google.com/drive/folders/1VaN95wsmUut_qgh67KrA5BFMjy0xsK8o?usp=sharing&lt;/a&gt;&lt;br&gt;
Create a folder on your laptop as mouseJiggler.&lt;br&gt;
Place the downloaded file into the folder.&lt;br&gt;
Run mouseJigger.bat file.&lt;br&gt;
That’s it. It will keep your Microsoft team application online.&lt;br&gt;
Wonder how it works???&lt;br&gt;
It’s a simple java code that will keep your mouse moving every 10 seconds. The source code for the above jar is available below. Can you play around with it.&lt;/p&gt;

&lt;p&gt;import java.awt.Robot;&lt;br&gt;
import java.util.Random;&lt;br&gt;
public class Mouse {&lt;br&gt;
// WAIT -&amp;gt; interval for mouse movement.&lt;br&gt;
public static final int WAIT = 10000;&lt;br&gt;
// Maximum X position mouse can move&lt;br&gt;
public static final int Y = 400;&lt;br&gt;
// Maximum Y position mouse can move&lt;br&gt;
public static final int X = 400;&lt;br&gt;
public static void main(String… args) throws Exception {&lt;br&gt;
Robot robot = new Robot();&lt;br&gt;
Random random = new Random();&lt;br&gt;
while (true) {&lt;br&gt;
// move mouse to random x and y position&lt;br&gt;
int x = random.nextInt(X);&lt;br&gt;
int y = random.nextInt(Y);&lt;br&gt;
System.out.println(“Mouse move to x=”+x+” and y=”+y+” position.”);&lt;br&gt;
robot.mouseMove(x,y);&lt;br&gt;
Thread.sleep(WAIT);&lt;br&gt;
}&lt;br&gt;
}&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;Jar file moves the mouse every 10 seconds. You can increase the timing from 10 seconds to 1 minute to save energy ⚡.&lt;br&gt;
That’s it, hope you like this blog 😊.&lt;/p&gt;

</description>
      <category>workstations</category>
    </item>
  </channel>
</rss>
