您的位置:首页技术文章
文章详情页

Windows Vista Network部署脚本

浏览:20日期:2023-08-09 18:08:03

这些脚本是创建一个 WinPE network Vista 部署脚本。

startnet.cmd -

@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: wdswinbits /user:opk-wdsadministrator dev

g:

@echo Captureing image

imagex /capture fast /check /capture c: g:install.wim “Vista Ultimate”

startnet.cmd -

@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: wdswinbits /user:opk-wdsadministrator 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

标签: Windows系统