Politicalespionage Homepage
Forum Home Forum Home > Computers > Computer tips
  New Posts New Posts RSS Feed - DISM Capture
  FAQ FAQ  Forum Search   Events   Register Register  Login Login


DISM Capture

 Post Reply Post Reply
Author
Message Reverse Sort Order
reaper View Drop Down
Admin Group
Admin Group
Avatar

Joined: 27 Jan 2022
Status: Offline
Points: 357
Post Options Post Options   Thanks (0) Thanks(0)   Quote reaper Quote  Post ReplyReply Direct Link To This Post Topic: DISM Capture
    Posted: 24 Jun 2024 at 5:39pm

X:> diskpart
DISKPART>
 
3. Select the hard disk with the select disk command. For example,

Copy


DISKPART> select disk 0
 
4. View the partitions with the list partition command. For example,

Copy

DISKPART> list partition
DISKPART> list partition
  Partition ###  Type              Size     Offset
  -------------  ----------------  -------  -------
  Partition 1    Primary            300 MB  1024 KB
  Partition 2    Primary            200 GB   301 MB

 
5. Select the partition with the select partition command. For example,

Copy


DISKPART> select partition=1
 
6. Assign a letter to the partition with the assign letter command. For example,
 
Copy

DISKPART> assign letter=S
 
7. Type exit to return to the Windows PE command prompt.

Copy

DISKPART> exit
X:\>
 
For more information, see the DiskPart Help from the command line, or Diskpart Command line syntax.

Step 3: Capture Partition Images using DISM

--------------------------------------------------------------------------------

Capture images for each customized partition.
1. At the Windows PE command prompt, capture the images by using the DISM command together with the /captureImage option. For example,

Copy

Dism /Capture-Image /ImageFile:c:\my-windows-partition.wim /CaptureDir:C:\ /Name:"My Windows partition"
Dism /Capture-Image /ImageFile:s:\my-system-partition.wim /CaptureDir:S:\ /Name:"My system partition"
 For more information about using the DISM tool to capture an image, see DISM Image Management Command-Line Options.

Step 4: Save Images to the Network

--------------------------------------------------------------------------------
Save your .wim files to your network or another safe location.
1. Connect to your distribution share by using the net use command. For example,

Copy

net use n: \\Server\Share
 If prompted, provide your network credentials.


2. Copy the partitions to your network share. For example,

Copy

md N:\Images\
copy C:\my-windows-partition.wim N:\Images\
copy c:\my-system-partition.wim N:\Images\

making a winPE

Back to Top
Sponsored Links


Back to Top
 Post Reply Post Reply
  Share Topic   

Quick Reply
Name:

Message:
   NoFollow is applied to all links from this forum
 Enable BBcodes

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.326 seconds.