Good advice DI.
Bleach...it might be helpful for you to understand the syntax of what you're typing here so you can be a little more proactive in figuring out why you're getting an error like this. If you get an error that says that the destination is invalid, do what DI said and check the file structure on your machine to figure out what
is going to be a valid destination.
The command syntax is broken down something like:
expand (actual command...this command is to extract files from source)
D:\i386\config.nt_ (<--This is the source file to be extracted)
c:\winnt\system32\config.nt (<--This is the destination for the file you are extracting, the location c:\winnt\system32 must be a valid directory for the command to work so see if you can browse to it!)
altogether now:
expand D:\i386\config.nt_ c:\winnt\system32\config.nt
I tried using "winnt" istead of "windows" and still said "No destination specified for D:\i386\config.nt_c:\windows\system 32\config.nt"
If you're typing in exactly the error you got then also make sure you put a space after "...
config.nt_" before "
c:\<windows folder location>"
Also, there is no space between
system and
32.
Good luck buddy, hope this fixes the problem!