have 3 ?'s
I modified the startnet.cmd to launch to a network share.
my problem is the delay in receiving a DHCP address to when my scripts kick off.
1. is there a way to create a delay for X-seconds in XPE (sleep doesn't work)?
startnet.cmd
factory -winpe
cls
@echo off
set AnswerFile=\\ap01u\dfs\SoftDist\Microsoft\Windows_XPSP1\xp_deploy\unatt.txt
set SetupFiles=\\ap01u\dfs\SoftDist\Microsoft\Windows_XPSP1\xp_deploy\I386
net use s: \\ap01u\dfs\softdist /user:?????? ?????? /persistent:no
Diskpart /s \\ap01u\dfs\SoftDist\Microsoft\Windows_XPSP1\xp_deploy\diskpart.txt
format c: /fs:NTFS /v:winxp /q /x /y
\\ap01u\dfs\SoftDist\Microsoft\Windows_XPSP1\xp_deploy\I386\winnt32 /SYSPART:C: /s:%SetupFiles% /unattend:%AnswerFile% /copysource:lang
2. after install is complete I want to assign R: to my cd drive, I want this to happen without going through diskmanager. HOW?
3.computer has 1 hard drive i have used Diskpart to create an 8gig part, and now i want to make the rest of the drive U: (NTFS, must also be a primary partition, no matter what size the drive)
diskpart.txt
select disk 0
clean
create partition primary size=8192
select partition 1
assign letter=c
active
detail disk
exit
please help