Disable the SSL warning in the To Do List

Many a times folks in WSUS newsgroup want to know if -

Is there a way to disable the SSL warning in the To-Do list in WSUSAdmin Console?

To Do List
 

WSUS has detected that you are not using Secure Sockets Layer (SSL). Microsoft recommends using SSL to secure administration and client to server communications for better security. For more information, see Using Secure Sockets Layer (SSL).
 
I used to answer that as - "That is not documented anywhere!!. We will have to live with that". But, thanks to Josh (poster in NG) for this cheeky workaround.
 
WORKAROUND

Make a backup of "C:\program files\Update Services\administration\home\welcome.aspx" file.

Then open the file in notepad and find the last section at the bottom that starts like this:

<td id="tskNotUsingSSL" class="Tasks" style="display: none;">

Now you can't delete that line, but delete everything between the <div> and </div> right below that line - Which means you have to delete the following text between <div> and </div>;


 <div>
          <a href="" onclick="ShowHelp('utilizing_SSL.htm');return false;"
class="B"><img src="<%= Constants.VirtualRoot %>/Common/Images/Warning.gif"
align="absmiddle" /><%= Resources.GetString("L_HomeNotUsingSSLTitle_Text")
%></a></br>
              <%=
String.Format(Resources.GetString("L_HomeNotUsingSSLDescription_Text"),
              "<a href=\"\" onclick=\"ShowHelp('utilizing_SSL.htm ');return
false;\" class=\"Normal\">" +
Resources.GetString("L_HomeNotUsingSSLHelpLink_Text") + "</a>") %>
          <br />
      </div>


Save the file and Voila! Happy Patching :-).

Published Monday, June 26, 2006 4:57 PM by Mohammed Athif Khaleel

Comments

Monday, June 26, 2006 10:57 AM by mark

# re: Disable the SSL warning in the To Do List

Why not redirect/forward to the https:// ?
Tuesday, June 27, 2006 7:53 PM by Ben Scott

# Great tip!

Thanks!  That warning is worthless in our case -- in our config, the WSUS admin page is only accessible on the server's console.  SSL to localhost is a bit much.  So that warning has been an irritation.  Glad to find an easy fix!  Good tip!
Tuesday, July 18, 2006 1:49 PM by Rob Dunn (WSUS MVP)

# re: Disable the SSL warning in the To Do List

Hey, I thought I could be the only cheeky one!?

:)

Rob
Saturday, July 29, 2006 5:12 AM by Mohammed Athif Khaleel

# re: Disable the SSL warning in the To Do List

:-)
Tuesday, August 08, 2006 4:07 AM by Dragos

# re: Disable the SSL warning in the To Do List

Hi, is there a way to comment the code instead of deleting it, sommething like // in C++.

Many thanks, Dragos
Thursday, August 17, 2006 6:57 AM by Mohammed Athif Khaleel

# re: Disable the SSL warning in the To Do List

Hi Dragos,
I have no idea :-(

Happy patching,
Athif
Friday, August 18, 2006 1:52 PM by ravidew

# re: Disable the SSL warning in the To Do List

yes:
enclose anything you want to comment within "<!--" and "-->"

<!--
  <div>this is commented code and won't be parsed</div>
-->
Tuesday, September 26, 2006 2:42 AM by WSUS User

# re: Disable the SSL warning in the To Do List

"SSL to localhost is a bit much."

The importance of the message is that communication between the WSUS server and its managed clients is not SSL protected.

Friday, September 29, 2006 12:10 PM by rogoos

# re: Disable the SSL warning in the To Do List

Nice tip....

Very handy

THX

Friday, October 27, 2006 7:27 AM by Dale

# re: Disable the SSL warning in the To Do List

Thank you, thank you, thank you!