Copy / Duplicate a CD works for the MacOS but not for Windows

Hi all,
i burnt some jpg's on a CD with my Mac (drag & drop within
the Finder). This went fine: i can read the CD on my Mac
and on my Windows-PC.
As i need y couple of copies from this CD, i thougth that
the "drag & drop" thing within the Finder is to much effort
and i created an image of the CD with the DiskUtility.
After that i burnt the image on new, empty CDs. All of them
worked fine on my Mac, but non of them were readable on
any Windows-PC.
So i started a workaround with the "burning-folder". That
works, but it is a little bit uncomfartable in comparison
to working with images.
Sadly i found no way to create an burn an image which works
on Windows-PCs.
Is there no way to copy / duplicate CD, that are readable
on Windows-PCs?
Thanks a lot, Stefan

Hm, i testet something and i do not know, why two different things come out:
1) i began to create an image from the CD, which i created at first, which works
on my Mac and on my Windows-System.
So i could choose the following formats: read-only, compressed, read/write, DVD-/CD-Master.
2) if i create an image from an existing folder from my harddisk, i have the same options
PLUS "hybrid-image". If i choose this format and burn it, the CD works on my Windows-System, too.
So the question is, why the hybrid-image only available for images which are created
from hardisk-folders and not from an CD?!

Similar Messages

  • Sync Settings works on the Mac, but not in Windows

    On my Mac (Mountain Lion), the Sync Settings screen in Preferences is bright-eyed and bushy-tailed. I can choose any of the options. But on my Windows 8.1 machine, the Sync Settings options are all checked, but grayed-out. The Sync Now button is also grayed-out. Where it says "Signed in as", it's blank; it doesn't show my account name. But when I click the Manage Account button, it takes me to my CC page (creative.adobe.com/files) and I can see my stuff.
    I just updated all the CC apps, but these options are still grayed-out. Anyone know why?

    Hi Ty
    Always arrange pictures on your page. Select them and used Send backwards (button under). Do this till the button is grey. Now your pictures are under the text. Otherwise there is a mask over the text.
    Good luke
    Hans

  • The scroll function on my mousepad is disabled when viewing a pdf file in firefox version 5.0. The scroll works on the pdf, but not on the other tabs. When the pdf is closed, the scroll function returns to normal. Any ideas?!

    The scroll function on my mousepad is disabled when viewing a pdf file in firefox version 5.0. The scroll works on the pdf, but not on the other tabs. When the pdf is closed, the scroll function returns to normal. Any ideas?!

    Hey thanx for the help, it worked like a charm.
    I think firefox changed the application lay out, as I used to be able to choose my PDF opener from the list at " Adobe Acrobat Forms Document' where I could choose Nitro-PDF reader, but it has now moved all the way to the bottom like you suggested to the obvious place of "Portable Document Format" section.
    If someone didn't tell me , I wouldn't have scrolled all the way down to be able to find it... it really should be with all its cousins up the top...
    Cheers again..

  • My applet works in the appletviewer but not in the navigator

    My applet works in the appletviewer but not in the navigator
    exceptions problem1 and problem2 are throwed
    this is my code
    import java.applet.*;
    import java.net.*;
    import java.io.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class ValiderHtml extends Applet implements ActionListener {
    JButton send =new JButton("Connexion");
    JScrollPane jscrollpane= new JScrollPane();
    DefaultListModel lignes=new DefaultListModel();
    JList lstURL = new JList(lignes);
    BufferedReader reader = null;
    String ligne;
    URL url;
    URLConnection conn;
       public void init(){   
       this.setSize(900,400);
       setLayout( new GridLayout(2,1));
       jscrollpane.setBounds(new Rectangle(19,53,160,73));
       jscrollpane.getViewport().add(lstURL,null);
       send.addActionListener(this);
            this.add(send);
       this.add(jscrollpane);
        public void actionPerformed(ActionEvent evt) {
             Send();
       public void Send(){
            try {
       url=new URL("http://www.developpez.com");
       conn = url.openConnection();
       reader = new BufferedReader(new InputStreamReader(conn.getInputStream()));
    while ((ligne = reader.readLine()) != null) {
                     lignes.addElement(ligne);
        }//fin bloc try
       catch (Exception e) {
                   lignes.addElement("probleme1");     
                finally{
                   try{reader.close();}catch(Exception e){ lignes.addElement("probleme2");}
       }// fin Send
          public void paint(Graphics g) {
                super.paint(g);
    }// fin Applet

    As for tracking the source of your problem your applet sucks.
    Try e.printStackTrace() on a cought exception and check the (full) trace.
    url=new URL("http://www.developpez.com");
    Unless yor applet is on www.developpez.com this will throw an exception in an unsigned
    applet without special policies.
    Signing applets:
    http://forum.java.sun.com/thread.jsp?forum=63&thread=524815
    second post and last post for the java class file
    http://forum.java.sun.com/thread.jsp?forum=63&thread=409341
    4th post explaining how to set up your own policy with your own keystore

  • Same command works on the server but not on the workstation

    Scenario
    Exchange 2010 sp3
    Name                           Value
    CLRVersion                     2.0.50727.4984
    BuildVersion                   6.1.7600.16385
    PSVersion                      2.0
    WSManStackVersion              2.0
    PSCompatibleVersions           {1.0, 2.0}
    SerializationVersion           1.1.0.1
    PSRemotingProtocolVersion      2.1
    Worstation:
    Name                           Value
    PSVersion                      4.0
    WSManStackVersion              3.0
    SerializationVersion           1.1.0.1
    CLRVersion                     4.0.30319.18063
    BuildVersion                   6.3.9600.16406
    PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0}
    PSRemotingProtocolVersion      2.2
    I input a command from my workstation using ISE
    get-exchangeserver | Where-Object {$_.IshubtransportServer -eq $True} | Get-MessageTrackingLog -Start (get-date).AddHours(-2) -Sender '[email protected]'
    Error:
    The input object cannot be bound to any parameters for the command either because the command does not take pipeline input or the input and its properties do not match any of the 
    parameters that take pipeline input.
    The Exact same command from the Server works.
    In my profile I have the following:
    set-Location c:\
    $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri 'http://MyExchangeServer/powershell'
    import-pssession $Session
    Import-Module ActiveDirectory
    $host.PrivateData.ErrorForegroundColor = 'green'
    Clear-Host
    From My Workstation:
    PS C:\> Get-PSSession
     Id Name            ComputerName    State         ConfigurationName     Availability
      1 Session1        MyExchangeServer  Opened        Microsoft.Exchange       Available
    Why  does the command work on the server but not on the workstation?
    Alexis

    Hi Tiri2014,
    There are some differences between Remote PowerShell and Exchange Management Shell. You cannot use the pipeline when you run some cmdlets by using Remote PowerShell.
    Here’s a link to similar case for your reference:
    Error message when you try to pipe the result of a cmdlet into another cmdlet by using Remote Powershell in Office 365 dedicated: “The input object cannot be bound to any parameters
    for the command”
    http://support.microsoft.com/kb/2701827/en-us
    Hope it helps
    Best regards

  • Firefox does not open, but instead gives the error message, "Failed to read the configuration file." It has worked in the past, but not now.

    Firefox does not open, but instead gives the error message, "Failed to read the configuration file." It has worked in the past, but not now.
    I REINSTALL 10 TIMES SO DON'T TELL ME THAT!!!
    I'm piss because i need firefox working again so i can finish reseaching my speech in 5 days.

    Which files do you have in the defaults\pref folder in the Firefox program folder?
    *(32 bit Windows) "C:\Program Files\Mozilla Firefox\"
    *(64 bit Windows) "C:\Program Files (x86)\Mozilla Firefox\"
    See also "Other solutions":
    *http://kb.mozillazine.org/Preferences_not_saved
    Do a clean reinstall and delete the Firefox program folder before (re)installing a fresh copy of the current Firefox release.
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 22.0: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible, to cleanup the Windows registry and settings in security software.
    *Do NOT remove personal data when you uninstall your current Firefox version, because all profile folders will be removed and you lose personal data like bookmarks and passwords from profiles of other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *(32 bit Windows) "C:\Program Files\Mozilla Firefox\"
    *(64 bit Windows) "C:\Program Files (x86)\Mozilla Firefox\"
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other personal data are stored in the Firefox profile folder and won't be affected by an uninstall and (re)install, but make sure that "remove personal data" is NOT selected when you uninstall Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • The screen on my iPhone is frozen and I can access apps through Siri. The touch screen works within the apps but not in the home screen. What do I do?

    the screen on my iPhone is frozen and I can access apps through Siri. The touch screen works within the apps but not in the home screen. What do I do?

    Have you tried a reset which is similar to a computer restart and is done by pressing and holding the home button and the sleep/wake or on/off button simultaneously until you see the Apple logo and then release?

  • Site works in the app, but not in the browser.

    Hello iWeb experts,
    I've got problems.
    Last night I published my site. And while it appears, and functions, properly in my iWeb app, it doesn't do the same in Safari, Firefox, and Internet Explorer.
    Two issues...
    FONTS
    I chose Bellamie, Univers Condensed, and Marydale as my fonts. From reading these forums, I've discovered those won't wysiwyg on other computers if the fonts aren't available and open on them. So my two choices are to make every bit of text a graphic or to use a set of more universal fonts, correct? So my questions are...One, is there a list somewhere of fonts that will work in any browser? And, two, is there a short-cut, or easy way to transform type into a graphic without having to create image files?
    FUNCTIONS
    Here are the functions that work fine in iWeb but have gone haywire in all of the browsers I tested...
    • The type in one nav link appears smaller than all the rest.
    • Some links are active, others are not.
    • Rollover highlighting works on some links, but not others.
    • Most of the rollover links appear in the proper static color, a few do not.
    I've tested these functions on three Macs, one PC, and in the three browsers mentioned above. All of them show the exact same problems. So something must be going wrong with iWebs coding, or my host server musn't like iWeb.
    Any thoughts, suggestions on these two issues? Thanks much for any advice.
    John
    PS - For reference, see: www.johnrunk.com

    Fascinating, Kirk (+he types with one raised eyebrow+).
    QuickTimeKirk wrote:
    When I drag across your page most of your links do not change. The "text" portion of them doesn't change, either. Something is covering them.
    I can see that. But for the life of me, I don't know what could be covering those links. In my app, when I click in the area of the links, the type is the first item selected. Unless, possibly, it could somehow be the faint reflection of my black-and-white image (me & the ground I stand on). Hmmm...
    QuickTimeKirk wrote:
    Single click (outside the boundaries of your page contents) and an "outline" will appear. It shows the image file dimensions and locations.
    This I don't see. An outline? As in "an object outline," or as in "a list of dimensions and locations?" When I click outside my page contents, I get nothing.
    Thanks, QTK. I truly appreciate your troubleshooting here.
    John

  • Why would a rented movie work on the ground but not in the air?

    This is the craziest thing.  I rented a movie from my MacBook Pro and then transferred it to my iPad 2 for a flight.  However once I got on the plane each time I tried to open it I received a message that the movie could not be opened.  OK.  I figured I made a mistake in the transfer.  Once I got home I tried to open the movie again (in Airplane mode, just to be sure) and it loaded right up.  I didn't press play since I was leaving on another flight in two days.  Got on the flight and had the exact same problem.  Once I landed I tried it again and it loaded right up, but I didn't hit play because I have another flight on Friday.  What are the odds it will occur three times in a row?  I have 20 days left on the rental and about six more flights.  This could be fun.
    To lend a little irony to the situation the movie is "Up In The Air".  Anyone have any clue what the heck is going on?  The only variable among the two instances is that in the air I had headphones plugged in, but on the ground I didn't.

    Hi Dominique:
    First-if your mac can control the camera but not see the video,
    *Open Garageband
    *Play a note or two
    *Close Garageband
    *Open iMovie
    The camera will work now-REALLY!!
    If not, look here:
    http://docs.info.apple.com/article.html?artnum=43000
    Sue

  • Webutil - works in the form but not in the forms menu

    Hi
    Forms: 11.1.1.3
    Dbs: 11.2.0.2
    I have some code which calls webutil to do an AS to client file transfer.
    This works fine when called from a button in the form.
    If I have a menu on this form, and perform the same code to call webutil I get an error:
    oracle.forms.webutil.fileTransfer.FileTransfer bean not found WEBUTIL_FILE_TRANSFER.getMaxTransfer will not work
    So the same code will work when in the body of the form but not when in the menu.
    The forms has opened up and instantiated all of its objects at both times I try to run it. But it fails from the menu code call.
    Any thoughts on why one works and the other doesn't gratefull received.
    cheers
    Tony

    Hi Tony
    We also had the problem.
    solution:
    We have created a wrapper-form with in the webutil functionality has been implemented (with a dummy-Item).
    In the form we have created a When-Timer-Expired trigger and implemented the Filetransfer functionality. Then Exit_Form.
    This wrapper-form was then called from the menu.
    Alfred

  • I do not know why but my apple ID WORKS IN THE LAPTOP BUT NOT IN THE IPOD TOUCH

    I can use it in the laptop but not in my Ipod touch!?

    What happens when you try to use it on the iPod?

  • I can't open firefox the running but not responding window opens and says to close the existing window. I can't do that shutting down the computer doesn't do anything to help. I've done all the suggestions here. I've uninstalled and reinstalled firefox

    Firefox will not open. I get the firefox is already running but not responding window... I have tried rebooting with no help. I have tried to end the process via cntrl+shift+esc and nothing firefox is listed to end. I have tried find the app data via the run icon in the start up window, I have no run icon on this system (Acer with windows vista(?)
    == This happened ==
    Every time Firefox opened
    == The computer was hard shut down and did a improper shut down scan when it was restarted ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; GTB6.5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)

    I am having a similar problem. Running Xp.
    Latest revision of firefox.
    After using firefox for a while if I exit, parent.lock is locked and i have to reboot to reload firefox.
    I have killed all firefox applications from task manager (usually there are none). and I have tried 3 different "file unlock" programs including unlocker to no avail.
    I also recently installed a program that shows -all- open files, and parent.lock is not listed, and thus not closable/unlockable from there.

  • Sound work on the ipad but not the apps

    My son was using the Youplayer and the sound was working, then all of a sudden the sound stopped working and the sound adjustment bar disappeared

    I don't know what the Youplayer is but I assume its an app, quit the app completely and reboot the iPad.
    Go to the home screen first by tapping the home button. Double tap the home button and the task bar will appear with all of your recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Effect works in the preview, but not after export. (10.1.1)

    Hi all.
    I am new to FCP, making a simple slide show movie with some Ken Burns images, music and titles. For one image there is some color correction, Ken Burns, and I want the image to fade from Black and White to Color. I did this by adding the Black and White effect, choosing "show video animation" in the timeline and making the B&W effect gradually decrease. It works perfectly in the preview, but when I share the video, the effect is always missing (it just stays B&W). I have tried:
    Undoing and redoing the effect
    Exporting to different formats
    Turning off background rendering and deleting render files
    to no avail. Any thoughts?
    Thanks in advance!

    I'm hoping to avoid updating until after this movie is delivered. I find it best not to tinker with stable software mid-project. Maybe if I get desperate enough I'll give it a whirl, though.

  • I have a new iPod touch and an iPad all my videos work on the iPod, but not on the iPad.  What am I doing wrong when I syn with iTunes ?

    iPad 2 does not show videos.  I just get a black screen when I hit the video app.  The videos show as being loaded when connected to iTunes. 

    I have the same problem - it is maddening. I rely on this iPad for work so this is not just an annoyance! The above solutions of changing the appleid on the device or on the website do not work.
    The old email address no longer exists - I haven't used it in a year probably and I no longer have the account.  I logged into the appleid website and there is no trace of the old email address so there is nothing that can be deleted or changed there.  On the iPad there is no trace of the old email address so nothing can be deleted there either. I have updated the iPad software and the same problem comes right back.  Every 2 seconds I am asked to log in using the old non-existent email.  The device is currently useless.
    The only recent change to anything was the addition of an Apple TV device, which was set up using the correct login and password.
    Does anyone have any ideas? The iPad has been backed up to the iCloud so presumably it now won't recognize the current iCloud account? So restoring may notbe an option?

Maybe you are looking for