Deployment Task failing

After I receive the certificate, I want to move it to a folder. But obtaining this error that there is an illegal character in the text

Destination File Path c:/Letsencrypt/*.storey.us.pfx

Does not like the *, How do you input for wildcard cert ?

Yes, windows doesn’t let you use * in file names because it’s a wildcard meaning all when doing file matching operations.

The standard used by things like the central certificate store etc is to use _ (underscore) instead, also for windows you would generally also use the path separator \ but things do generally work if you use /.

So your filename would be c:\Letsencrypt\_.storey.us.pfx

Thank you very much!!!