I downloaded Windows 7 Pro and secure download manager. When I click the button start nothing happens.

I downloaded Windows 7 Pro and secure download manager. When I click the button start nothing happens. What do you think is the problem?

original title: failure to launch

Where did you downloaded it go?

Looks like it was not Ms.

Tags: Windows

Similar Questions

  • I can't install Adobe Photoshop elements 13.  When I click the button install, need me in the folder "Adobe Photoshop Elements 13 (download)", but there is no action that I can take at this time.  I am running Windows 7 Home Premium, SP 1.

    I can't install Adobe Photoshop elements 13.  When I click the button install, need me in the folder "Adobe Photoshop Elements 13 (download)", but there is no action that I can take at this time.  I am running Windows 7 Home Premium, SP 1.

    Hi Michelle.  I thought about it. To install the program, go the downloaded zip [Adobe Photoshop Elements 13 (Download)] folder, then open the "64 bit", then double-click on the "PhotoshopElements_13_LS25_win64" application  Who will run the program.  I hope this helps.  David

  • How to open 2 sites on start and 1 Web site when you click the home button?

    How to open 2 sites on start and 1 Web site when you click the home button?

    You can change your shortcut on the desktop Firefox with two starting URLS. To try:

    • Shortcut on the desktop: right-click on the icon, choose Properties
    • Icon taskbar pinned: clic click right on the icon, right click in Mozilla Firefox, click on properties

    Windows normally selects the shortcut tab. If this is not the case, go ahead and click on the shortcut tab.

    You will see the target highlighted. On 64-bit Windows, which is usually either not less the following:

    "C:\Program Files (x86)\Mozilla Firefox\firefox.exe"
    

    For the specific shortcut launch pages, you can add them to the end, for example:

    "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" -url "http://www.dilbert.com/" -url "http://www.gocomics.com/pearlsbeforeswine"

    After OK'ing the Properties dialog box, you can test everything right now to confirm that Firefox is now launching a window with tabs. Either:

    • Double-click the shortcut on the desktop
    • right click on taskbar icon pinned, click Mozilla Firefox

    Who do you want?

  • When I click the button nothing happens, please see my code and help?

    Mr President.

    My worm jdev is 12 c

    I'm building an adf application to run the report jasper with a managed bean button but nothing happens on the click, is my link code and application

    https://www.dropbox.com/sh/15ru03k0w0192i5/AAA5oLu_3hkwdV-5nOPN5J8Ea?DL=0

    package view;
    
    
    import java.io.ByteArrayOutputStream;
    import java.io.InputStream;
    import java.sql.Connection;
    import java.util.HashMap;
    import java.util.Map;
    import javax.faces.context.FacesContext;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.servlet.ServletContext;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServletResponse;
    import javax.sql.DataSource;
    import net.sf.jasperreports.engine.JasperExportManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    import net.sf.jasperreports.engine.type.WhenNoDataTypeEnum;
    import net.sf.jasperreports.engine.util.JRLoader;
    import oracle.adf.model.BindingContext;
    import oracle.adf.model.binding.DCIteratorBinding;
    import oracle.binding.BindingContainer;
    
    
    
    
    public class JasperBean {
        public JasperBean() {
        }
    
    
        public String runReportAction() {
            DCIteratorBinding empIter = (DCIteratorBinding) getBindings().get("EmployeesView1Iterator");
                String empId = empIter.getCurrentRow().getAttribute("EmployeeId").toString();
                Map m = new HashMap();
                m.put("employeeId", empId);
                try
                {
                  runReport("empReport.jasper", m);
                }
                catch (Exception e)
                {
                }
                return null;
        }
        
        public BindingContainer getBindings()
          {
            return BindingContext.getCurrent().getCurrentBindingsEntry();
          }
          
          public Connection getDataSourceConnection(String dataSourceName)
              throws Exception
            {
              Context ctx = new InitialContext();
              DataSource ds = (DataSource)ctx.lookup(dataSourceName);
              return ds.getConnection();
            }
          
          private Connection getConnection() throws Exception
          {
            return getDataSourceConnection("hrDS");
          }
          
          public  ServletContext getContext()
            {
              return (ServletContext)getFacesContext().getExternalContext().getContext();
            }
          public  HttpServletResponse getResponse()
            {
              return (HttpServletResponse)getFacesContext().getExternalContext().getResponse();
            }
          public static FacesContext getFacesContext()
            {
              return FacesContext.getCurrentInstance();
            }
          public void runReport(String repPath, java.util.Map param) throws Exception
          {
            Connection conn = null;
            try
            {
              HttpServletResponse response = getResponse();
              ServletOutputStream out = response.getOutputStream();
              response.setHeader("Cache-Control", "max-age=0");
              response.setContentType("application/pdf");
              ServletContext context = getContext();
              InputStream fs = context.getResourceAsStream("/reports/" + repPath);
              JasperReport template = (JasperReport) JRLoader.loadObject(fs);
              template.setWhenNoDataType(WhenNoDataTypeEnum.ALL_SECTIONS_NO_DETAIL);
              conn = getConnection();
              JasperPrint print = JasperFillManager.fillReport(template, param, conn);
              ByteArrayOutputStream baos = new ByteArrayOutputStream();
              JasperExportManager.exportReportToPdfStream(print, baos);
              out.write(baos.toByteArray());
              out.flush();
              out.close();
              FacesContext.getCurrentInstance().responseComplete();
            }
            catch (Exception jex)
            {
              jex.printStackTrace();
            }
            finally
            {    
              close(conn);
            }
          }
          
          public void close(Connection con)
           {
             if (con != null)
             {
               try
               {
                 con.close();
               }
               catch (Exception e)
               {
               }
             }
           }
    }
    

    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE html>
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
        <af:document title="JasperTester.jsf" id="d1">
            <af:messages id="m1"/>
            <af:form id="f1">
                <af:pageTemplate viewId="/oracle/templates/threeColumnTemplate.jspx" id="pt1">
                    <f:facet name="center">
                        <af:button text="Run Report" id="b1" action="#{ABC.runReportAction}"/>
                        <af:table value="#{bindings.EmployeesView1.collectionModel}" var="row"
                                  rows="#{bindings.EmployeesView1.rangeSize}"
                                  emptyText="#{bindings.EmployeesView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                                  rowBandingInterval="0"
                                  selectedRowKeys="#{bindings.EmployeesView1.collectionModel.selectedRow}"
                                  selectionListener="#{bindings.EmployeesView1.collectionModel.makeCurrent}"
                                  rowSelection="single" fetchSize="#{bindings.EmployeesView1.rangeSize}" id="t1">
                            <af:column headerText="#{bindings.EmployeesView1.hints.EmployeeId.label}" id="c1">
                                <af:outputText value="#{row.EmployeeId}"
                                               shortDesc="#{bindings.EmployeesView1.hints.EmployeeId.tooltip}" id="ot1">
                                    <af:convertNumber groupingUsed="false"
                                                      pattern="#{bindings.EmployeesView1.hints.EmployeeId.format}"/>
                                </af:outputText>
                            </af:column>
                            <af:column headerText="#{bindings.EmployeesView1.hints.FirstName.label}" id="c2">
                                <af:outputText value="#{row.FirstName}"
                                               shortDesc="#{bindings.EmployeesView1.hints.FirstName.tooltip}" id="ot2"/>
                            </af:column>
                            <af:column headerText="#{bindings.EmployeesView1.hints.LastName.label}" id="c3">
                                <af:outputText value="#{row.LastName}"
                                               shortDesc="#{bindings.EmployeesView1.hints.LastName.tooltip}" id="ot3"/>
                            </af:column>
                        </af:table>
                    </f:facet>
                    <f:facet name="header"/>
                    <f:facet name="end"/>
                    <f:facet name="start"/>
                    <f:facet name="branding"/>
                    <f:facet name="copyright"/>
                    <f:facet name="status"/>
                </af:pageTemplate>
            </af:form>
        </af:document>
        <!--oracle-jdev-comment:preferred-managed-bean-name:ABC-->
    </f:view>
    
    

    <?xml version="1.0" encoding="windows-1252" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <managed-bean id="__2">
        <managed-bean-name>ABC</managed-bean-name>
        <managed-bean-class>view.JasperBean</managed-bean-class>
        <managed-bean-scope>request</managed-bean-scope>
      </managed-bean>
    </adfc-config>
    
    

    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
             version="3.0">
      <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
      </servlet>
      <servlet>
        <servlet-name>resources</servlet-name>
        <servlet-class>org.apache.myfaces.trinidad.webapp.ResourceServlet</servlet-class>
      </servlet>
      <servlet>
        <servlet-name>BIGRAPHSERVLET</servlet-name>
        <servlet-class>oracle.adf.view.faces.bi.webapp.GraphServlet</servlet-class>
      </servlet>
      <servlet>
        <servlet-name>BIGAUGESERVLET</servlet-name>
        <servlet-class>oracle.adf.view.faces.bi.webapp.GaugeServlet</servlet-class>
      </servlet>
      <servlet>
        <servlet-name>MapProxyServlet</servlet-name>
        <servlet-class>oracle.adf.view.faces.bi.webapp.MapProxyServlet</servlet-class>
      </servlet>
      <servlet>
        <servlet-name>adflibResources</servlet-name>
        <servlet-class>oracle.adf.library.webapp.ResourceServlet</servlet-class>
      </servlet>
      <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>/faces/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/adf/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/afr/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>BIGRAPHSERVLET</servlet-name>
        <url-pattern>/servlet/GraphServlet/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>BIGAUGESERVLET</servlet-name>
        <url-pattern>/servlet/GaugeServlet/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>MapProxyServlet</servlet-name>
        <url-pattern>/mapproxy/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/bi/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>adflibResources</servlet-name>
        <url-pattern>/adflib/*</url-pattern>
      </servlet-mapping>
      <filter>
        <filter-name>trinidad</filter-name>
        <filter-class>org.apache.myfaces.trinidad.webapp.TrinidadFilter</filter-class>
      </filter>
      <filter>
        <filter-name>ADFLibraryFilter</filter-name>
        <filter-class>oracle.adf.library.webapp.LibraryFilter</filter-class>
      </filter>
      <filter>
        <filter-name>adfBindings</filter-name>
        <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
      </filter>
      <filter-mapping>
        <filter-name>trinidad</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>REQUEST</dispatcher>
        <dispatcher>ERROR</dispatcher>
      </filter-mapping>
      <filter-mapping>
        <filter-name>ADFLibraryFilter</filter-name>
        <url-pattern>/*</url-pattern>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>REQUEST</dispatcher>
      </filter-mapping>
      <filter-mapping>
        <filter-name>adfBindings</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>REQUEST</dispatcher>
      </filter-mapping>
      <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>client</param-value>
      </context-param>
      <context-param>
        <param-name>javax.faces.PARTIAL_STATE_SAVING</param-name>
        <param-value>false</param-value>
      </context-param>
      <context-param>
        <description>If this parameter is true, there will be an automatic check of the modification date of your JSPs, and saved state will be discarded when JSP's change. It will also automatically check if your skinning css files have changed without you having to restart the server. This makes development easier, but adds overhead. For this reason this parameter should be set to false when your application is deployed.</description>
        <param-name>org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION</param-name>
        <param-value>false</param-value>
      </context-param>
      <context-param>
        <description>Whether the 'Generated by...' comment at the bottom of ADF Faces HTML pages should contain version number information.</description>
        <param-name>oracle.adf.view.rich.versionString.HIDDEN</param-name>
        <param-value>true</param-value>
      </context-param>
      <context-param>
        <description>Security precaution to prevent clickjacking: bust frames if the ancestor window domain(protocol, host, and port) and the frame domain are different. Another options for this parameter are always and never.</description>
        <param-name>org.apache.myfaces.trinidad.security.FRAME_BUSTING</param-name>
        <param-value>differentOrigin</param-value>
      </context-param>
      <context-param>
        <param-name>javax.faces.VALIDATE_EMPTY_FIELDS</param-name>
        <param-value>true</param-value>
      </context-param>
      <context-param>
        <param-name>oracle.adf.view.rich.geometry.DEFAULT_DIMENSIONS</param-name>
        <param-value>auto</param-value>
      </context-param>
      <context-param>
        <param-name>oracle.adf.view.rich.SYNCROWS</param-name>
        <param-value>enable</param-value>
      </context-param>
      <context-param>
        <param-name>javax.faces.FACELETS_SKIP_COMMENTS</param-name>
        <param-value>true</param-value>
      </context-param>
      <context-param>
        <param-name>javax.faces.FACELETS_DECORATORS</param-name>
        <param-value>oracle.adfinternal.view.faces.facelets.rich.AdfTagDecorator</param-value>
      </context-param>
      <context-param>
        <param-name>javax.faces.FACELETS_RESOURCE_RESOLVER</param-name>
        <param-value>oracle.adfinternal.view.faces.facelets.rich.AdfFaceletsResourceResolver</param-value>
      </context-param>
      <context-param>
        <param-name>javax.faces.FACELETS_VIEW_MAPPINGS</param-name>
        <param-value>*.jsf;*.xhtml</param-value>
      </context-param>
      <mime-mapping>
        <extension>swf</extension>
        <mime-type>application/x-shockwave-flash</mime-type>
      </mime-mapping>
      <mime-mapping>
        <extension>amf</extension>
        <mime-type>application/x-amf</mime-type>
      </mime-mapping>
      <listener>
        <listener-class>oracle.adf.mbean.share.config.ADFConfigLifeCycleCallBack</listener-class>
      </listener>
      <listener>
        <listener-class>oracle.adf.mbean.share.connection.ADFConnectionLifeCycleCallBack</listener-class>
      </listener>
      <listener>
        <listener-class>oracle.bc4j.mbean.BC4JConfigLifeCycleCallBack</listener-class>
      </listener>
    </web-app>
    
    

    Concerning

    Tender Hello,

    Can you try to set the property "partialSubmit" to your 'false' button and restart weblogic server and try again and see if that makes a difference?

    See you soon

    AJ

  • Premiere Pro and Media Encoder crashing when exporting since the upgrade to 2015

    I need to get a story out today and I can't export. Whenever it blocks 3/4 of the way through. Same thing with me. Read all the forums and trying different solutions - thought should autosave, I get an error since the update whenever it saves automatically-, but will have turned this off & still crashed. My MAC is 3 months and to spec. Please someone make me know that if there is a solution - I can't open the 2014 project and am out.

    Hi Liz,

    Have you tried to disable the GPU acceleration?

    Can you please provide more details on your hardware specifications?

    Thank you

    Regalo

  • How can I change the content of the drop-down list window which shows after JUST click the button START

    The window appears after using the right click on the mouse. Before I had a Tech. remove a Trojan visuses the window showed just find, Explorer, Delete, now it showes such articles that take control, Google, download of virus total.etc.  So, how can I get rid of items that I don't want?

    The menu that appears when you right-click is called the "context menu", and various third-party applications can install entries here.  You have several choices regarding the removal of these entries:

    1. If you can determine what application is involved, you can see if the application has a configuration or menu options enabling to customize what appears in the context menu.

    2. If you can determine what application is involved and that you no longer want or need this app, you can uninstall it.  Praseetha K is close, but no cigar gets.  Virus Total is an online service that checks uploaded for viruses, files.  Virus Total also offers a "upload" allowing you to download suspicious files by right-clicking (see http://www.virustotal.com/advanced.html).  You can decide if you want. If this is not the case, simply uninstall it.

    3. If you are unable to determine what application is involved, or you want to keep the application but it does not offer a configuration without the context menu item, download ShellExView and you will probably be able to go to the bottom of things pretty quickly.

  • Tools-&gt; Options-&gt; Privacy panel - I can't select the Privacy panel to check the cookies enabled or not. I can choose any Panel and privacy 'button' darkens when I click on it but nothing happens, nothing changes below.

    Firefox 3.6.12 Windows Vista, Dell laptop. Each Options Panel opens just fine but no privacy.

    You have this problem when running in Firefox SafeMode?

    http://support.Mozilla.com/en-us/KB/safe+mode

    Do not choose anything at the moment, just use 'continue in safe mode.

    If this is not the case, see this:

    http://support.Mozilla.com/en-us/KB/troubleshooting+extensions+and+theme...

  • An error on my machine, and then I started to have the Active Desktop Recovery page. When I click the button, it gives some script error on line 65 and his does not.

    I tried Googling for this problem, the deleted files in the document and setting\...\microsoft\internet explore the directory and everything, yet its does not work. I also can not change the background image that this feature is blocked, as my laptop has some business strategies enabled on this subject. Help, please. Siddharth - Moreau http://siddhumehta.blogspot.com

    run regedit

    find this entry - HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Desktop\SafeMode\Components

    change the value of key - DeskHtmlVersion REG_DWORD 0 x 00000110 (272) to zero point

    Close regedit to logoff and log back on.

    Siddharth - Moreau http://siddhumehta.blogspot.com

  • How to change the highlight color, click the button image and text and sound.  are there packages of buttons for use in my project?

    How to change the highlight color, click the button image and text and sound. are there packages of buttons for use in my project?

    Hello

    Even if the point of things based Web links buttons created using them is of simple images. Captivate uses simple images. If you need to put your creative hat and not to let the fact that you see the word 'web' scared you somehow. An image is an image. Use on the web, use Captivate. Same case!

    If you change the properties of the button, you can activate the legend of success. Fix any sound that you like with the legend of success and it will play when you click the button. If you do not want to see the legend of success, delete the text and configure it as transparent.

    See you soon... Rick

    Useful and practical links

  • I can't pull up the Windows Media Player on my computer, when I click the icon, nothing happened. Who is wrong?

    More I can't pull up the Windows Media Player on this computer. When I click the icon, nothing happened, what / s wrong?

    Hi Thomas,

    1. you receive messages or error codes?

    2. when the problem started?

    3. did you of recent changes on the system?

    Method 1:

    You can run the Fixit from the following link and check if it can solve the problem.

    Solve the problems of Windows Media Player video and other media or library

    You can also read the following article and check if it helps.

    Windows Media Player stops responding after you install a third-party product that registers its own version of the Wmp.dll file

    Method 2:

    If you still experience the problem, you can perform a clean boot and check.

    A clean boot to check if startup item or services to third-party application is causing this issue.

    You can read the following article to put the computer in a clean boot:

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7

    After the troubleshooting steps, please clean the start link to put the computer to normal startup mode

    Hope this information is useful.

  • Used for Adobe Pro XI, after download download manager a screen asked the English language, said yes and then nothing, no installation... help Windows 7 x 64

    Used for Adobe Pro XI, after download download manager a screen asked the English language, said yes and then nothing, no installation... help Windows 7 x 64

    Hi nucar,.

    Once Adobe Download Assistant is installed, you can start at any time and choose a product to download at the bottom of the window. Updates list as new products will be available for download with Adobe Download Assistant.

    Please visit: http://helpx.adobe.com/x-productkb/policy-pricing/download-assistant-faq.html#main_How_do _ I_download_a_trial_version_of_Creative_Suite_or_Elements_software_

    Otherwise you can try to download from direct download links available at: download Acrobat products | Standard, Pro | XI, X

    Kind regards

    Rave

  • Windows 8 pro and windows 8.1 pro 64 bit drivers ralink rt3290 and lan realtek PCIe FE Family Controller

    Hello

    I have a HP Pavilion GP A10 AMD laptop 2313-AX. The latest drivers from the HP website for windows 8 pro and windows 8.1 pro 64-bit drivers ralink rt3290 and lan realtek PCIe FE Family Controller appear limited in my laptop, but in the same laptop connectivity when I start in Windows Server 2008 R2, both LAN and wifi works very well.

    Are there drivers available updated 2013 for these two hardware devices as dated?

    Are there universal or generic drivers that can act as a workaround?

    If so, please give me the URL for the same thing.

    Kind regards
    Sriram.

    Hi Steve,.

    I came across similar issues where the driver manually enabled users to solve the problem. Uninstall the current network adapter drivers and manually install drivers that you previously downloaded.

    a. press Windows key + R key, type devmgmt.msc, hit the Enter key to open the Device Manager.

    b. expand network adapters, right-click on the listed network adapter and select Update driver software.

    c. click Browse my computer for driver software, click Let me pick from a list of drivers for devices on my computerand then click on disk.

    d. in the dialog box to install from the disc, click Browse, locate the drivers, and then click Open.

    e. follow the steps described in the DeviceName update driver software dialog box to update the driver.

    Try these steps and let us know the results.

  • I hope you can help me.  I bought adobe captivate 8 online and when I click the e-mail link for download, it comes up with 7 programs, some are 64-bit and some are not, my computer is 32-bit.  I don't know which of these 7 to download?  All or just

    I hope you can help me.  I bought adobe captivate 8 online and when I click the e-mail link for download, it comes up with 7 programs, some are 64-bit and some are not, my computer is 32-bit.  I don't know which of these 7 to download?  All or just the 4 non 64-bit?

    I tracked down the problem with the download and installation, my windows 7 was missing a file and everything worked after reinstalling windows.  The first 32-bit program in their list was used.  I hope this can help others.

  • Firefox is compatible with the window Surface Pro and Win Phone 8

    Firefox is compatible with the window Surface Pro and Win Phone 8

    A user has posted here the other day that uses a Surface Pro 2 with Windows 8.1, then it should work basically the way it works on a desktop or laptop computer.

    Windows Phone, I don't think.

  • CMT Compaq dc7100 Dual Boot, Windows 7 Pro and XP Pro

    Tile: CMT Compaq dc7100 Dual Boot, Windows 7 Pro and XP Pro

    Hello everyone.  My computer is adjustable having the dual boot with Windows 7 Pro on disk 0 (320 GB SATA Seagate Barracuda 7200.11) and XP Pro disk 1 (40 GB SATA Samsung SP0411C). As the two systems are available at the start but most all the time Windows 7 Pro would use. The computer is Compaq 7100, WCL PP255US, 3.2 GHZ Intel Pentium 4, 3 GB of ram, Council ch h 0968, bios HP 78 1 v01.05 16/06/2004, chip Intel 915 G Express.  According to the website of Seagate Barracuda 320 GB with (quote), ' he not there no master/slave because every player relationship is considered to be a master in a relationship from point to point.» If two drives are connected to a Serial ATA host adapter, the host operating system considers that the two devices as if they were the two "masters" on two ports separated. Both drives behave as if they were device 0 (master) devices.  On the drive Samsung (SP0411C) I put a jumper for master, it is connected to the motherboard instead of disk 1. Used rider illustrated for Samsung SP0411N since I did not see the SP0411C listed. When selecting information for Samsung Seagate site sometimes showed data for their readers. This is perhaps due to the recent acquisition of Samsung or maybe my mistake.  Tried swapping around wiring of each drive but that didn't work of course. Looked at the settings in the BIOS but did not see a way to create the dual boot.  Please let me know if you need more information. If you know how this can be done or have some suggestions, please let me hear it. As always, thank you very much for your comments.

    Oscar

    Hello oscarmint, I checked the specifications of your system and it does not show the system supports two types of hard drives.

    The system supports only Serial ATA (Sata) synchronous Maximum 150 MB/s transfer rate

    You would need to make the jumper on the Seagate 320 GB Sata Drive pin, set at 150 MB/s.

    You are right that the Seagate would not Cable Select or slave settings and it would be the master and only on cable.

    If the 40 GB hard drive is a type of ATA (IDE), you'd better put as selection of cables (CS).

Maybe you are looking for