Salut tout le monde.
J'ai installé Windows PowerShell Web Access sur un serveur 2012R2.
Je voudrais mettre par défaut l'authentification Type en CredSSP, mais je n'y arrive pas.
Dans cette article, Microsoft nous propose de modifier le fichier web.config. (https://msdn.microsoft.com/fr-fr/library/dn282394(v=ws.11).aspx).
<appSettings>
<add key="maxSessionsAllowedPerUser" value="3"/>
<add key="defaultPortNumber" value="5985"/>
<add key="defaultSSLPortNumber" value="5986"/>
<add key="defaultApplicationName" value="WSMAN"/>
<add key="defaultUseSslSelection" value="0"/>
<add key="defaultAuthenticationType" value="0"/> J'ai mis la valeur en 4 et 'credSSP', rien ne fonctionne.
<add key="defaultAllowRedirection" value="0"/>
<add key="defaultConfigurationName" value="Microsoft.PowerShell"/>
</appSettings>
Dans le code du fichier logon.aspx, j'ai :
<span class="field">
<label for="authentication-type" id="authenticationTypeLabel">Authentication type:</label>
<!-- The values here match the Enum AuthenticationMechanism, and is parsed in server code -->
<select id="authenticationTypeSelection" name="authentication-type" runat="server" clientidmode="Static">
<option id="defaultOption" value="0" selected="selected">Default</option>
<option id="basicOption" value="1">Basic</option>
<option id="negotiateOption" value="2">Negotiate</option>
<option id="credsspOption" value="4">CredSSP</option>
<option id="digestOption" value="5">Digest</option>
<option id="kerberosOption" value="6">Kerberos</option>
</select>
Avez-vous une idée, car je suis bloqué et je n'ai rien trouvé sur cette erreur.
Un énorme Merci.
HaK.