Skip to content
CompLeadly
CompLeadly

Posts

How to make sure you never miss a comment on your posts (the LinkedIn algorithm will love it)

Author: CompLeadly TeamLast updated on 1 min read



Regular and quick responses to comments increase the visibility of posts on social media platforms like LinkedIn. Replying promptly signals activity, which can have a positive impact on reach and interactions. This guide shows you a simple way to automatically open your own LinkedIn posts at regular intervals so you can see new comments immediately.

Enlarge

How to create a batch file for LinkedIn comments

Create a batch file (Windows users) 0:18

  • Create a batch file that opens your LinkedIn page regularly.
  • This file can be run once per hour or more frequently.

Create a text document 0:35

  • Right-click on the desktop.
  • Select "New" and then "Text Document".
  • Name the document as you like (e.g. "Test").

Copy the command into the text document 0:48

  • Open the text document and copy the specific command into it:
    • The command ensures that nothing is displayed in the window.
    • It is a loop that repeats itself.
    • The LinkedIn page is opened.
    • Timeout of 3600 seconds (1 hour), adjustable to shorter intervals.

@echo off
:loop
start "" "https://www.linkedin.com/in/me/recent-activity/all/"
timeout /t 3600 /nobreak >nul
goto loop

Save and rename the file 1:39

  • Save the file and rename it from .TXT to .BAT.

  • Confirm the change if prompted.

6. Run the batch file 2:01

  • Double-click the .BAT file to start the program.
  • A command prompt opens and runs in the background.
  • The LinkedIn page is opened once per hour.

generated-image-at-00:00:18
generated-image-at-00:00:18
generated-image-at-00:00:48
generated-image-at-00:00:48
generated-image-at-00:01:39
generated-image-at-00:01:39
generated-image-at-00:02:01
generated-image-at-00:02:01
generated-image-at-00:02:15
generated-image-at-00:02:15

Was this article helpful?

0 found this article helpful

Didn't find your answer? Get in touch

Didn't find your answer?

Our support team is happy to help you personally.

Get in touch