Hi,
Im using the following PS script to create new binding for new web servers
New-WebBinding -name $mywebsites -Protocol https -HostHeader $mywebsites -Port 443 -IPAddress '*'
The script is working and creates a new binding, the only problem is that i need to choose a SSL certificate:
Is there a way to achieve it using script?
Thanks !