-
I am trying to create a package manifest using the wingetcreate new. The first app asks for InstallerUrls. I am using "\\FileServer\CompanyName\AppName\1.0.0\AppName_1.0.0.MSI" It gives me an error that says "Input does not match the valid format patter for this field." Nothing I have tried seems to work. Has anybody tried to create a winget manifest from a fileserver? I haven't found any good documentation on this. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
WinGet only supports HTTP and HTTPS links for UNC paths are not supported so you will have to deploy a HTTP server with your installer and use that in the manifest. |
Beta Was this translation helpful? Give feedback.
WinGet only supports HTTP and HTTPS links for
InstallerUrl
and has to match the regular expression of^([Hh][Tt][Tt][Pp][Ss]?)://.+$
UNC paths are not supported so you will have to deploy a HTTP server with your installer and use that in the manifest.