Is there a size limit for a .zip file using CopyHere in VBScript?
问题 I have a vbscript that extracts multiple zip files to different locations. The code works for all but one file. This one file, that doesn't work, happens to be bigger than 6GB. The next, biggest, file that I am processing is around 3.5GB. Here's a snippet of the code; strFileDest = "path\to\some\dir1" strZIPname = "file1.zip" Call UnPack(strFileDest, strZIPname) strFileDest = "path\to\some\dir2" strZIPname = "file2.zip" Call UnPack(strFileDest, strZIPname) Function UnPack(strZIPdest,