Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6076107
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:34:12+00:00 2026-05-23T10:34:12+00:00

I am using Windows 7 64bit Here is the code snippet I am using

  • 0

I am using Windows 7 64bit

Here is the code snippet I am using to start

@echo off
call "C:\Program Files (x86)\LOLReplay\LOLRecorder.exe"
call "G:\League of Legends\lol.launcher.exe"
exit

But unless I close LOLRecorder.exe it won’t start my lol.launcher.exe…. basically I want both running and the cmd prompt exit after they start. Whats wrong here? I checked out another stackoverflow answer Here but it refers to the same method I am using.

EDIT:

With the start command it just starts 2 terminal windows and nothing starts!

@echo off
start "C:\Program Files (x86)\LOLReplay\LOLRecorder.exe"
start "G:\League of Legends\lol.launcher.exe"
exit
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T10:34:13+00:00Added an answer on May 23, 2026 at 10:34 am

    With the start command it just starts 2 terminal windows and nothing starts!

    The problem is the quotes (which are unfortunately required, due to the spaces in the paths). The start command doesn’t seem to like them.

    You can work around this by using the short DOS names for all the directories (and remove quotes), or by specifying the directory separately and quoting it (which the start command seems to be able to deal with).

    Try this:

    @echo off
    start /d "C:\Program Files (x86)\LOLReplay" LOLRecorder.exe
    start /d "G:\League of Legends" lol.launcher.exe
    

    Or, if your batch files become more complicated in the future, or your program names have spaces in them, this:

    @ECHO OFF
    
    CALL :MainScript
    GOTO :EOF
    
    :MainScript
      CALL :RunProgramAsync "C:\Program Files (x86)\LOLReplay\LOLRecorder.exe"
      CALL :RunProgramAsync "G:\League of Legends\lol.launcher.exe"
    GOTO :EOF
    
    :RunProgramAsync
      REM ~sI expands the variable to contain short DOS names only
      start %~s1
    GOTO :EOF
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using android 1.6 under windows 7 64bit when I call notifyDataSetChanged() from the
Using MSVC2008, 32bit on 64bit system. I was once advised to never include windows.h
I've been working on a simple windows program using Visual C++ 2010 express on
I am writing a program in C for windows using visual studio 2010. I
I'm running Windows 7 Ultimate (64 bit) using Visual Studio 2010 RC. I recently
Using Windows Server 2003 in a multi-user environment (via Remote Desktop, using it as
Using Windows 2003, I'm look for a way to create a logoff script that
Using Windows So I'm reading from a binary file a list of unsigned int
Using windows server, I have a path to a file that, when you click
Using Windows Mobile 6.5 and C# The CharacterCasing property seems to be missing from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.