Jump to content

OutLine Console application at XP Instalation


Recommended Posts

Hello Guys. I'm Slipstreaming some applications under Windows XP instalation, and those application will interact with the user in the instalation. But i'm with some issues.

I've created a batchscript to display an option, and the user should press 1-4. Everything is in command Line. The problem is that VirtualBox is Showing strings competly wrong.

I dunno if it is VirtualBox's fault. I've integrated those stuff with nLite. My addon is made by myself using winRAR SFX, cabarc, and batchscripting. After Failed in the OUT stuff, i've converted it to C. same result

jwmxO.png

I gonna upload my addon soon. I'm with issues in 4shared.

[edit]

Nah. The main thing is the Source Code. Here is it:

@echo off
:main
cls
echo "Deseja Instalar:"
echo 1 - WinRAR 4.01
echo 2 - 7Zip 9.2
echo 3 - Ambos
echo 4 - Nenhum
echo.

set /p choice= Selecione uma Opcao e pressione ENTER:

if %choice%==1 goto choice_1
if %choice%==2 goto choice_2
if %choice%==3 goto choice_3
if %choice%==4 goto end
goto main

:choice_1
start /i /b "" "wrar401br.exe"
goto end

:choice_2
start /i /b "" "7z920.exe"
goto end

:choice_3
start /i /b "" "wrar401br.exe"
start /i /b "" "7z920.exe"
goto end

:end
set choice=

Edited by pichorra
Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...