Using Windows 10 but want others to use your computer as a Guest. No problem but your going to have to enable the Guest account that Microsoft automatically disables on Windows 10. First goto the command prompt (admin) then type the following:
$ net user Visitor /add /active:yes
$ net user Visitor *
Press Enter twice when prompted to add a password so that it stays blank and then type
$ net localgroup users Visitor /delete
$ net localgroup guests Visitor /add
the first cmd removes the visitor account and the second line add guest to the group
Thanks to the help of PC Magazine for the info