Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
These are the scripts used when creating a custom WinPE for network Vista deployment.
startnet.cmd - <Capture an Image>
@echo off
@echo Initializing network...
wpeinit
@echo Waiting for network services...
:StartMon
ping -n 1 wds > NUL
if not %ERRORLEVEL%==0 GOTO StartMon
@echo Mapping network resource
net use g: \\wds\winbits /user:opk-wds\administrator dev
g:
@echo Captureing image
imagex /capture fast /check /capture c: g:\install.wim “Vista Ultimate”
startnet.cmd - <Apply an Image>
@echo off
@echo Initializing network...
wpeinit
@echo Waiting for network services...
:StartMon
ping -n 1 wds > NUL
if not %ERRORLEVEL%==0 GOTO StartMon
@echo Mapping network resource
net use g: \\wds\winbits /user:opk-wds\administrator dev
g:
@echo Partitioning hard drive
diskpart /s diskpart.txt
@echo Applying image
imagex /apply g:\install.wim 1 c:\
To partition the hard disk use diskpart /s diskpart.txt
Diskpart.txt
select disk 0
clean
create partition primary
select partition 1
active
format FS=NTFS quick
exit
Comments
- Anonymous
January 01, 2003
The comment has been removed - Anonymous
September 07, 2011
imagex /capture fast /check /capture c: g:install.wim “Vista Ultimate” should be... imagex /COMPRESS fast /check /capture c: g:install.wim “Vista Ultimate”