MSFN Forum: make xp 64bit unattended - MSFN Forum

Jump to content


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

make xp 64bit unattended Rate Topic: -----

#1 User is offline   jonaand 

  • Group: Members
  • Posts: 6
  • Joined: 07-January 13
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 07 January 2013 - 07:11 AM

hey! i'm doing unattended windows xp sp2 64bit
but the iso is in enlgish
the idea is that you install the Spanish language installation dese
then use the nLite to allow programs to be installed while installing windows
RunOnceEx following command is used to give information to install program

@echo off

title instalando idioma, componentes y actualizaciones
color 47
:Programas
echo Instalando Lenguaje Español
start /wait msiexec /i %SYSTEMDRIVE%\Install\MUI.Spanish.MSI /passive /norestart /f
sleep 2
cls
echo Instalando Internet Explorer 8
start /wait %SYSTEMDRIVE%\Install\IE8.exe /passive /update-no /norestart /f
sleep 2
cls
echo Instalando Windows Media Player 11
start /wait %SYSTEMDRIVE%\Install\wmp11-windowsxp-x64-enu.exe /Q
sleep 2
cls
echo Instalando Idioma Media Player 11
start /wait %SYSTEMDRIVE%\Install\wmp11setup-64_muiesn.exe /Q
sleep 2
cls
echo Instalando visual C++ 2010 x86
start /wait %SYSTEMDRIVE%\Install\Visual1.exe /passive /norestart /f
sleep 2
cls
echo Instalando visual C++ 2010 x64
start /wait %SYSTEMDRIVE%\Install\Visual2.exe /passive /norestart /f
sleep 2
cls
echo Instalando visual C++ 2008 x86
start /wait %SYSTEMDRIVE%\Install\vcredist86.exe /q
sleep 2
cls
echo Instalando visual C++ 2008 x64
start /wait %SYSTEMDRIVE%\Install\vcredist64.exe /q
sleep 2
cls
echo Instalando visual C++ 2008 x86 SP1
start /wait %SYSTEMDRIVE%\Install\Visual3.exe /q
sleep 2
cls
echo Instalando visual C++ 2008 x64 SP1
start /wait %SYSTEMDRIVE%\Install\Visual4.exe /q
sleep 2
cls
echo Instalando Framework 3.5
start /wait %SYSTEMDRIVE%\Install\dotnetfx35.exe /q /norestart
sleep 2
cls
echo Instalando Framework 4
start /wait %SYSTEMDRIVE%\Install\dotNetFx40_Full_x86_x64.exe /q /norestart
sleep 2
cls

:Salir
exit


the problem is in the command of the language pack, because it opens the help window telling pack of commands, which are these

msiexec /opción <Parámetro necesario> [Parámetro opcional]

Opciones de instalación
</package | /i> <Product.msi>
Instala o configura un producto
/a <Product.msi>
Instalación administrativa: instala un producto en la red
/j<u|m> <Product.msi> [/t <Lista de transformación>]
[/g <Id. de idioma>]
Anuncia un producto: m para todos los usuarios, u para
el usuario actual
</uninstall | /x> <Product.msi | Código_producto>
Desinstala el producto
Opciones de pantalla
/quiet
Modo silencioso sin interacción del usuario
/passive
Modo desatendido: sólo se muestra la barra de progreso
/q[n|b|r|f]
Establece el nivel de interfaz del usuario
n - sin UI
b - UI básica
r - UI reducida
f - UI completa (predeterminado)
/help
Información de ayuda
Opciones de reinicio
/norestart
No reiniciar una vez finalizada la instalación
/promptrestart
Pide al usuario que reinicie el equipo si fuera necesario
/forcerestart
Reiniciar siempre el equipo después de la instalación
Opciones de registro
/l[i|w|e|a|r|u|c|m|o|p|v|x|+|!|*] <Archivo_registro>
i - mensajes de estado
w - avisos no graves
e - todos los mensajes de error
a - inicio de acciones
r - registros específicos para la acción
u - solicitudes del usuario
c - parámetros iniciales de IU
m - sin memoria o información de salida grave
o - mensajes de espacio insuficiente en disco
p - propiedades de Terminal Server
v - información detallada
x - información de depuración extra
+ - anexar al archivo de registro existente
! - vaciar cada línea al registro
* - registrar toda la información, excepto las opciones
v y x
/log <Archivo_registro>
Equivalente a /l* <Archivo_registro>
Opciones de actualización
/update <Update1.msp>[;Update2.msp]
Aplica las actualizaciones
/uninstall <Guid_código_actualización>[;Update2.msp] /package
<Product.msi | Código_producto>
Quita las actualizaciones de un producto
Opciones de reparación
/f[p|e|c|m|s|o|d|a|u|v] <Product.msi | Código_producto>
Repara un producto
p - sólo si el archivo no existe
o - si el archivo no existe o está instalada una versión
anterior (predeterminado)
e - si el archivo no existe o está instalada una versión
anterior o igual
d - si el archivo no existe o está instalada una versión
diferente
c - si el archivo no existe o la suma de comprobación no
coincide con el valor calculado
a - obliga a instalar todos los archivos
u - todas las entradas de registro necesarias específicas
del usuario (predeterminado)
m - todas las entradas de registro necesarias específicas
del equipo (predeterminado)
s - todos los accesos directos especificados
(predeterminado)
v - se ejecuta desde el origen y copia en la caché el
paquete local
Establecer propiedades públicas
[PROPERTY=Valor_propiedades]

I do not know when I'm wrong it does not install
because I put this line

start /wait msiexec /i %SYSTEMDRIVE%\Install\MUI.Spanish.MSI /passive /norestart /f

thanks so much


#2 User is offline   Sp0iLedBrAt 

  • MSFN Addict
  • Group: Supreme Sponsor
  • Posts: 1,710
  • Joined: 19-March 09
  • OS:XP Pro x86
  • Country: Country Flag

Posted 07 January 2013 - 07:49 AM

Have you tried adding the language pack directly into nLite?

#3 User is offline   jonaand 

  • Group: Members
  • Posts: 6
  • Joined: 07-January 13
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 07 January 2013 - 08:20 AM

View PostSp0iLedBrAt, on 07 January 2013 - 07:49 AM, said:

Have you tried adding the language pack directly into nLite?

yes but it don't add becouse is a msi file, and it isn't an update file

#4 User is offline   Sp0iLedBrAt 

  • MSFN Addict
  • Group: Supreme Sponsor
  • Posts: 1,710
  • Joined: 19-March 09
  • OS:XP Pro x86
  • Country: Country Flag

Posted 07 January 2013 - 05:25 PM

Two strange things:

1. I couldn't find x64 Language Packs for XP;
2. The ones I found for x86 were .exe, not .msi files. How did you find yours?

#5 User is offline   jonaand 

  • Group: Members
  • Posts: 6
  • Joined: 07-January 13
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 07 January 2013 - 05:29 PM

i've download it from another web page, but my msi file is original and traduce all windows
how can i add these to unnated instalation?

#6 User is offline   submix8c 

  • Inconceivable!
  • Group: Patrons
  • Posts: 3,249
  • Joined: 14-September 05
  • OS:none specified
  • Country: Country Flag

Posted 07 January 2013 - 06:15 PM

Found this and links are no longer valid. Other sources are not necessarily "legit", therefore unknown about MSI vs EXE.

Interesting that you ask that question here as well.

This post has been edited by submix8c: 07 January 2013 - 06:15 PM


#7 User is offline   jonaand 

  • Group: Members
  • Posts: 6
  • Joined: 07-January 13
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 07 January 2013 - 10:13 PM

here i've founded a official's method of microsoft convert MSI to EXE

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

2 User(s) are reading this topic
0 members, 2 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2013 msfn.org
Privacy Policy