TheTechGuide Forum

General Category => Software => Topic started by: Guest_aCaRo on May 05, 2003, 05:17:23 PM

Title: Windows PE Questions
Post by: Guest_aCaRo on May 05, 2003, 05:17:23 PM
Hello to all!!!!!!

i would like to know, what is this disc exactly. I have done the disc, but after run it i only see a desktop (with the great nu2 logo) and a command line. Which commands can i run from it???? (not all of course) i am interested to know how usefull can it be for me (or for us).
Some examples can help me to undestand that.

thanks a lot!!!!!!!!!!!!!
Title: Windows PE Questions
Post by: Tracky110XP on May 06, 2003, 01:01:25 PM
try this web site out:

http://www.microsoft.com/LICENSING/program...a/sam/winPe.asp (http://\"http://www.microsoft.com/LICENSING/programs/sa/sam/winPe.asp\")

for the most part it is there just to help in starting an installation of an OS. I found it not to be worth.

if you are looking for a bootable cd that will help in recoverying a broken system, look into ERD commander 2002, i found this one to be a great help.


Have fun,
Title: Windows PE Questions
Post by: Jazkal2 on May 06, 2003, 03:42:58 PM
Windows PE or \"Windows Preinstallation Environment\" is meant to be a deployment tool. It is meant to replace a 20 year old 16bit DOS environment with a newer 32bit or 64bit kernel based on WinXP or Win2k3 Server.

- Jazkal
Title: Windows PE Questions
Post by: Guest_§eri@lzs™ on May 06, 2003, 11:03:46 PM
/laugh.gif\' class=\'bbc_emoticon\' alt=\':lol:\' /> PLEASE anone Help me how to Burn It to CD.
Title: Windows PE Questions
Post by: gosh on May 07, 2003, 12:57:59 AM
It's more than a deployment tool.  By simply booting into windows PE from CD, you have full network access, you have access to the system, you can make a new boot.ini, you can format and repartition (even using a script), you can run most 32 bit programs such as disk probe, or drive image.  Below is a list of the default commands you can run on winpe:

Regedit, Notepad, Attrib, XCopy, Taskmgr, Expand, format.  Use diskpart to repartion.

-gosh
Title: Windows PE Questions
Post by: Guest_aCaRo on May 08, 2003, 01:24:56 PM
Thanks for your help!!!!!!

I can only run programs from the command line, isn't it?????

You say that with WinPE i have network, but can i try FTP or browse the web???? if this is possible wich programs can i use to do it???? I suppose that they will have to be executed directly (without installation) from a folder of WinPE CD. I'm interested that with this CD i can work in a computer like in another one, without install any OS (only run WinPE).

An another question:
if i want to configure the network interface in WinPE with this:
IP: 192.168.0.1
MASK: 255.255.255.0
GATEWAY: 192.168.0.254
DNS1:111.222.333
DNS2:444.555.666

wich command i must to run??????

I know that this post will be very difficult to undestand (sorry for my english, i'm spanish) but a lot of thanks for reading (you are really teach me a lot).

THANKS A LOT!!!!!!!!!!
Title: Windows PE Questions
Post by: Guest on August 25, 2003, 11:43:47 AM
PLEASE help me!

how can i do this in WinPE? what command should i use? /huh.gif\' class=\'bbc_emoticon\' alt=\':huh:\' />

:FORMAT
cls
echo   FORMAT MENU
echo   -----------
echo.
echo    1. Format Disk C:\
echo    2. Format Disk D:\
echo    3. Format Floppy B:\
echo    Q to Main MENU
echo    R to Restart
echo.
echo.
choice /c:123QR /t:Q,30
if errorlevel==5 goto restart
if errorlevel==4 goto menu
if errorlevel==3 goto buraB
if errorlevel==2 goto buraD
if errorlevel==1 goto buraC
goto quit

:buraB
cls
echo   FLOPPY
echo   ------
echo.
echo    WARNING ALL exiting data on Floppy B:
echo    will be DELETED!
echo    S to make it BOOTABLE (NO FORMAT)
echo    R to Restart
echo.
echo.
choice /c:YNFSR /T:N,30 /N Are you SURE?(Y,N)
if errorlevel==4 goto restart
if errorlevel==3 goto sysB
if errorlevel==2 goto FORMAT
if errorlevel==1 goto formB
goto quit

:formB
format b: /v:tang_NA /autotest /q
format b: /v:tang_NA /autotest /q
goto restart
goto quit

:sysB
cls
echo.
choice /c:YN /T:N,30 /N Bootable Floopy ?(Y,N)
if errorlevel==2 goto buraB
if errorlevel==1 goto bootB
goto quit

:bootB
label b: tang na
sys a: b:
B:
copy a:\oakcdrom.sys
copy a:\himem.sys
copy a:\mscdex.exe
copy a:\c
ren c config.sys
copy a:\a
ren a autoexec.bat
goto restart
goto quit

:buraC
cls
echo   DRIVE C:
echo   --------
echo.
echo    WARNING ALL exiting data on non-removable drive C:
echo    will be DELETED!
echo    S to make it BOOTABLE (NO FORMAT)
echo    R to Restart
echo.
echo.
choice /c:YNSR /T:N,30 /N Are you SURE?(Y,N)
if errorlevel==4 goto restart
if errorlevel==3 goto sysC
if errorlevel==2 goto FORMAT
if errorlevel==1 goto formC
goto quit

:sysC
cls
echo.
choice /c:YN /T:N,30 /N Bootable Drive C:\ ?(Y,N)
if errorlevel==2 goto buraC
if errorlevel==1 goto bootC
goto quit

:bootC
sys a: c:
C:
copy a:\oakcdrom.sys
copy a:\himem.sys
copy a:\mscdex.exe
copy a:\c
ren c config.sys
copy a:\a
ren a autoexec.bat
goto restart
goto quit

:formC
format c: /v:WIN_FILES /autotest
dell /y d:\_restore
dell /y d:\system~1
dell /y d:\recycled
label c: WIN FILES
goto restart
goto quit

:buraD
cls
echo   DRIVE D:
echo   --------
echo.
echo    WARNING ALL exiting data on non-removable drive D:
echo    will be DELETED!
echo    R to Restart
echo.
echo.
choice /c:YNR /T:N,30 /N Are you SURE?(Y,N)
if errorlevel==3 goto restart
if errorlevel==2 goto FORMAT
if errorlevel==1 goto formD
goto quit

:formD
format d: /v:OTHER_FILES /autotest
dell /y c:\_restore
dell /y c:\system~1
label d: OTHER FILES
goto restart
goto quit
Title: Windows PE Questions
Post by: Guest on September 23, 2003, 04:45:45 AM
Perhaps if you're asking that question then Windows let alone WindowsPE isn't for you!

It's a GUI, point and click!
Title: Windows PE Questions
Post by: lexx on October 04, 2003, 01:53:55 PM
Go to

http://www.911cd.net/forums/ (http://\"http://www.911cd.net/forums/\")