0.10.6 client not activating Win10
-
I’m using r7543 with client 0.10.6, installed on Win10.
I’ve input a MAK into this host’s product key area and have triple-verified it’s correct. Looking at the logs on the computer, there is no mention of activation anywhere - not failure or success. @Jbob
0_1462818282719_fog.log -
That means the server isn’t giving the client a key. (https://github.com/FOGProject/fog-client/blob/master/Modules/HostnameChanger/HostnameChanger.cs#L168) . If this were a client issue, there would be logs about the product key.
-
@Jbob How about…
//Active a computer with a product key private void ActivateComputer(HostnameChangerMessage msg) { if (string.IsNullOrEmpty(msg.Key)) Log.Entry(Name, "No activation key given."); return; try { _instance.ActivateComputer(msg.Key); } catch (Exception ex) { Log.Error(Name, ex); } }
-
Should be fixed, please update.
-
@Tom-Elliott I’m now getting this error in the client logs:
ERROR: Invalid product key provided by server
I’ve checked the host’s product key in the DB. It looks like a similar format to other keys in the DB.
I’ve also re-checked that the key still appears correctly in the web interface.
-
after another quick fix, r7555 is confirmed as activating Win10 with client 0.10.6
-
Can we mark this solved then?
-
@Sebastian-Roth Yup. forgot to do it.