Change install.wim path away from sources folder

I don't understand what do you really mean.

Do you want to move the file out of the folder?

Do you want to move the file out of the folder while in process?
 
I don't understand what do you really mean.

Do you want to move the file out of the folder?

Do you want to move the file out of the folder while in process?

yes
i want to change the place of file install,wim out of sources folder
 
Just Drag and drop.

For editing with NTLite after moving the file, use the option add image file.

I don't know if that is what do you want or if you want to move and then later install it from another path.
 
Just Drag and drop.

For editing with NTLite after moving the file, use the option add image file.

I don't know if that is what do you want or if you want to move and then later install it from another path.

can u add a photo about your mean
 
Drag and drop?
click on the install.wim file, drag over another folder and release the mouse button to drop the file.

Edit with NTLite when it is out of sources folder?
Use the arrow under the Add icon toolbar choose the option add image file.

You need to be somewhat more specific of what do you want to achieve to help me help you.
 
@kalede888, if you mean can you install Windows with install.wim being elsewhere in the ISO, then no as far as I know.
But there is a way without Windows setup. Boot WinPE (boot.wim) and use DISM to "Apply" the image to the partition.
Search online how to use DISM to Apply WIM, if that answers your question.

And as Kasual said, NTLite can edit WIM files even if on their own, from any location.
 
@kalede888, if you mean can you install Windows with install.wim being elsewhere in the ISO, then no as far as I know.
But there is a way without Windows setup. Boot WinPE (boot.wim) and use DISM to "Apply" the image to the partition.
Search online how to use DISM to Apply WIM, if that answers your question.
Setup can install from a different WIM path, using two different methods.

1. Boot normal WinPE, run the sources copy of setup.exe (not \Setup.exe):
Code:
sources\setup.exe /installfrom D:\path\install.wim /unattend:D:\path\unattend.xml

2. Edit autounattend.xml, and add this XML block:
The problem is you can't guarantee the USB or DVD drive has the expected drive letter.​
Code:
<ImageInstall>
    <OSImage>
...
        <InstallFrom>
            <Path>D:\path\install.wim</Path>
            <MetaData wcm:action="add">
                <Key>/IMAGE/NAME</Key>
                <Value>1</Value>
            </MetaData>
        </InstallFrom>
...
</ImageInstall>
 
Back
Top