-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinstall-win32.bat
More file actions
35 lines (31 loc) · 997 Bytes
/
install-win32.bat
File metadata and controls
35 lines (31 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@echo off
cls
echo This program will install the Perl modules required to run
echo umts-tools.
echo.
echo IMPORTANT : you need to make sure that Perl is installed on your
echo computer before running this installer. You can download a good
echo distribution of Perl from http://www.activestate.com/
echo.
set choice=
set /P choice="Type Q to quit, or ENTER to continue : "
if not "%choice%"=="" (
echo Aborting.
goto END
)
echo.
echo If you access internet via a proxy, please enter it below in the
echo form http://myuser:mypass@proxy.mydomain.org:80/, otherwise just
echo press ENTER.
echo.
set /P HTTP_PROXY="Proxy server : "
echo.
echo Installing Perl modules..
call ppm install Win32-API
call ppm install Config-General
call ppm install Digest-HMAC
call ppm install http://www.bribes.org/perl/ppm/Win32-SerialPort.ppd
call ppm install http://theoryx5.uwinnipeg.ca/ppms/Crypt-Rijndael.ppd
call ppm install File-Type
call ppm install XML-Simple
:END