Telenut Posted May 20, 2006 Posted May 20, 2006 see: http://www.ss64.com/ntsyntax/redirection.html command > file 2>&1 Redirect output and errors to one fileI'm not sure it will not work without it... but I did not create the original script :-)
Sonic Posted May 20, 2006 Posted May 20, 2006 >NUL Redirect normal output to nothing, but if there is an error output (btw, each program choose how output is displayed ...) it's display on cmd window. To keep a clean cmd windows without ANY messages we can use>NUL 2>&1 Redirect normal output to nothing and error output to nothing too. In fact &1 speficy the redirection to the first specified output location (NUL or file). The 2> it's just for the error output (you can use only command 2>NUL to keep normal output on cmd but error to nothing. Wow ! Big excuses for my english language
sk3 Posted May 20, 2006 Posted May 20, 2006 Thanks I'm trying to create an install script with unattended support so i can install patches from HDD or CD/DVD. Right now i use an old one to install updates from setup but i'm coding a new one maybe i'll post it on the forum when i finished it. I just want to make something simple and easy to use (well without "eye candy interface")
Telenut Posted May 21, 2006 Posted May 21, 2006 I allready did that...But don't have the script here at home (only an old version from february)interested?
sk3 Posted May 21, 2006 Posted May 21, 2006 yes, sure. i can take some ideas from your script if you don't mind
Telenut Posted May 21, 2006 Posted May 21, 2006 (edited) see attachmentSome parts are in Dutch, you can change that if you want by 'search and replace'.edit: Attachment updated to May version :-)install.zip Edited May 24, 2006 by Telenut
Gee Posted May 24, 2006 Posted May 24, 2006 Looks like there is an update to KB892130. Does anyone know where the direct download is for this update?
the_guy Posted May 24, 2006 Posted May 24, 2006 http://www.download.windowsupdate.com/msdo...4e87cca5ecf.exethe_guy
jrf2027 Posted May 24, 2006 Posted May 24, 2006 (edited) Couple of questions - 1. Can the new version of KB892130 posted directly above be installed using svcpack.inf? I was able to run and successfully install it silently on two machines, using /q /n /z on one and /quiet /nobackup / norestart on the other. These machines are, of course, both up and running. Is there some problem with installing it via svcpack I need to watch for?UPDATE 5/26/06 - I answered my own question. KB892130, as well as KB905474, can both be installed via svcpack.inf, using the /q /n /z switches. I suspect this may only work on preactivated and/or VLK installs, so YMMV on other installs.2. I know many people have been having problems integrating KB912812 directly into their installs, but has anybody experienced any problems with running it from svcpack.inf? I have it in my svcpack.inf, switches are correct, but when I connect to Windows Update or Microsoft Update it shows up as needing to be installed.Thanks to anybody who can help! Edited May 26, 2006 by jrf2027
muiz Posted June 1, 2006 Posted June 1, 2006 the link is here.the_guyThx... may i ask how you found it ?
hj_fr Posted June 7, 2006 Posted June 7, 2006 A new update was released by microsoft to solve a possible UDP network issueKB917730 (2006/05/30)http://www.microsoft.com/downloads/details...&displaylang=en
the_guy Posted June 8, 2006 Posted June 8, 2006 the link is here.the_guyThx... may i ask how you found it ?The main reason that I found it was that someone had posted it on another forum I visit.the_guy
Recommended Posts