install windows PE 1.5 to a USB/hard drive
I have been using a tool called Bart's PE builder which creates windows PE 1.5 boot images, however I need to make some adjustments - so it it cant be installed on a CD which is read only.
I cannot seem to figure out how to to this. I have tried a tool called PEtoUSB but it won't detect any USB devices on windows 10/XP. I tried powerISO but nor virtual box or real hardware can boot from the USB stick despite following the guide on how to boot from USB on virtualbox.
Is there a way PE 1.5 can be installed on either a Hard drive or USB stick? My only option right now is a batch script 'PE2USB.BAT' that came with Bart's PE builder but its fiddly.
installation windows-pe
add a comment |
I have been using a tool called Bart's PE builder which creates windows PE 1.5 boot images, however I need to make some adjustments - so it it cant be installed on a CD which is read only.
I cannot seem to figure out how to to this. I have tried a tool called PEtoUSB but it won't detect any USB devices on windows 10/XP. I tried powerISO but nor virtual box or real hardware can boot from the USB stick despite following the guide on how to boot from USB on virtualbox.
Is there a way PE 1.5 can be installed on either a Hard drive or USB stick? My only option right now is a batch script 'PE2USB.BAT' that came with Bart's PE builder but its fiddly.
installation windows-pe
add a comment |
I have been using a tool called Bart's PE builder which creates windows PE 1.5 boot images, however I need to make some adjustments - so it it cant be installed on a CD which is read only.
I cannot seem to figure out how to to this. I have tried a tool called PEtoUSB but it won't detect any USB devices on windows 10/XP. I tried powerISO but nor virtual box or real hardware can boot from the USB stick despite following the guide on how to boot from USB on virtualbox.
Is there a way PE 1.5 can be installed on either a Hard drive or USB stick? My only option right now is a batch script 'PE2USB.BAT' that came with Bart's PE builder but its fiddly.
installation windows-pe
I have been using a tool called Bart's PE builder which creates windows PE 1.5 boot images, however I need to make some adjustments - so it it cant be installed on a CD which is read only.
I cannot seem to figure out how to to this. I have tried a tool called PEtoUSB but it won't detect any USB devices on windows 10/XP. I tried powerISO but nor virtual box or real hardware can boot from the USB stick despite following the guide on how to boot from USB on virtualbox.
Is there a way PE 1.5 can be installed on either a Hard drive or USB stick? My only option right now is a batch script 'PE2USB.BAT' that came with Bart's PE builder but its fiddly.
installation windows-pe
installation windows-pe
asked Dec 12 '18 at 19:37
ketchup
12
12
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Here is how to use Windows tools to create a bootable PE USB:
- Download latest Windows 10 ADK (Assessment and Deployment Kit)
- Install only the components Deployment Tools and Windows Preinstallation Environment
- Open an elevated Deployment and Imaging Tools by right clicking it in
Start > Windows Kits > Run as administrator
- Enter the command
cd
to shorten the displayed path
Create WinPE files with following command :
copype amd64 D:WinPEx64
Replace path D:WinPEx64
with your preferred drive and folder name. The above command creates PE files to be used to boot a 64 bit machine. For 32 bit, replace amd64
with x86
.
If the USB flash drive is
I:
enter the following command:
MakeWinPEMedia /UFD D:WinPEx64 I:
For more information see the article
Create a WinPE USB or ISO.
For Windows PE 1.5 itself, it was only available for selected OEM
and via Enterprise Software Assurance, so is not generally available
in a legal manner.
See Windows PE Version Overview for versions.
You might be able to extract it from either:
Windows Automated Installation Kit (AIK) for Windows XP SP2
WinPE 3.0 from Windows AIK 2.0.
I'll give this a try, Does this work for windows PE 1.5 (based on windows XP), the windows 10 ADK will most likley be for PE10 (based on windows 10)
– ketchup
Dec 13 '18 at 1:46
Windows PE 1.5 is too old and build from Windows XP since 2004. Not sure it would compatibility well with Windows 10. but why not use the latest Windows 10 ADK to create a new Windows PE tool? It would be the most security and safe measure which will not cost too much time.
– Joy
Dec 13 '18 at 6:51
@joy because its too big, is harder to customise, doesn't have the same command set that I need, etc.
– ketchup
Dec 13 '18 at 16:10
I added what is available without searching for illegal downloads.
– harrymc
Dec 13 '18 at 16:39
ill take a look thanks.
– ketchup
Dec 13 '18 at 16:51
|
show 2 more comments
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1383093%2finstall-windows-pe-1-5-to-a-usb-hard-drive%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Here is how to use Windows tools to create a bootable PE USB:
- Download latest Windows 10 ADK (Assessment and Deployment Kit)
- Install only the components Deployment Tools and Windows Preinstallation Environment
- Open an elevated Deployment and Imaging Tools by right clicking it in
Start > Windows Kits > Run as administrator
- Enter the command
cd
to shorten the displayed path
Create WinPE files with following command :
copype amd64 D:WinPEx64
Replace path D:WinPEx64
with your preferred drive and folder name. The above command creates PE files to be used to boot a 64 bit machine. For 32 bit, replace amd64
with x86
.
If the USB flash drive is
I:
enter the following command:
MakeWinPEMedia /UFD D:WinPEx64 I:
For more information see the article
Create a WinPE USB or ISO.
For Windows PE 1.5 itself, it was only available for selected OEM
and via Enterprise Software Assurance, so is not generally available
in a legal manner.
See Windows PE Version Overview for versions.
You might be able to extract it from either:
Windows Automated Installation Kit (AIK) for Windows XP SP2
WinPE 3.0 from Windows AIK 2.0.
I'll give this a try, Does this work for windows PE 1.5 (based on windows XP), the windows 10 ADK will most likley be for PE10 (based on windows 10)
– ketchup
Dec 13 '18 at 1:46
Windows PE 1.5 is too old and build from Windows XP since 2004. Not sure it would compatibility well with Windows 10. but why not use the latest Windows 10 ADK to create a new Windows PE tool? It would be the most security and safe measure which will not cost too much time.
– Joy
Dec 13 '18 at 6:51
@joy because its too big, is harder to customise, doesn't have the same command set that I need, etc.
– ketchup
Dec 13 '18 at 16:10
I added what is available without searching for illegal downloads.
– harrymc
Dec 13 '18 at 16:39
ill take a look thanks.
– ketchup
Dec 13 '18 at 16:51
|
show 2 more comments
Here is how to use Windows tools to create a bootable PE USB:
- Download latest Windows 10 ADK (Assessment and Deployment Kit)
- Install only the components Deployment Tools and Windows Preinstallation Environment
- Open an elevated Deployment and Imaging Tools by right clicking it in
Start > Windows Kits > Run as administrator
- Enter the command
cd
to shorten the displayed path
Create WinPE files with following command :
copype amd64 D:WinPEx64
Replace path D:WinPEx64
with your preferred drive and folder name. The above command creates PE files to be used to boot a 64 bit machine. For 32 bit, replace amd64
with x86
.
If the USB flash drive is
I:
enter the following command:
MakeWinPEMedia /UFD D:WinPEx64 I:
For more information see the article
Create a WinPE USB or ISO.
For Windows PE 1.5 itself, it was only available for selected OEM
and via Enterprise Software Assurance, so is not generally available
in a legal manner.
See Windows PE Version Overview for versions.
You might be able to extract it from either:
Windows Automated Installation Kit (AIK) for Windows XP SP2
WinPE 3.0 from Windows AIK 2.0.
I'll give this a try, Does this work for windows PE 1.5 (based on windows XP), the windows 10 ADK will most likley be for PE10 (based on windows 10)
– ketchup
Dec 13 '18 at 1:46
Windows PE 1.5 is too old and build from Windows XP since 2004. Not sure it would compatibility well with Windows 10. but why not use the latest Windows 10 ADK to create a new Windows PE tool? It would be the most security and safe measure which will not cost too much time.
– Joy
Dec 13 '18 at 6:51
@joy because its too big, is harder to customise, doesn't have the same command set that I need, etc.
– ketchup
Dec 13 '18 at 16:10
I added what is available without searching for illegal downloads.
– harrymc
Dec 13 '18 at 16:39
ill take a look thanks.
– ketchup
Dec 13 '18 at 16:51
|
show 2 more comments
Here is how to use Windows tools to create a bootable PE USB:
- Download latest Windows 10 ADK (Assessment and Deployment Kit)
- Install only the components Deployment Tools and Windows Preinstallation Environment
- Open an elevated Deployment and Imaging Tools by right clicking it in
Start > Windows Kits > Run as administrator
- Enter the command
cd
to shorten the displayed path
Create WinPE files with following command :
copype amd64 D:WinPEx64
Replace path D:WinPEx64
with your preferred drive and folder name. The above command creates PE files to be used to boot a 64 bit machine. For 32 bit, replace amd64
with x86
.
If the USB flash drive is
I:
enter the following command:
MakeWinPEMedia /UFD D:WinPEx64 I:
For more information see the article
Create a WinPE USB or ISO.
For Windows PE 1.5 itself, it was only available for selected OEM
and via Enterprise Software Assurance, so is not generally available
in a legal manner.
See Windows PE Version Overview for versions.
You might be able to extract it from either:
Windows Automated Installation Kit (AIK) for Windows XP SP2
WinPE 3.0 from Windows AIK 2.0.
Here is how to use Windows tools to create a bootable PE USB:
- Download latest Windows 10 ADK (Assessment and Deployment Kit)
- Install only the components Deployment Tools and Windows Preinstallation Environment
- Open an elevated Deployment and Imaging Tools by right clicking it in
Start > Windows Kits > Run as administrator
- Enter the command
cd
to shorten the displayed path
Create WinPE files with following command :
copype amd64 D:WinPEx64
Replace path D:WinPEx64
with your preferred drive and folder name. The above command creates PE files to be used to boot a 64 bit machine. For 32 bit, replace amd64
with x86
.
If the USB flash drive is
I:
enter the following command:
MakeWinPEMedia /UFD D:WinPEx64 I:
For more information see the article
Create a WinPE USB or ISO.
For Windows PE 1.5 itself, it was only available for selected OEM
and via Enterprise Software Assurance, so is not generally available
in a legal manner.
See Windows PE Version Overview for versions.
You might be able to extract it from either:
Windows Automated Installation Kit (AIK) for Windows XP SP2
WinPE 3.0 from Windows AIK 2.0.
edited Dec 13 '18 at 16:38
answered Dec 12 '18 at 20:24
harrymc
254k13265565
254k13265565
I'll give this a try, Does this work for windows PE 1.5 (based on windows XP), the windows 10 ADK will most likley be for PE10 (based on windows 10)
– ketchup
Dec 13 '18 at 1:46
Windows PE 1.5 is too old and build from Windows XP since 2004. Not sure it would compatibility well with Windows 10. but why not use the latest Windows 10 ADK to create a new Windows PE tool? It would be the most security and safe measure which will not cost too much time.
– Joy
Dec 13 '18 at 6:51
@joy because its too big, is harder to customise, doesn't have the same command set that I need, etc.
– ketchup
Dec 13 '18 at 16:10
I added what is available without searching for illegal downloads.
– harrymc
Dec 13 '18 at 16:39
ill take a look thanks.
– ketchup
Dec 13 '18 at 16:51
|
show 2 more comments
I'll give this a try, Does this work for windows PE 1.5 (based on windows XP), the windows 10 ADK will most likley be for PE10 (based on windows 10)
– ketchup
Dec 13 '18 at 1:46
Windows PE 1.5 is too old and build from Windows XP since 2004. Not sure it would compatibility well with Windows 10. but why not use the latest Windows 10 ADK to create a new Windows PE tool? It would be the most security and safe measure which will not cost too much time.
– Joy
Dec 13 '18 at 6:51
@joy because its too big, is harder to customise, doesn't have the same command set that I need, etc.
– ketchup
Dec 13 '18 at 16:10
I added what is available without searching for illegal downloads.
– harrymc
Dec 13 '18 at 16:39
ill take a look thanks.
– ketchup
Dec 13 '18 at 16:51
I'll give this a try, Does this work for windows PE 1.5 (based on windows XP), the windows 10 ADK will most likley be for PE10 (based on windows 10)
– ketchup
Dec 13 '18 at 1:46
I'll give this a try, Does this work for windows PE 1.5 (based on windows XP), the windows 10 ADK will most likley be for PE10 (based on windows 10)
– ketchup
Dec 13 '18 at 1:46
Windows PE 1.5 is too old and build from Windows XP since 2004. Not sure it would compatibility well with Windows 10. but why not use the latest Windows 10 ADK to create a new Windows PE tool? It would be the most security and safe measure which will not cost too much time.
– Joy
Dec 13 '18 at 6:51
Windows PE 1.5 is too old and build from Windows XP since 2004. Not sure it would compatibility well with Windows 10. but why not use the latest Windows 10 ADK to create a new Windows PE tool? It would be the most security and safe measure which will not cost too much time.
– Joy
Dec 13 '18 at 6:51
@joy because its too big, is harder to customise, doesn't have the same command set that I need, etc.
– ketchup
Dec 13 '18 at 16:10
@joy because its too big, is harder to customise, doesn't have the same command set that I need, etc.
– ketchup
Dec 13 '18 at 16:10
I added what is available without searching for illegal downloads.
– harrymc
Dec 13 '18 at 16:39
I added what is available without searching for illegal downloads.
– harrymc
Dec 13 '18 at 16:39
ill take a look thanks.
– ketchup
Dec 13 '18 at 16:51
ill take a look thanks.
– ketchup
Dec 13 '18 at 16:51
|
show 2 more comments
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1383093%2finstall-windows-pe-1-5-to-a-usb-hard-drive%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown