jah die heb ik, waar en hoe moet ik deze dan op de ris server installeren???
Gr.
Robert
zo ziet t ris-script eruit:
"@echo off
cls
echo now starting \\client.domein\install$\ris2.bat
REM Setting path to common utility's
path=%PATH%;l:\utils;l:\utils\aset;l:\i386
REM Setting enviormental variables
set AnswerFile=C:\unatt.txt
set SetupFiles=L:\i386
REM select correct disk.
l:
REM Make selection partition / install
cls
echo ******************WARNING******************
echo * This procedure will devide all your *
echo * files by 0. Thus resulting in a blank *
echo * hard disk! If you are not sure if this *
echo * is what you want to do please shut down *
echo * your pc NOW! *
echo ******************WARNING******************
echo * Please select: *
echo * 1: Partition Disk *
echo * 2: Partition Disk (new computers)
echo * 3: Install windows (partition first!) *
echo *******************************************
choice /C:123
if errorlevel 3 goto install
if errorlevel 2 goto partitionnew
if errorlevel 1 goto partition
cls
echo Starting repartitioning

ARTITIONNEW
echo Wiping all partitions from Disk 1
REM gdisk 1 /DEL /ALL /Y
goto CREATE

ARTITION
echo Wiping first partition from disk 1
REM gdisk 1 /DEL /PRI:1 /Y
goto CREATE
:CREATE
echo Wiping MBR
gdisk 1 /mbr /wipe /Y
echo Creating Primary C drive of 15GB. (max 16378MB . 15 nice and round.)
echo Changed to 7GB couse of vm ware dos max.
REM expelation: gdisk disk1 /create /primary /size:15000mb /Format /Quick /Yes! /Reboot
gdisk 1 /cre /pri /sz:15000 /FOR /Q /Y /R
goto END
:INSTALL
REM Setting smartdrv.exe (speeds up install windows)
echo loading smartdrive for imporved install speed.
smartdrv.exe
REM Getting computername in varable COMPUTERNAME
echo Please enter ComputerName:
aset COMPUTERNAME=getstr(50,'')
echo now using "%COMPUTERNAME%" for the workstation name, starting install
REM creating unattended file for local pc.
call L:\unatfle\winaf.bat
REM Preparing post install scripts
copy L:\postinst\postins.bat c:\
REM Warning to remove drive
cls
echo **************************************************************************
echo **************************************************************************
echo **************************************************************************
echo **************************************************************************
echo ******** ********
echo ******** The CD should now be removed from the drive!!!!!!! ********
echo ******** ********
echo **************************************************************************
echo **************************************************************************
echo **************************************************************************
echo **************************************************************************
wait 5
REM Install windows /source:L:\i386
%SetupFiles%\winnt.exe /s:%SetupFiles% /u:%AnswerFile%
:END
misschien heb je er wat aan! (bij client.domein zet je dus je eigen werkstation neer + domein)
De RIS CD roept dit batch bestand aan.
Daarnaast heb ik nog diverse folders die noodzakelijk zijn voor een OS. en een aparte folder met de drivers, zie onderstaand qua layout:
0 = Chipset
1 = Ethernet
2 = Video
3 = Sound
4 = wifi
5 = Modem
1 = Dell merk1
2 = Dell merk2
3 = Dell merk3
4 = Dell Laptop
5 = HP merk1
6 = HP merk2
voor elke model heb ik dus 6 folders met drivers.
in een ander ris-script zul je de drivers en folders moeten aangeven.
daarnaast in de answer file zet je dus de bovenstaande keuzes en drivers.
misschien helpt het je op weg, misschien zie je helemaal door de bomen het bos niet meer
succes met de opstap.