cancel
Showing results for 
Search instead for 
Did you mean: 

JOINING THE 2 FILES FOR NETBACKUP 7.1 DOWNLOADS

philip_okonji
Not applicable

Hi.

I saw your responses in one of the threads that addressed this question.

The problem I have is that I can't seem to find a 3rd party application to fuse the 2 downloaded files. I tried your procedure:

copy /b "NetBackup_7.1_Win_zip.1of2"+"NetBackup_7.1_Win_zip.2of2" "NetBackup_7.1_Win.zip"

but don't seem to be getting it right.

Please, I need a step-by-step guide. I would REALLY appreciate this.

Thanks!

 

- Phil.

3 REPLIES 3

Will_Restore
Level 6

copy /b is provided by Windows OS.  No 3rd party application needed

It's a one-step command: copy /b  bigfile1  +  bigfile2  reallybigfile

You are trying this on a supported Windows system ?

Zahid_Haseeb
Moderator
Moderator
Partner    VIP    Accredited

Try this

 

 

In a command shell:

copy file1 /b + file2 /b file3

Will join file1 and file2 to create file 3. The "/b" indicates that Copy should treat the file as binary rather than text.

 

Will_Restore
Level 6

should work unless MS changed blush

http://support.microsoft.com/kb/71161