Soporte sobre Script

08/01/2006 - 17:22 por Miguel A. | Informe spam
Quiero distribuir varios Hotfix a los portatiles de mi empresa y mi idea es
hacerlo o bien a través de un cd o a través de un Pendrive. He creado el
siguiente script:

@echo off

REM INSTALLING HOTFIXES
echo "Installing Microsoft Hotfixes"
echo Please Wait

echo KB912919 Installed
START /wait %SYSTEMDRIVE%\SISTEMAS\Setup\hotfixes\KB912919.exe /u /q /z
echo KB905915 Installed
START /wait %SYSTEMDRIVE%\SISTEMAS\Setup\hotfixes\KB905915.exe /u /q /z
echo KB910437 Installed
START /wait %SYSTEMDRIVE%\SISTEMAS\Setup\hotfixes\KB910437.exe /u /q /z


echo.
echo Now running qchain.exe to ensure that all hotfixes are installed
correctly
START /wait %SYSTEMDRIVE%\SISTEMAS\Setup\hotfixes\qchain.exe
%SYSTEMDRIVE%\SISTEMAS\hotfix_log1.log
EXIT

El problema es que como veis los hotfix deben estar en %SYSTEMDRIVE%, existe
alguna manera de decirle que estan en el CD o Pendrive?
 

Leer las respuestas

#1 JM Tella Llop [MVP Windows]
08/01/2006 - 17:33 | Informe spam
El hotfix puede estar donde quieras. Si no le pones ruta, lo buscará en la
propia unidad donde resida el script. Y no es necesario lanzarlo con
start..

Jose Manuel Tella Llop
MVP - Windows
(quitar XXX)
http://www.multingles.net/jmt.htm
news://jmtella.com

Este mensaje se proporciona "como está" sin garantías de ninguna clase,
y no otorga ningún derecho.

This posting is provided "AS IS" with no warranties, and confers no
rights.
You assume all risk for your use.



"Miguel A." wrote in message
news:e2AxA$
Quiero distribuir varios Hotfix a los portatiles de mi empresa y mi idea
es
hacerlo o bien a través de un cd o a través de un Pendrive. He creado el
siguiente script:

@echo off

REM INSTALLING HOTFIXES
echo "Installing Microsoft Hotfixes"
echo Please Wait

echo KB912919 Installed
START /wait %SYSTEMDRIVE%\SISTEMAS\Setup\hotfixes\KB912919.exe /u /q /z
echo KB905915 Installed
START /wait %SYSTEMDRIVE%\SISTEMAS\Setup\hotfixes\KB905915.exe /u /q /z
echo KB910437 Installed
START /wait %SYSTEMDRIVE%\SISTEMAS\Setup\hotfixes\KB910437.exe /u /q /z


echo.
echo Now running qchain.exe to ensure that all hotfixes are installed
correctly
START /wait %SYSTEMDRIVE%\SISTEMAS\Setup\hotfixes\qchain.exe
%SYSTEMDRIVE%\SISTEMAS\hotfix_log1.log
EXIT

El problema es que como veis los hotfix deben estar en %SYSTEMDRIVE%,
existe
alguna manera de decirle que estan en el CD o Pendrive?


Preguntas similares