Je veux to configure winrm in tous mon clients using a bat file.
after running bat file `winrm quickconfig` command il y a a prompt for a yes/no answer. Je ne know how to answer "yes" in le batch file.
Configurer WinRM avec un fichier .bat sans invite oui/non
Re: Configurer WinRM avec un fichier .bat sans invite oui/non
Adding le parameter `-quiet` to le quickconfig call will suppress le yes/no prompt, et do what you want.
```
winrm quickconfig -quiet
```
```
winrm quickconfig -quiet
```