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

  • Home
  • SEARCH
  • 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 834667
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T04:42:26+00:00 2026-05-15T04:42:26+00:00

I need help with this batch file I’m working on, Basically everytime it does

  • 0

I need help with this batch file I’m working on,

Basically everytime it does a task it should plus the variable %number% by one which works fine and all and then repeat over again doing a different task until its completed.

This is the code which it uses to repeat

I need a way of settings basically:

set svn=%svn%%number%
set svnlink=%svnlink%%number%
set svnfolder=%svnfolder%%number%

Instead I am using:

if %number%==1 (
set svn=%svn1%
set svnlink=%svnlink1%
set svnfolder=%svnfolder1%)
if %number%==2 (
set svn=%svn2%
set svnlink=%svnlink2%
set svnfolder=%svnfolder2%)
if %number%==3 (
set svn=%svn3%
set svnlink=%svnlink3%
set svnfolder=%svnfolder3%)

Which i really need to shorten as this goes up to number 20+

Is this possible? If you could help me, Thanks!

  • 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-15T04:42:27+00:00Added an answer on May 15, 2026 at 4:42 am

    Use a temporary batch file. This might not be elegant, but it works:

    set svn1=First text
    set svn2=Second text
    
    REM This echos the first text
    set number=1
    echo echo %%svn%number%%% > a.bat
    call a
    
    REM This echos the second text
    set number=2
    echo echo %%svn%number%%% > a.bat
    call a
    
    if exist a.bat del a.bat
    

    But beware: It can get quite difficult to find out the number and order of %‘s to use here. In the example, %%svn%number%%% is transformed to %svn[actual value X of variable number]% and this is transformed to the actual value of svnX inside of a.bat.

    So your actual code should be like this:

    REM Note that number has to be set here already!
    echo set svn=%%svn%number%%% > a.bat
    echo set svnlink=%%svnlink%number%%% >> a.bat
    echo set svnfolder=%%svnfolder%number%%% >> a.bat
    call a.bat
    

    This can also be used as a subroutine:

    set number=1
    set returnmark=mark1
    goto setvars
    :mark1
    
    set number=45
    set returnmark=mark2
    goto setvars
    :mark2
    
    goto end
    
    :setvars
    echo set svn=%%svn%number%%% > a.bat
    echo set svnlink=%%svnlink%number%%% >> a.bat
    echo set svnfolder=%%svnfolder%number%%% >> a.bat
    call a.bat
    goto %returnmark%
    
    :end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 476k
  • Answers 476k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You are using it wrong. It basically does a coordinate… May 16, 2026 at 5:01 am
  • Editorial Team
    Editorial Team added an answer The object_detail view has queryset as the first positional argument.… May 16, 2026 at 5:01 am
  • Editorial Team
    Editorial Team added an answer It seems that they changed the API. Your example now… May 16, 2026 at 5:01 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.