We are using Microsoft SCCM 2007 to deploy program packages in our network environment. One of the packages (MathType, in case anyone's curious) has a lot of file names with a plus symbol +
in them.
When a package is downloaded to a client machine, the files are pulled from the distribution point server via http. The distribution point runs IIS, which does not handle +
signs in URLs. The result is that the SCCM client receives a 404 from the server, and is unable to finish downloading or installing the package.
I would just rename all of the files with a +
in them, but the installer is expecting certain file names, so we need to retain the original naming scheme. Due to how our network environment is set up, we do not have direct control over the distribution point server, so we can't make any modifications to IIS that would allow +
symbols in URLs.
How can we distribute packages that include files with a +
symbol without breaking SCCM?
I've thought of the following workarounds, but would like to find a more elegant solution that doesn't require manually adjusting any package with +
symbols:
- Put the whole thing in a self-extracting zip/7z file, and download that from the distribution point
- Rename all of the
files+with+plusses
tofiles_with_plusses
, then manually change them back to the original name in the installation batch file once they're downloaded to the local cache
Is there a solution that actually fixes the problem, rather than working around it?