HT4818 Why can't you create a Windows USB on a computer with an optical drive because my optical drive has failed

I get my USB and my Windows 7.iso but when I open bootcamp the option to create a Windows USB is not clickable. Please help because my Optical Drive doesn't work.

Hi Rosera,
This is bad and I am sorry to hear that you are running into these issues.
Let me connect with you, so right now, the current state is that you have installed copy of PSE 8 in trial on your windows 7 machine, and when you are trying to enter the serial number from your PSE 8 Box, it is saying the serial number to be invalid?
It might sound pretty obvious, but please make sure that you are entering the serial number correctly and of PSE 8(in case you bought a PEPE box)?
Have you tried the steps mentioned below by Barbara?
If possible, you can send me the serial number through PRIVATE MESSAGE and I can check it on my end that whether the serial number is indeed invalid or that the issue is with your machine?
Regards,
Ankush

Similar Messages

  • Why can't you create image hyperlinks in Yahoo mail??!!

    ''locking - duplicate - https://support.mozilla.com/en-US/questions/806494''
    The whole feature that allows images to be entered inline with text is messed up when using Firefox. And you can't make any image a hyperlink! This is a really useful feature that I hate to resort to IE for!! Why can't Firefox get this to work if IE can?? Firefox is better in every way except this one!!

    Hi,
    932262 wrote:
    My oracle version is 11g, Starting in Oracle 11.1, you can use sequences directly in an assignment statement. For example:
    :NEW.id.sbl := sq.gdi.NEXTVAL;You don't have to SELECT it from dual any more.
    and i am not reading it because i don't know where to read. Oracle documentation is available on line. For version 11.1:
    http://www.oracle.com/pls/db111/portal.all_books
    I am trying to use simple sql and not PL/SQL as much as possible.That's great! Your code will be more efficient and easier to maintain.
    As mentioned earlier, you can create as many triggers in the same script as you want to. Whether you use 5 scripts, or 1, or none at all, you have to put a / after the final END; statement in each one. Follow that by SHOW ERRORS to get complete error messages.
    END;
    SHOW ERRORSPersonally, I prefer having a separate script to create each object. If you want to have one script that calls 5 other scripts, use the SQL*Plus START (or @) command. If the 5 child scripts are on the same directory as the parent script, then you can call them like this:
    @@child_script_1
    @@child_script_2
    @@child_script_3
    @@child_script_4
    @@child_script_5

  • Why can't I create a PDF from a Word file with your $9.99 monthly plan. I have done so before.

    Why can't I change a Word file to a PDF file with your $9.99 monthly plan? I have done so before.

    Firefox is a good browser, but it comes with its own PDF viewer, which may not display PDF files correctly.  See http://forums.adobe.com/thread/1158136
    If you want to continue to use Internet Explorer, you may want to lower its security settings; see http://windows.microsoft.com/en-us/Windows7/Change-Internet-Explorer-Security-settings

  • WHy can't you create several triggers in one single script ?

    Hi i did a lot of sql requests to create triggers and now i want them to be executed all one after one, so i made a script with all the requests in it, problem is that only the first one executes, why ?
    here are the first two requests from the code:
    create or replace trigger TRBI_schema_bd_l before insert
    on t_schema_bd_l for each row
    begin
    select SQ_GDI.nextval
    into :new.ID_SBL
    from dual;
    sp_info_element_ctrl(:new.date_dern_maj_ctrl,:new.code_usager_ctrl);
    end;
    create or replace trigger TRBI_souscriptions before insert
    on T_souscription for each row
    begin
    select SQ_GDI.nextval
    into :new.ID_SOUS
    from dual;
    sp_info_element_ctrl(:new.date_dern_maj_ctrl,:new.code_usager_ctrl);
    end;

    Hi,
    932262 wrote:
    My oracle version is 11g, Starting in Oracle 11.1, you can use sequences directly in an assignment statement. For example:
    :NEW.id.sbl := sq.gdi.NEXTVAL;You don't have to SELECT it from dual any more.
    and i am not reading it because i don't know where to read. Oracle documentation is available on line. For version 11.1:
    http://www.oracle.com/pls/db111/portal.all_books
    I am trying to use simple sql and not PL/SQL as much as possible.That's great! Your code will be more efficient and easier to maintain.
    As mentioned earlier, you can create as many triggers in the same script as you want to. Whether you use 5 scripts, or 1, or none at all, you have to put a / after the final END; statement in each one. Follow that by SHOW ERRORS to get complete error messages.
    END;
    SHOW ERRORSPersonally, I prefer having a separate script to create each object. If you want to have one script that calls 5 other scripts, use the SQL*Plus START (or @) command. If the 5 child scripts are on the same directory as the parent script, then you can call them like this:
    @@child_script_1
    @@child_script_2
    @@child_script_3
    @@child_script_4
    @@child_script_5

  • Why can't I create a package that uses a cursor with a nested record?

    I have two examples of a a stored procedure that are almost identical. The first one oracle will not create, the second works fine. The only difference is that the first example uses a nested record, where in the second example, I combined the two records
    Anyone know why or want to pehaps what I am doing wrong? - Thanks Tim
    Nested Record (which fails):
    CREATE OR REPLACE PACKAGE TestPKG AS
    TYPE permissions_rec IS RECORD
    cPermissionRead DWH_security_objpriv.permission_read_flag%TYPE,
    cPermissionWrite DWH_security_objpriv.permission_write_flag%TYPE,
    cPermissionVisible DWH_security_objpriv.permission_visible_flag%TYPE,
    cPermissionDelete DWH_security_objpriv.permission_delete_flag%TYPE,
    cPermissionExecute DWH_security_objpriv.permission_execute_flag%TYPE,
    cPermissionGrant DWH_security_objpriv.permission_grant_flag%TYPE
    TYPE privilege_rec IS RECORD
    cRoleOrUser DWH_security_objpriv.role_user_flag%TYPE,
    vcPrivilegeName DWH_security_objpriv.privilege_name%TYPE,
    rPermission permissions_rec
    TYPE privilege_data IS REF CURSOR RETURN privilege_rec;
    UserFlag CONSTANT CHAR(1) := 'U';
    PROCEDURE GetUserDefinedPriviligesSP(vcUserName IN VARCHAR2, curNamedPrivilages OUT privilege_data);
    END TestPKG;
    CREATE OR REPLACE PACKAGE BODY TestPKG IS
    PROCEDURE GetUserDefinedPriviligesSP
    vcUserName IN VARCHAR2,
    curNamedPrivilages OUT privilege_data
    AS
    BEGIN
    OPEN
    curNamedPrivilages
    FOR SELECT
    Security.role_user_flag,
    Security.privilege_name,
    Security.permission_read_flag,
    Security.permission_write_flag,
    Security.permission_visible_flag,
    Security.permission_delete_flag,
    Security.permission_execute_flag,
    Security.permission_grant_flag
    FROM
    Security, Operations
    WHERE
    Operations.username = vcUserName AND
    Security.role_user_id = Operations.userid AND
    Security.role_user_flag = UserFlag;
    END GetUserDefinedPriviligesSP;
    END TestPKG;
    Errors
    LINE/COL ERROR
    15/5 PL/SQL: SQL Statement ignored
    18/65530 PLS-00382: expression is of wrong type
    Combined Records (which builds):
    CREATE OR REPLACE PACKAGE TestPKG AS
    TYPE privilege_rec IS RECORD
    cRoleOrUser DWH_security_objpriv.role_user_flag%TYPE,
    vcPrivilegeName DWH_security_objpriv.privilege_name%TYPE,
    cPermissionRead DWH_security_objpriv.permission_read_flag%TYPE,
    cPermissionWrite DWH_security_objpriv.permission_write_flag%TYPE,
    cPermissionVisible DWH_security_objpriv.permission_visible_flag%TYPE,
    cPermissionDelete DWH_security_objpriv.permission_delete_flag%TYPE,
    cPermissionExecute DWH_security_objpriv.permission_execute_flag%TYPE,
    cPermissionGrant DWH_security_objpriv.permission_grant_flag%TYPE
    TYPE privilege_data IS REF CURSOR RETURN privilege_rec;
    UserFlag CONSTANT CHAR(1) := 'U';
    -- P r o c e d u r e s
    PROCEDURE GetUserDefinedPriviligesSP(vcUserName IN VARCHAR2, curNamedPrivilages OUT privilege_data);
    END TestPKG;
    CREATE OR REPLACE PACKAGE BODY TestPKG IS
    PROCEDURE GetUserDefinedPriviligesSP
    vcUserName IN VARCHAR2,
    curNamedPrivilages OUT privilege_data
    AS
    BEGIN
    OPEN
    curNamedPrivilages
    FOR SELECT
    Security.role_user_flag,
    Security.privilege_name,
    Security.permission_read_flag,
    Security.permission_write_flag,
    Security.permission_visible_flag,
    Security.permission_delete_flag,
    Security.permission_execute_flag,
    Security.permission_grant_flag
    FROM
    Security, Operations
    WHERE
    Operations.username = vcUserName AND
    Security.role_user_id = Operations.userid AND
    Security.role_user_flag = UserFlag;
    END GetUserDefinedPriviligesSP;
    END TestPKG;

    Perhaps I'm missing something, but I can't for the life of me see the difference between your two package bodies. If the package specification is the same, there must be some difference, but I don't see it. Could you point out the difference?
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • OK, why can I not authorize my Windows 7 64-bit computer for iTunes?

    I'm entering my AppleID password just fine (the one I'm using to post this, but the iTunes store keeps rejecting it. Any ideas?
    BTW, why does the 64-bit iTunes installer program default to installing under Program Files(x86)? I changed it to the other Program Files directory-- is that the cause of my problem above?

    is that the cause of my problem above?
    Maybe.
    iTunes is still only a 32bit program with 64bit drivers.

  • Why can I not create a PDF from a web page on my Adobe Acrobat 8 Pro on my new Windows 8 computer? It worked fine on my windows XP system?

    Why can I not create a PDF from a web page on my Adobe Acrobat 8 Pro on my new Windows 8 computer? It worked fine on my windows XP system?

    Acrobat 8 is not compatible with Windows 8,  for the simple reason it was
    created much before it and Adobe could not participate the changes to the
    OS that Microsoft implemented many years later on. You need to buy the
    current version for compatibility.

  • Why can't I create a response to an email from the Viewer window?

    Why can't I create a response to an email from the Viewer window?
    When I select an email to respond to in the viewer window and click on the respond arrow that appears just under the header, a new response email opens for a split second then disappears.
    I have to actually click on and open the email message in its own screen to be able to then click on the respond arrow and succeed in having Mail open a response email that I can edit - one that remains open.
    This seems to be a bug that we need to have squashed.
    Steve

    Do I have to connect the iPad to a computer to make this work? Is the fact that I used another email address to set up my Apple ID years ago causing the problem? A friend of mine just got a new iPod and he was able to set up a me.com account. I am feeling rather stupid. Hope someone here can help.

  • HT203909 Why can't you provide specific instructions here about how to make the USB drive bootable?  The article referenced is not dedicated to Bootcamp--too long, too many options.  How do you make it bootable?

    Why can't you provide specific instructions here in HT203909 (Boot Camp: Creating an ISO image from a Windows installation DVD) about how to make the USB drive bootable?  The article referenced for partitioning the drive is not dedicated to Bootcamp--too long, too many options.  How do you make it bootable?

    If your BC Assistant shows the option to create a USB Installer, it automatically is marked as bootable. There is no need to have manual intervention to make a bootable USB. Once the process is manually modified, it is supported by the person modifying it.
    You have two or three options (depending on your Mac Model).
    1. Create USB... - Use a USB2 flash drive, which is erased and formatted. If your Mac supports ISOs then BCA will prompt for the Media. Any Mac which does not have a built-in Optical drive will support an ISO. There are specific Mac models which support both, DVD and USB based installation.
    2. Download Software from Apple servers...
    3. Install Windows...
    Are any additional instructions really necessary?

  • Why can't you use your iCloud email address for your Apple ID?

    Why can't an iCloud.com email address be used to create an Apple ID?  Is iCloud email not to be used as a primary email?

    You can if you create an new Apple ID at the time you create the iCloud account, and choose to create a new @icloud.com email address as your primary email address when creating the ID.  See Imp68's post here for an example of how you would do this on a Mac: https://discussions.apple.com/message/22283348#22283348.
    You could not use your existing @icloud.com email address as it is already an alias for your existing iCloud ID; you would have to create a new one.

  • Why can't I create a document in my Facebook group on my iPad? It won't let me input any text into the text box field after I create a new document. Thanks.

    Why can't I create a document in my Facebook group on my iPad. It won't let me input any text into the text box field after I create a new document. Thanks.

    Just thought I'd add my solution, I decided to go with WebDAV and I think it actually works better than the iTunes way, the steps are pretty much the same but avoiding the iTunes interface just makes things easier and faster.
    I followed this guide but it does have a small mistake in the httpd-dav.conf file, on line 2, where it's WebServer/WebDAV">, it should be <Directory "/Library/WebServer/WebDAV">.
    The tricky part is setting permissions which if wrong will give you errors when connecting with the iPad, I opted to set all to Read&Write since my home network has a hardware firewall. Another convenience was to add an alias to the webdav share on the Desktop.
    I'm still expecting the call from Apple but even if they fix the iTunes I'm sticking with WebDAV, atleast until I see what's new with iOS5 and iCloud this fall which should bring true sync for documents (I'm hoping that they will offer encryption with my own keys, if not, then I'll probably keep using WebDAV).

  • Why can't I create a gallery in iPhoto in the normal way who in the past? If I sent the gallery to another the pictures are deleted!

    Why can't I create a gallery in iPhoto in the normal way who in the past? If I sent the gallery to another the pictures now will be deleted!

    Before anyone can help, they need information to work with. Basic stuff:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. What were you doing when the problem arose?
    - Did it ever work properly?
    - Are there error messages?
    - What steps have you tried already to solve the issue.
    Anything else you can think of that might allow someone else to understand your issue.

  • Why can I only create 4 forms when I have purchased the entire package at 100+ dollars?

    Why can I only create 4 forms when I have purchased the entire package at 100+ dollars?

    FormsCentral can be used from anywhere, but to purchase a subscription you need a credit card with the mailing address in one of the countries supported for purcahse:
    http://forums.adobe.com/docs/DOC-1375
    The partner can purchase if they have access to a card in one of those countries.  Alternatively they do not need to purchase a subscription to edit forms that you've created, they do in order to create multiple forms of their own, but by your sharing forms with them at the "Co-author" level they have access to the editing.  Here are the instructions to share a form:
    http://forums.adobe.com/docs/DOC-2462
    Thanks,
    Josh

  • Why can't you post direct links to the full installers?

    Not a tough question:
    Why can't you just post direct links to the full installers instead of forcing people to sign up for "Distribution" EVERY DAMN RELEASE!?!?
    Why do I have to fill out that form and wait a day after EVERY, SINGLE, RELEASE just to update more than one system? I have 150,000 nodes to upgrade. Why does Adobe go out of their way to make this difficult? Why the hell don't you inform people who already signed up about the new installers BEFORE they go to auto-update so system administrators could actually distribute them beforehand?
    How could this possibly be a good thing for Adobe? I just had 50,000 nodes try to upgrade on their own, ALL OF THEM failed. That's 750 GIGABYTES of bandwidth you just wasted Adobe, yours and mine.
    No more Flash updates I guess. There is no reason this has to be so terrible.

    The download links for the offline installers are posted multiple times in this forum every day: http://helpx.adobe.com/content/help/en/flash-player/kb/installation-problems-flash-player- windows.html#main-pars_header
    And if you have signed up for a distribution license, you can always go directly to http://www.adobe.com/products/flashplayer/distribution3.html for your corporate downloads.  There is really no need to sign up again.

  • Why can't I create a new note on my iPad?

    Why can't I create a new note on my iPad?

    tammy313 wrote:
    the options in the tool bar at the bottom are not highlighted and it does not respond to my touch.
    You are talking about the forward, back, mail and trash can icons in the Notes App - correct?
    I've gone through restarting it and followed the instructions from the person last week.
    Have you restarted the iPad - is that what you mean? Have you quit and then restarted the app? Quit the app, and restart the iPad. It's worth a try.
    Double tap the home button and your recent apps will appear at the bottom. Hold down on the Notes app icon until it begins to wiggle. Then tap the minus sign to quit the app. Then tap the screen. Now restart the iPad.
    Carolyn explained this above (restart) but here it is again....
    Hold down on the sleep button until the red slider appears and slide to shut off. Hold down on the sleep button until the Apple logos appears then let go of the button and the iPad will restart. See if that helps.

Maybe you are looking for