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.
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.









