Itunes 6, "File Download-Security Warning" box keeps repeating

I am so frustrated and feel like a terrible mom. I tried to upgrade my son's itunes on his xp machine. I get as far as the windo that asks "Do you want to run or save this file." I click save and it seems to finish the "installation repair". I click on the finish button and nothing happens. When I then try to launch itunes, from the desktop icon, it comes right back to the same box. Over and over again. I'm so fearful of losing his music as he has it on his ipod but not backed up. I was planning on buying an external hard drive this weekend. UGH!! Can anyone help???

Thanks so much for trying to help. After I hit save, and then find where I've saved the box. I then hit "run", which is seems to do and it says that the "repair is finished" and is "successful." I assume this means that itunes is attempting to reinstall itself. So, I click on finish. Nothing spontaneously happens so I then go to my desktop where I've saved the info and double click on the itunes set up icon. The one that looks like a brown box. As soon as I cick on that, it takes me directly back to my starting point of the larger box that asks me if I want to "run" my program. I once clicked on an older itunes set up icon and it told me that a newer itunes has been installed so I'm assuming the install was successful. I just can't get past the box askng me if I want to "run" the install. Does that make any sense??? Hope you can help.
P.S. One last dilemma is that while all my son't music is on his iPod, it is not backed up, so any fix that will keep his current itunes intact would be awesome. Thanks again. Karen
I click on the finish button and nothing happens.
When I then try to launch itunes, from the desktop
icon, it comes right back to the same box.
hi Karen!
you're not a terrible mom.
let me just doublecheck something. when you click on
the icon that would normally launch itunes,
itunes actually tries to reinstall itself?
(if so, i think i know what is probably happening,
but i just want to make sure i'm clear on your
situation.)
love, b
PC   Windows XP  

Similar Messages

  • When i try to run my jsp i get "File Download Security Warning"

    Hi,
    I have created a jsp file which is called UpdateEmpDetails1.jsp
    This jsp file picks up the employee id of the employee and transfers it to the backend servlet called UpdateEmpDetails1.java. The backend servlet looks up the table stored in the database and pulls up all the information stored corresponding to the employee id.Then the servlet stores the information in a session object and forwards it to the UpdateEmpDetails2.jsp
    I display the information which has been forwarded by the servlet in the HTML fields of UpdateEmpDetails2.jsp.
    Here the manager can also update the information. When he clicks on submit, the second serlvet UpdateEmpDetails2.java which is linked to UpdateEmpDetails2.jsp picks up the updated information and updates the database. The servlet also displays the message "Your information has been updated". But here is the real problem
    The session variables are being transferred perfectly to the jsp file UpdateEmpDetails2.jsp.
    But when i make any changes to this file and click on submit I get File Download Security Warning. It Says:
    File Download Security Warning
    Do you want to save this file
    Name UpdateEmpDetails2
    Type UnknownFileType
    From LocalHost
    Then I get another file which says
    FileDownload
    Getting FIle Information
    UpdateEmpDetails2 from localhost
    Estimated time left
    Download to:
    Transfer rate:
    Close this dialog box when download is complete
    I am just simply not able to update the employee information in the database due to this message.

    this is what i am trying to do:
    my UpdateEmpDetails1.jsp is as follows:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional //EN">
    <html>
    <head>
    <title>UpdateEmpDetails1.jsp</title>
    <link REL=STYLESHEET
    HREF="JSP-Styles.css"
    TYPE="text/css">
    </head>
    <body BGCOLOR="lightyellow" text="black">
    <h2 align="left"><font color="black">Update Employee Details Page</font></h2>
    <form action="UpdateEmpDetails2" Method="Get">
    <h2 align="left">Please enter the Employee ID of the employee whose details you want to edit</h2>
    <table width=50% align="center">
    <tr><td>Employee ID : </td>
         <td><INPUT TYPE="TEXT" name="employeeid"><br></td></tr>
    <tr><td><center><INPUT TYPE="SUBMIT" VALUE="SUBMIT"></center></td></tr>
    <tr><td><center><INPUT TYPE="RESET" VALUE="RESET"></center></td></tr>
    </table>
    </form>
    </body>
    </html>
    my update EmpDetails1.java is as follows:
    package com.update;
    import com.database.*;
    import java.io.*;
    import java.sql.*;
    import javax.servlet.http.*;
    import javax.servlet.*;
    public class UpdateEmpDetails1 extends HttpServlet
         public void doGet(HttpServletRequest request,HttpServletResponse response)throws ServletException,IOException
              HttpSession session = request.getSession();
              String X = request.getParameter("employeeid");
              System.out.println("Employee ID:" + X);
              //Establishing the jdbc connection
              try
                   Database db = new Database();
                   Connection con = db.useConnection();
                   String query = "Select * from employees where employeeid=?";
                   PreparedStatement stat = con.prepareStatement(query);
                   System.out.println(stat);
                   stat.setString(1,X);
                   ResultSet rs = stat.executeQuery();
                   while(rs.next())
                        String A = rs.getString("employeeid");
                        String B = rs.getString("firstname");
                        String C = rs.getString("lastname");
                        String D = rs.getString("gender");
                        String E = rs.getString("dateofbirth");
                        String F = rs.getString("address");
                        String G = rs.getString("postalcode");
                        String H = rs.getString("phone");
                        String I = rs.getString("mobile");
                        String J = rs.getString("designation");
                        String K = rs.getString("joindate");
                        String L = rs.getString("leavedate");
                        String M = rs.getString("email");
                        String N = rs.getString("qualification");
                        String O = rs.getString("empstatus");
                             System.out.println("comparison successful");
                             session.setAttribute("employeeid",A);
                             session.setAttribute("firstname", B);
                             session.setAttribute("lastname", C);
                             session.setAttribute("gender", D);
                             session.setAttribute("dateofbirth", E);
                             session.setAttribute("address", F);
                             session.setAttribute("postalcode", G);
                             session.setAttribute("phone", H);
                             session.setAttribute("mobile", I);
                             session.setAttribute("designation", J);
                             session.setAttribute("joindate", K);
                             session.setAttribute("leavedate", L);
                             session.setAttribute("email", M);
                             session.setAttribute("qualification", N);
                             session.setAttribute("empstatus", O);
                             String url="/UpdateEmpDetails2.jsp";
                             RequestDispatcher dis = request.getRequestDispatcher("/UpdateEmpDetails2.jsp");
                             System.out.println("Dispatching" + dis);
                             dis.forward(request, response);
              catch(Exception e)
                   System.out.println(e);
    my UpdateEmpDetails2.jsp is as follows:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head>
    <title>UpdateEmpDetails2.jsp</title>
    <link REL=STYLESHEET
    HREF="JSP-Styles.css"
    TYPE="text/css">
    </head>
    <body BGCOLOR="lightblue" text="black">
    <h1 align="center"><font color="black">Update Employee Details Page</font></h1>
    <form action="UpdateEmpDetails2" Method="Get">
    <table width=50% align="center">
    <tr><td>EMPLOYEE ID:</td>
         <td><INPUT TYPE = "HIDDEN" name="employeeid" value=<%=session.getAttribute("employeeid")%> ></td></tr>
    <tr><td>FIRST NAME :</td>
         <td><INPUT TYPE = "TEXT" name="firstname" value=<%=session.getAttribute("firstname")%> ></td></tr>
    <tr><td>LAST NAME :</td>
         <td><INPUT TYPE = "TEXT" name="lastname" value=<%=session.getAttribute("lastname")%> ><br></td></tr>
    <tr><td>GENDER :</td>
         <td><INPUT TYPE = "TEXT" name="gender" value=<%=session.getAttribute("gender")%> ><br></td></tr>
    <tr><td>DATE OF BIRTH (IN MM/DD/YYYY FORMAT) :</td>
         <td><INPUT TYPE = "TEXT" name="dateofbirth" value=<%=session.getAttribute("dateofbirth")%> ><br></td><tr>
    <tr><td>ADDRESS :</td>
         <td><INPUT TYPE = "TEXT" name="address" value=<%=session.getAttribute("address")%> ><br></td></tr>
    <tr><td>POSTALCODE:</td>
         <td><INPUT TYPE = "TEXT" name="postalcode" value=<%=session.getAttribute("postalcode")%>><br></td></tr>
    <tr><td>PHONE:</td>
         <td><INPUT TYPE = "TEXT" name="phone" value=<%=session.getAttribute("phone")%> ><br></td></tr>
    <tr><td>MOBILE:</td>
         <td><INPUT TYPE = "TEXT" name="mobile" value=<%=session.getAttribute("mobile")%> ><br></td></tr>
    <tr><td>DESIGNATION : </td>
    <td><INPUT TYPE="TEXT" name="designation" value=<%=session.getAttribute("designation")%> > <br></td></tr>
    <tr><td>JOIN DATE:</td>
         <td><INPUT TYPE = "TEXT" name="joindate" value=<%=session.getAttribute("joindate")%> ><br></td></tr>
    <tr><td>LEAVE DATE:</td>
         <td><INPUT TYPE = "TEXT" name="leavedate" value=<%=session.getAttribute("leavedate")%> > <br></td></tr>
    <tr><td>EMPLOYEE EMAIL:</td>
         <td><INPUT TYPE = "TEXT" name="email" value=<%=session.getAttribute("email")%> ><br></td></tr>
    <tr><td>EMPLOYEE QUALIFICATION:</td>
         <td><INPUT TYPE = "TEXT" name="qualification" value=<%=session.getAttribute("qualification")%> > <br></td></tr>
    <tr><td>EMPLOYEE STATUS:</td>
         <td><INPUT TYPE = "TEXT" name="empstatus" value=<%=session.getAttribute("empstatus")%> > <br></td></tr>
    <tr><td><center><INPUT TYPE="SUBMIT" VALUE="SUBMIT"></center></td></tr>
    <tr><td><center><INPUT TYPE="RESET" VALUE="RESET"></center></td></tr>
    </table>
    </form>
    </body>
    </html>
    my UpdateEmpDetails2.java is as follows:
    package com.update;
    import java.io.*;
    import java.sql.*;
    import javax.servlet.http.*;
    import javax.servlet.*;
    import com.database.*;
    public class UpdateEmpDetails2 extends HttpServlet
         public void doGet(HttpServletRequest request,HttpServletResponse response)throws ServletException,IOException
              PrintWriter out = response.getWriter();
              response.setContentType("texthtml");
              String A = request.getParameter("employeeid");
              out.println(A);
              String B = request.getParameter("firstname");
              out.println(B);
              String C = request.getParameter("lastname");
              out.println(C);
              String D = request.getParameter("gender");
              out.println(D);
              String E = request.getParameter("dateofbirth");
              out.println(E);
              String F = request.getParameter("address");
              out.println(F);
              String G = request.getParameter("postalcode");
              out.println(G);
              String H = request.getParameter("phone");
              out.println(H);
              String I = request.getParameter("mobile");
              out.println(I);
              String J = request.getParameter("designation");
              out.println(J);
              String K = request.getParameter("joindate");
              out.println(K);
              String L = request.getParameter("leavedate");
              out.println(L);
              String M = request.getParameter("email");
              out.println(M);
              String N = request.getParameter("qualification");
              out.println(N);
              String O = request.getParameter("empstatus");
              out.println(O);
              try
              Database db = new Database();
              Connection con = db.useConnection();
              String query= "update employees set employeeid=?,firstname=?,lastname=?,gender=?,dateofbirth=?,address=?,postalcode=?,phone=?,mobile=?,designation=?,joindate=?,leavedate=?,email=?,qualification=? where employeeid=?";
              PreparedStatement stat = con.prepareStatement(query);
              stat.setString(1, B);
              stat.setString(2, C);
              stat.setString(3, D);
              stat.setString(4, E);
              stat.setString(5, F);
              stat.setString(6, G);
              stat.setString(7, H);
              stat.setString(8, I);
              stat.setString(9, J);
              stat.setString(10, K);
              stat.setString(11, L);
              stat.setString(12, M);
              stat.setString(13, N);
              stat.setString(14, O);
              stat.setString(15, A);
              System.out.println(stat);
              int i = stat.executeUpdate();
              if (i!= 0)
              System.out.println("The record has been updated");
              else
                   System.out.println("Sorry ! failure");
              ResultSet rs = stat.executeQuery("select * from employees");
              System.out.println(rs);
              while(rs.next())
                   out.print("<table border='1'>");
                   out.println(rs.getString(1) + "<br>");
                   out.println(rs.getString(2) + "<br>");
                   out.println(rs.getString(3) + "<br>");
                   out.println(rs.getString(4) + "<br>");
                   out.println(rs.getString(5) + "<br>");
                   out.println(rs.getString(6) + "<br>");
                   out.println(rs.getString(7) + "<br>");
                   out.println(rs.getString(8) + "<br>");
                   out.println(rs.getString(9) + "<br>");
                   out.println(rs.getString(10) + "<br>");
                   out.println(rs.getString(11) + "<br>");
                   out.println(rs.getString(12) + "<br>");
                   out.println(rs.getString(13) + "<br>");
                   out.println(rs.getString(14) + "<br>");
                   out.println(rs.getString(15) + "<br>");
                   out.print("<br>");
              catch (Exception e)
                   System.out.println(e);
                   e.printStackTrace();
    Now as soon as i click on the submit button of the first jsp i get "File Download security warning message"
    I am new to jsp and i am not able to troubleshoot this

  • "File download - security warning" when running a report

    Hi all,
    Few of our users are having an error on their PCs when trying to run a report in Internet Explorer 8 with Adobe Reader 10.1.3 installed on their PCs. The error is:
    "File Download - Security Warning"
    Do you want to save this file, or find a program online to open it?
    Name: rwservlet
    Type: Unknown File Type
    Find Save Cancel
    Other users are able to run the reports. They have IE8 and Adobe Reader 10.1.2 installed. Any ideas why this problem might occur?
    Any help is appreciated.

    Hi,
    what is the behavior if you leave adobe Reader opened and running before running the report?
    Thanks, Roberto

  • File Download - Security Warning

    Hi,
    We have installed the developing content server under the following options:
    OS - Windows 2008 R2 with sp1
    Database : MaxDB 7.8
    After a successful installation I would maintain the post-Installation.
    For the first step I tried to test the connection to the content Server:
    1. open a Web browser on a host that is connected to your local network
    2. navigate to the following URL like http://<hostname>:1090/ContentServer/ContentServer.dll?serverinfo
    Instead of "Running" the result of test is then like following:
    It comes up a popup with "File Download - Security Waring" and the question "Do you want to save this file, or
    find a program online to ope it?" - Name: contenServer
    Type: Unknown File Type, 265KB
    From: content1
    contentd1 - servername
    Who is to say how it can be solved?
    Thanks a lot in advance,
    Gauguin

    Hi Juan,
    You mean "Capital" that  the link should be case-sensitive:
    http://contentD1:1090/ContentServer/ContentServer.dll?serverinfo
    our content server - contentD1
    If I enter in the browser, it may come the same symptom.
    Have you any idea, to correct the symptom?
    Thanks a lot,
    Gauguin

  • Issue with IE Security Warning box about Flash Player

    Recently upgraded to Flash Player 11.8 on a Win7 x64 system with IE9. Am now having a IE Security warning box pop up repeatedly saying Flasher Player wants to open Web Content. If I Allow, it is an endless loop with the warning box. If I Don't Allow, it eventually stops popping up after 3-4 times. Need to know if there is an issue with Flash Player or if there may be something else going on in my computer. Any suggestions would be appreciated. Also, I am not a whiz, but manage.

    You can either lower the security settings of Internet Explorer, or - easier - download the executable installer from http://www.adobe.com/products/flashplayer/fp_distribution3.html
    P.S. note that no browser windows must be open when running the installer.

  • Downloaded JPG Files Have Security Warning When Downloaded with FF 14.0.1

    Since updating to FF14.0.1, JPG files that are downloaded from the internet display "Open File - Security Warning" "Unknown Publisher" when double clicked to open. I can disable the warning for individual files, but would rather have it global for all since JPG file are a low security risk. They do open without the warning when downloaded within IE8. I couldn't find any FF security settings that may affect this issue.

    I'm not aware of any changes in Firefox 14 relating to this feature, but there are dozens of changes in each release, so I certainly can't rule it out.
    Is the E drive a partition on your hard drive, RAM disk, removable storage? Just wondering whether it might be treated differently than the C drive for some reason. But IE and Firefox should be consistent, since this is all about Windows' internal security controls...

  • Open File - Security Warning box appears for several app on the desktop [solved]

    Hello,
    After googling around, I found why I get this warning, how it happens, how to manually fix it but I don't know how to prevent it.
    I got this warning when desktop integrity level drop to "low".
    Desktop integrity drop to "low" when launching IE (V9) with no network connection and the favorites folder has been redirected to a file server. If the favorites folder is not redirected, desktop integrity level remains the same.
    To fix it :
    icacls %\username%\desktop /setintegritylevel (OI)(CI)M
    But how can I prevent Windows (IE ?) from changing desktop integrity level ? I add the unc path of the file server hosting the favorites folders to the intranet zone to no avail.
    Thanks for your help.
    Chris

    Thanks for your reply.
    You never met this message, did you set folder redirection for your users ? Here you can find other people having this message
    http://www.lmgtfy.com/?q=open+file+security+warning+desktop+integrity+level
    I don't think process monitor or explorer will help because I already know the culprit : IE. If you read my message again, I need to tell IE : if the favorites folder is not accessible, don't modify my local desktop folder integrity level.
    Regards
    Chris

  • How can I fix the security warning I keep getting regarding unencrypted connections?

    When I surf the internet, I get a security warning saying that I am sending information over an unencrypted connection that can be viewed by a third party. I would like to resolved this.

    The settings for the warning messages have been removed from the user interface (Bug 513166).
    You need to change the related security.warn_* prefs directly on the <b>about:config</b> page.<br />
    Filter: security.warn
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    *Use the Filter bar at to top of the about:config page to locate a preference more easily.
    *Preferences that have been modified show as bold (user set).
    *Preferences can be reset to the default via the right-click context menu if they are user set
    *Preferences can be changed via the right-click context menu: Modify (String or Integer) or Toggle (Boolean)

  • When I try to open the downloaded file, a security warning restricts me from opening the file.

    I have the new Motorola Bravo which is on the Android 2.1 system. When I try to open the downloaded file, a warning appears saying "This application comes from an unknown source, and for your security only applications from trusted sources can be installed". Is the download corrupt? I would think not, but I am very confused.

    Unfortunately, AT&T disables the ability for its Android phones to install applications that aren't distributed through the Android Market.
    If this phone is not AT&T-branded, then you might be able to enable "Non-Market sources" in the "Applications" section of the Settings app.
    If it is, then you might be able to use the Android developer tool "adb" to install Firefox on your phone (search the web for instructions), or you can wait for our next beta release which should be available through the Market later this month.

  • TS3212 i saw the file download security window and did enter run, it only gets so far and then a window pops up that says there is a problem with the download and can't install.  what do I do?

    I did see the security download window and entered "run", but it only got so far and a window popped up saying "problem with download, can't proceed".  What to do?

    This happened to me, too. If I remember correctly, I had to set wither iTunes or my computer to download files one at a time instead of all at once. I don't remember how I set it to do this, though. I also remember that I had to delete the files and downloads and restart them all after I did this. Sorry I couldn't help more.

  • ITunes deleted apps - still a warning message keeps appearing:  'iTunes has found purchased items on the iPhone..."

    Hi
    I'm trying to delete apps in iTunes Library and from the iPhone.
    1.  Goto Library > Apps then I deleted the apps I dont use.
    2.  Goto the iPhone, select Apps then deleted apps from there that I'm no longer using.
    3.  Click Sync.  Then I get the following warning:
    iTunes has found purchased items on the iPhone “4S 16GB iPhone” that are not present in your iTunes library. Do you want to transfer these items from this iPhone back to your iTunes library? If you do not transfer these purchased items to your iTunes library, they will be removed from the iPhone.
    4.  I clicked 'Dont Transfer'.  This is fine as I dont want the apps on the iPhone anymore. 
    5.  I ejected the iPhone.
    6.  Later, I reconnect the iPhone again to iTunes.   The warning appears again:
    iTunes has found purchased items on the iPhone “4S 16GB iPhone” that are not present in your iTunes library. Do you want to transfer these items from this iPhone back to your iTunes library? If you do not transfer these purchased items to your iTunes library, they will be removed from the iPhone.
    7.  Clicked 'Dont Transfer'.
    8.  Then I tried 'Transfer'. This transfered "something" .. I dont know what transferred as I had deleted a few apps.
    Why does this warning keep appearing everytime I reconnect?  I'm not sure what it means or what it's meant to do. 
    Please can you advise me?  I dont know what I'm doing wrong.

    Don't transfer, right click the device in iTunes and select Back Up.
    Though, the iTunes interface is designed to be computer - phone and not the other way around, you may need to use something else to preserve your data.

  • Where does itunes put files downloaded to pc from the cloud?

    I reformatted my pc. If I restore music from itunes match, where on my computer does it place the files? I also have the option to restore from Carbonite. If I put all the music back in its original location, how do I "coordinate" with itunes and itunes match?

    Click here for the paths.
    (41846)

  • File download interferes with Quick Time

    Usually, when I download from a website a popup window appears with the option to open, run, and cancel. The title of the window is “File Download – Security Warning”.
    After installing Quick Time, when I try to download from any website, the quick time window appears instead of the Utility window by the WINDOW operating system.I would prefer the Window utility to popup, is there any way I can install quick time in such a way so that quick time window does not pop up for file download.
      Windows XP  

    Hi,
    A tiff file is a picture file. FInd a tiff file on your computer and clik it with the right mouse button. From the list choose the option "open with". You wuill get a few option on which to open the file with, choose something like "Paint" and make sure to select the thick box to always use this program to open these files. From Paint you should have no problem printing.
    Say "Thanks" by clicking the Kudos Star in the post that helped you.
    Although I work for HP my posts and replies are my own
    Please mark the post that solves your problem as "Accepted Solution"

  • App.opendoc does not display security warning window like e.g. "open a file" function?

    When I link from one PDF to the other via "open a file" function (both PDFs are located in %userprofile%/mydocuments directory), Reader X and XI open a security warning box. If I agree to open the target file, this specific file always opens without displaying the warning again.
    When I link to the same file via app.opendoc, the security warning box does not open. So I do not get a chance to add the target file to the list of trusted files.
    Is there any way to motivate app.opendoc to display security warning boxes due to the new sandboxing technology in Reader >= X? So that I get a chance to add the target PDF to the trusted PDFs?

    Is there any chance that the application is being run from Developer Suite? In other words, is Developer Suite installed on the client machine and hosting the app?
    Regardless, although anything is possible, I have never heard of what you are describing. In all cases, the dialog box should be the java dialog which is a grayish/purple color. The exact color will vary depending on the JRE version you are using.
    If my first point is not the case, I would recommend that you consider using WebUtil 10.1.2.2 and also patch the AS environment to the same version. To get WebUtil to 10.1.2.2, you will need to patch a Developer Suite home and copy frmwebutil.jar to the AS home. After patching, I believe you will also find an updated webutil.pll in the DevSuite \forms directory which will also need to be copied then compiled on the deployment server.
    Also, ensure that you are using Jinitiator 1.3.1.26 or newer. If you are using the Sun JRE, be sure you are using a certified/supported version. For example, you can use the latest 1.5.x Sun JRE with Forms 10.1.2.2, which is 1.5.0_15

  • Open File - Security Warning for network launch

    Another set of applications I am trying to bring over from ZfD 7. They are
    simple apps that just launch an executable from a UNC path
    (\\server\volume\folder\app.exe). The only action is a Launch Executable
    action with the network UNC path to the app. These worked fine with ZfD,
    but with ZCM I get a popup security warning box saying that the publisher
    could not be verified (Unknown Publisher) every time I launch the
    application. I can just click Run and it continues as it should. These
    applications are "Unknown" in the sense that I built them myself. Is there
    anyway to make this prompt go away and stop bothering me?
    Thanks.

    Try This...
    Create a Group Policy in Zen and apply it to the machines you want to run the exe on with the following settings
    In "Computer Configuration | Administrative Templates | Windows Components | Internet Explorer | Internet Control Panel | Security Page" make the following changes...
    Intranet Sites: Include all local (intranet) sites not listed in other zones - Enabled
    Locked-Down Intranet Zone Template - Enabled - Low
    Intranet Zone Template - Enabled - Low
    Trusted Sites Zone Template - Enabled - Low
    Intranet Sites: Include all sites that bypass the proxy server - Enabled
    Intranet Sites: Include all network paths (UNCs) - Enabled
    Site to Zone Assignments List - Enable - *****
    *****Click Show and Then Add... here you identify where you are trying to install from such as *.adomain.com OR server.adomain.com OR 10.0.0.0 OR Z: in the top line and set the value as 1. You can create as many zone assignments you want... I have 4 in mine but that is because i don't completely understand what in the world i am doing!*****
    Move to the "Trusted Sites Zone"
    Launching programs and unsafe files - Enabled - Enable
    Save it and apply it (At your own risk of course!) and hope i didn't forget something...

Maybe you are looking for

  • Script for Overriding, Outlining, and Clearing Masters

    As part of the submission process for one of our printers, we have to outline all the text on a set of labels. I've been trying to write a script to do three steps: 1. Override all Master page objects 2. Apply [none] master to all pages 3. Outline al

  • Default download action doesn't work

    Downloading files for a particular type no longer prompts me for action, but simply saves the file. The application is set to "always ask" in Options, and in desperation I have now changed all applications so that none of them are set to save a file.

  • How can I change the startup language when I use the internet?

    I have the macbook pro that i have just bought in Russia. The reason I bought it here is because I wanted to have both the English and Russian letters on the keyboard. Apart from that I don't care much for the Russian system, since I have always used

  • Maintaining or Editing xml files

    Hi All,         I am migrating a web application from tomcat to SAP WAS CE. In this web application there are some .xml files, porperty files. These xml files contains information like path of the log files, server urls, dabase information. Now the p

  • Remote Desktop not listed in Applications, but installation says it's already installed

    When I try to install Apple Remote Desktop, I get a message that says a more current version is already installed. I look in Applications and see no reference to Remote Desktop. 1) Does Max OS X Lion 10.7.3 come with Remote Desktop installed, as some