/// <summary>
 /// Verify if the user exists.
 /// </summary>
 /// <param name="userName">The user name.</param>
 /// <returns>True if the user exists.</returns>
 public static bool ExistsUser(string userName)
 {
     return(WindowsUsersAndGroups.GetUsers().Contains(userName));
 }