Windows 7 Internet connection before login

ssdcool

New Member
Joined
Jan 25, 2010
Messages
2
Hello Everybody,

Is there any way I can connect to my PPPoE internet before Login.
I want it for team viewer. I always use my home pc remotely from office. but if I want to restart or switch user then it get disconnected. Actually teamviewer has option to start it as windows service. So I am thinking it would start before login as many other services.
I want to confirm if it will get start before login. and How can I have PPPoE internet connection before login. so that I can access teamviewer.

Thank You.
 


Solution
To connect to a PPPoE (Point-to-Point Protocol over Ethernet) internet connection before login on Windows, you can set up a scheduled task to establish the connection automatically when the system boots up. This way, your internet connection will be available even before you log in. Here are the steps you can follow:

Setting up PPPoE Connection to Start Automatically:​

  1. Create a Batch Script:
    • Open Notepad and create a new text file.
    • In the text file, enter the command to establish the PPPoE connection, for example:
      Code:
       rasdial "YourConnectionName" YourUsername YourPassword
      Replace "YourConnectionName", YourUsername, and YourPassword with your actual connection name, username, and...
To connect to a PPPoE (Point-to-Point Protocol over Ethernet) internet connection before login on Windows, you can set up a scheduled task to establish the connection automatically when the system boots up. This way, your internet connection will be available even before you log in. Here are the steps you can follow:

Setting up PPPoE Connection to Start Automatically:​

  1. Create a Batch Script:
    • Open Notepad and create a new text file.
    • In the text file, enter the command to establish the PPPoE connection, for example:
      Code:
       rasdial "YourConnectionName" YourUsername YourPassword
      Replace "YourConnectionName", YourUsername, and YourPassword with your actual connection name, username, and password.
    • Save the file with a .bat extension (e.g., ConnectPPPoE.bat).
    []Create a Scheduled Task:
    • Press Win + R to open the Run dialog.
    • Type taskschd.msc and press Enter to open the Task Scheduler.
    • In the Task Scheduler, click on Create Basic Task or Create Task in the Actions pane.
    • Follow the wizard to set up a task that runs the batch script (ConnectPPPoE.bat) at system startup.
    [
    ]Configure TeamViewer:
    • Make sure TeamViewer is set to start as a Windows service.
    • Check the TeamViewer settings to ensure it launches with Windows. By following these steps, your PPPoE connection should be established automatically when Windows starts up, allowing you to access TeamViewer remotely even before logging in. Feel free to try out these steps and let me know if you need any further assistance!
 


Solution
Back
Top