Page 1 of 1

Cabs are not copied to usb stick

PostPosted: 28.08.2016, 03:09
by ddavus
Cabs are not copied to usb stick. Warning in log file: no space left on device.

Reformatted the usb stick to ntfs and reinstalled wsus. Ran updategenerator.exe and received same warning message.

Any Ideas?

Thanks

Re: Cabs are not copied to usb stick

PostPosted: 29.08.2016, 07:45
by aker
Which products did you select for download?
Which size does the usb stick have?

Re: Cabs are not copied to usb stick

PostPosted: 30.08.2016, 15:52
by ddavus
Downloaded windows 10 x86 and x64, C++ runtime with .net, include service packs, windows essential, and windows defender .

USB stick is 32GB with 24GB free space.

Re: Cabs are not copied to usb stick

PostPosted: 30.08.2016, 23:02
by hbuhrmester
The error message is most probably from xcopy. The script CopyToTarget.cmd uses it to copy new files to the target directory. If there is no obvious reason, you can only try to isolate the problem:

  1. Open a command prompt window
  2. Change to the wsusoffline directory
  3. Enter the command:
    Code: Select all
    xcopy.exe client target-directory /D /E /I /Y

    Replace "target-directory" with the path to your USB-drive.
This is similar to the command in CopyToTarget.cmd.

Some variations:

  • Add the option /F to show all files which are copied.
  • Add the option /J to copy large files without buffering.

See also
https://technet.microsoft.com/en-us/lib ... 11%29.aspx