Win7 Base Imange + Addon Images - Am I doing this right?

Ok here is my setup
ZCM 11
I created a base win 7 image. It has the default 100mb partition 1 boot
and he 2nd partition for all the main win 7 stuff (C: drive) etc
I created a Pre Boot Bundle
Image script - all it does is img -pd all to clear any existing images
Win7 Base - Zenimage
Win7 addon unattend - Zenimage (used zen image explorer to extract these
as add on image)
Win7 addon nwclient - zenimage (used zen image explorer to extract these
as add on image)
BUT i think when the above runs it is placing the addon images (or
trying to) to the first partition when it should be placing it in the
2nd partition.
How can I do this correctly
IF i do it in aenworks maintenance mode using the gui manually it works
(cause I selected advanced options to make sure ADDON was select)
how do I do that in the bundle?
Any ideas suggestions

I create the Windows 7 image with both the 100mb boot partition and the "c: drive" partiton already in it. The other images that you use have to be done in one of two different ways.
If you are streaming a secondary image (I do that to include the Novell and ZENWorks client files) then I create the image with zmgexp with two partitions. The first partition is empty. The second contains the directories and files for the Novell and ZENWorks clients. This will always put the files that you want on the "c: drive".
If you are using addon partitions in a script, you don't have to setup two partitions in them. You can just use the command line to direct the partition in the image to whatever partition you want locally.
Here is my script that I run to push down drivers for a specific image after the main OS and Novell client images have been multicast.
Code:
# This will auto detect the System Model and install appropriate image #
#Path for driverbase on server sleszen:/var/opt/novell/zenworks/content-repo/images
driverbase=addons/
#Set cpumodel
cpumodel=`dmidecode -s system-product-name`
#Model specific image to Windows partition (p2)
img rp $PROXYADDR "$driverbase$cpumodel.zmg" a1:p2
reboot
The relevant line is - img rp $PROXYADDR "$driverbase$cpumodel.zmg" a1:p2
This directs the image partition a1 to the local partition p2

Similar Messages

  • Resizing an image: am I doing this right?

    Hi All,
    I'm writing a small tool to resize images. Here's what I've come up with (for the purposes of example I've hardcoded the dimentions:
            try {
                //String source="input.jpg";
                //String destination="output.jpg";
                BufferedImage SourceImage;
                SourceImage = ImageIO.read(new File(source));
                Image ScaledImage = SourceImage.getScaledInstance(400, 267,
                        Image.SCALE_AREA_AVERAGING);
                // Create a BufferedImage of our resized image, that we can 
                // use with ImageIO.write()
                BufferedImage DestinationImageOut = new BufferedImage(ScaledImage
                        .getWidth(null), ScaledImage.getHeight(null), SourceImage.getType());
                Graphics g = DestinationImageOut.getGraphics();
                g.drawImage(ScaledImage, 0, 0, null);
                ImageIO.write( DestinationImageOut,"jpg",new File(destination));
            } catch (Exception e) {
                System.out.println(e.getMessage() + " was the message");
                e.printStackTrace();
            }Is this the proper way to handle image resizing? I'm fairly new to Java, and I've never touched the image processing stuff before. There were two items in particular I wasn't sure about:
    SourceImage.getType()I saw that the BufferedImage constructor needed an image type, as an integer, and I had no idea what to pass it. I thought to check and see if my source image had a getType() function that returned an int, and sure enough, it did. So it seems to work... but I don't even know what's being passed or what it signifies.
    ImageIO.write( DestinationImageOut,"jpg",new File(destination));What are valid values for that second parameter? I found this in the docs:
    http://java.sun.com/j2se/1.4.2/docs/api/javax/imageio/ImageIO.html#write(java.awt.image.RenderedImage,%20java.lang.String,%20java.io.File)
    But it doesn't tell me anything besides "a String containg the informal name of the format." I guessed that "jpg" might work, and again, it seems to work, but I really just took a stab at what to put, rather than really understanding what that parameter signifies.
    Thanks for any feedback!

    The old method "getScaledInstance" works okay. With a BufferedImage you can get software acceleration. Here's a suggestion.
    import java.awt.*;
    import java.awt.geom.AffineTransform;
    import java.awt.image.BufferedImage;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    public class ImageScaling
        BufferedImage orig;
        public ImageScaling(BufferedImage image)
            orig = image;
            String[] names = ImageIO.getWriterFormatNames();
            System.out.println("ImageIO writer supported formats:");
            for(int j = 0; j < names.length; j++)
                System.out.print(names[j]);
                if(j < names.length-1)
                    System.out.print(", ");
             System.out.println();
        private BufferedImage getScaledImage(double scale)
            int w = (int)(scale * orig.getWidth());
            int h = (int)(scale * orig.getHeight());
            int type = BufferedImage.TYPE_INT_RGB;
                       // orig.getType();
                       // or choose from constants in Field Summary
                       // of BufferedImage api
            BufferedImage out = new BufferedImage(w, h, type);
            Graphics2D g2 = out.createGraphics();
            AffineTransform at = AffineTransform.getScaleInstance(scale, scale);
            g2.drawRenderedImage(orig, at);
            g2.dispose();
            return out;
        private Box getContent()
            JLabel left = new JLabel(new ImageIcon(orig));
            BufferedImage scaled = getScaledImage(0.75);
            JLabel right = new JLabel(new ImageIcon(scaled));
            Box box = Box.createHorizontalBox();
            box.add(Box.createHorizontalGlue());
            box.add(left);
            box.add(Box.createHorizontalGlue());
            box.add(right);
            box.add(Box.createHorizontalGlue());
            return box;
        public static void main(String[] args) throws IOException
            String path = "images/cougar.jpg";   // 195, 296
            ClassLoader cl = ImageScaling.class.getClassLoader();
            BufferedImage bi = ImageIO.read(cl.getResourceAsStream(path));
            ImageScaling imageScaling = new ImageScaling(bi);
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.setContentPane(imageScaling.getContent());
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    }The BufferedImage type constants are listed in the field summary of the class api.
    The supported readers and writers are available via ImageIO methods.

  • Powerpoint Mac 11.3.2 version converting to Google Docs Presentation, I'm told I need Quicktime and a compressor to view images. What does this mean?

    Starting with files in
    Powerpoint Mac 11.3.2 version converting to Google Docs Presentation, I'm told I need Quicktime and a compressor to view images. What does this mean?

    Were you using third-party software when the panic occurred? Is the panic repetitive or it just happened once? IN the latter case it could simply be a software glitch. But if it's repetitive then there's some other problem either hardware or software. Use the Console application in the Utilities folder and review the console log around the time of the panic to see if there are additional clues to the cause of the panic.
    The error indicates that the problem was a failure to respond to an interrupt by the CPU. Now this could simply be caused by a software glitch, but it could be a hardware problem related to the CPU. In the latter case the panic would probably become repetitive, in which case you would want to take the computer in for service to be sure the CPU isn't failing.

  • Does Firefox has this option (which I may not know) to click on my bookmark, link, etc. where to open a new tab without doing this right-click, it is aggravating?

    Hello, I would like to use Firefox as my default browser, but the reason I still use the old Netscape Navigator is that that clicking on my bookmarks Firefox is not opening new tab. Does Firefox has this option (which I may not know) to click on my bookmark, link, etc. where to open a new tab without doing this right-click, it is aggravating?

    Install the addon
    Open Bookmarks in New Tab 0.1.2010043001.
    https://addons.mozilla.org/en-US/firefox/addon/open-bookmarks-in-new-tab/
    Restart on installation.

  • Need help with an unusual workflow - Am I doing this right?

    Thanks for reading, I shot my footage in HD 720pn on the HVX200. The final export needs to be fitted into a 352x288 frame 'uncompressed' which I will hand to my client who will convert to .wmv and .h264 for viewing on a PC and their video playback device (hence the odd 352x288 frame size).
    So this is what I'm doing, I just need to know if I'm doing this right before I hand it to my client so I can avoid problems with formats ect.
    -First I imported the footage from the P2 card and edited it in it's native format and timeline.
    -Once finished, I export to its native format (QuickTime, Current Settings, self-contained). This creates a file size of 1.7GB.
    -I create a new sequence at 352x288 with Uncompressed 10 bit 4:2:2 as the codec (I just guessed here) and imported the self-contained video.
    -I shrink the video to fit the smaller frame and then render and export again using the current settings (352x288 with Uncompressed 10 bit 4:2:2 as the codec). Its now 4.4GB (Why is it bigger than the larger framed original file?)
    The video looks great but I'm still worried about whether my client will be able to play it back via QuickTime on PC and I'd like the file size smaller so it's easier to deliver.
    Any help to simplify or correct this workflow would be greatly appreciated.
    LP

    You don't need to go through the double export process. You can either place the edited and rendered 720p sequence in the 352x288 sequence and then export, or you can scale the image down on export in the QuickTime Conversion export module, or in Compressor. Any QuickTime can read uncompressed video.

  • Head tags in template generated pages, am I doing this right?

    http://www.saracenlanding.com/testpage.html
    I experienced the dreaded " ... locked by ... " error message when trying to insert keywords in a page generated by a dwt file. I went to the forum and found this information:
    http://forums.adobe.com/message/50942#50942
    So I enclosed the head in the cut, pasted and edited editable region markup and it seems to work.  Then I used the insert html>head tags>keywords to insert some keywords and that worked, but it put the keywords at the very top of the page. As I recall, the meta info is supposed to be inside the head section, so I cut and pasted the keyword markup into the head section, I had isolated with the editible markup and it seems to work.
    Not being the sharpest knife in the drawer on these matters, did I do this right? Have I set a trap for myself which will spring later on? Is there a better way? I only know to ask those who know more than I.
    Thanks in advance,
    Joe

    So, as far as setting it up - would I use the cd
    included with the Airport box or the existing apps on
    my computer?
    Use the CD. There is newer software on it.
    Does it matter which computer I set up
    first? If I do the airport setup utility on the old
    mac, will the new mac automatically recognize it when
    I turn it on?
    Both macs should connect with out a problem. It doesn't matter which you setup first.
    The other thing that was running through my head was
    that it would actually be nicer to put the Airport
    base station in my office (reduce the clutter of
    stuff in the living room), but since the old mac
    doesn't have a wireless card (and I don't even know
    if I can get one anymore), is there some kind of USB
    adapter that would work to access the signal? I've
    seen a bunch of them, but most of the reviews say
    they're not very mac-friendly.
    You probably won't find a mac USB adapter becuase there usually aren't mac drivers. You could bring the old computer to the Apple Store and they can install a wireless card in there.
    15 PMB C2 Duo   Mac OS X (10.4.8)   PPC Mac Mini

  • AVCHD Camcorder to DVD Advice Needed - Am I Doing This Right?

    Hi All,
    I have a MacBook Pro 2.4 GHz Intel Core Duo with 2GB memory. I also have a Canon HG10 AVCHD Camcorder. I took a total of 2.5 hours of video footage.
    1. I attached the camcorder to my computer via USB and downloaded the movie off of my camcorder onto my laptop - this took about 2.5 hours to do.
    2. Then I wanted to make a DVD out of the footage and created a DVD in iDVD. I loaded the movie from iMovie and created a DVD - this took about 5 hours.
    3. Then I burned the first DVD - this took over 2 hours.
    4. I burned additional DVDs as gifts - and each of these took about 19 minutes.
    My questions are: Am I doing this correctly? Does one 2.5 hours of filming really need to take so long to decompress or whatever it is doing? Would I have been better off using iMovieHD? I'm sorry to sound so stupid, but I am very new to camcorders and iMovie/iDVD. Many thanks for your help and understanding.

    Let me see if I can describe it easier
    Step 1 - transferred 2.5 hours of video footage from my Canon HG10 to my MacBook Pro (took about 2.5 hours to do) this was put into iMovie '08 with no problem
    Step 2 - I created a DVD in iDVD with 1 song out of iTunes as the Main Screen of the DVD, created 1 chapter for the Movie itself, and 1 Slideshow of pictures with 1 song from iTunes. I then pressed burn DVD - which it took over 5 hours to burn the first DVD
    Step 3 - additional DVDs took 19 minutes to burn after the first one.
    I hope this helps. I might of messed up on my first post. Thanks!

  • Data Migration to external hd. am i doing this right??

    So i just got a new lacie 320gb hd and have some questions about using it. I clicked and dragged all my logic pro projects into the hd and it copied them all to it just fine. I did the same with the logic pro application itself. Now what this did was COPY everything i dragged in there. all the originals still exist in there original place on my Hard drive. Is this safe to delete the originals now that theyre in another spot? Or is there a different way i should be doing this? I want to stray away from using my macbook pro's hd for all the intensive audio processing going on. what should i do with logic pro itself? do i keep it on my regular hd and run it from my external hd? any help from anyone that did this would be most appreciative.

    Hi there,
    I would tend to leave the Logic program files on your main HD. Performance on those is generally not a problem. Also, upgrades, third party software and other processes may fail to find Logic properly if you move it. Of course they should find Logic on an external disk but bugs happen.
    Sounds like the copy that you did only took the program package across. There are plenty of other files (preferences, Library support, instruments etc) that are not in the program package so you've just orphaned them and that's probably a mistake. Just delete the external package and all should be well. In fact, just to make sure, disconnect the external and make sure that you can still run Logic OK completely from the main HD. If that works, delete the external.
    All projects should be on your external file, for sure. The question is what about Software Instrument samples and loops (if you use them).
    If your system runs well enough as it is, then don't make any more changes. If you're getting problems, you may consider moving samples and loops of the main disk onto your external. There are plenty of threads around on that topic but it's very easy. See this:
    http://discussions.apple.com/thread.jspa?messageID=5656833
    Hope that helps.
    Pete

  • Can someone please verify if I'm doing this right?

    OBJECTIVE:
    Write a program that asks a user to enter in one input, either "true" or "false". Simulate the NOT gate in this program. After the user has entered in an input, ask them if they would like to continue or not; continue the program if they reply 'y' and stop if they reply 'n'.
    I think this program is pretty easy, but I am not sure if I am doing it right. My understanding of the NOT gate is that if someone enters in something, it must be the opposite. So since the user is only being asked one question, and to only answer "true" or "false", the answer would be opposite to what they input right? Below is the source code of my program for the above objective, please check to see if it is right :).
    // The "Chap3Program12" class.
    import java.awt.*;
    import hsa.Console;
    public class Chap3Program12
        static Console c;           // The output console
        public static void main (String [] args)
            c = new Console ();
            String input;
            char response;
            do
                c.println ("Please enter either 'true' or 'false'");
                input = c.readString ();
                c.println ();
                if (!(input.equals ("true")))
                    c.println ("You have entered " + input + ".  The result is true.");
                else
                    c.println ("You have entered " + input + ".  The result is false.");
                c.println ();
                c.println ("Do you wish to stop y/n?");
                c.println ();
                response = c.readChar ();
            while (response != 'y');
            c.println ();
            c.println ("This program has terminated.  Have a nice day!");
        } // main method
    } // Chap3Program12 class

    Sorry, I didnt post that properly, let me repost it.
    I compiled it and it works, but Im not sure if i am using my NOT gate properly, and if my program is satisfying the Objective.
    if (!(input.equals ("true")))           
    c.println ("You have entered " + input + ".  The result is true.");           
    else           
    c.println ("You have entered " + input + ".  The result is false.");           
    }If not true = false, then that means my if statement is wrong? My if statement says: If input is NOT equal to true, then the result is true. Shouldn't the result be false then? If not false = true, then that means my statement after else needs to be changed, because if not false = true, the result should be true, not false?

  • Outlook, IMAP and ... am I doing this right?

    Hi, just joined this forum as I found some useful info here after searching google for info.
    From what I've found out and what I've achieved, I may be doing this wrong, or not able to achieve what I want to achieve.
    I access my email, via various email addresses (BTInternet, Yahoo, my own domain, gmail etc) from Outlook at home (which stores everything permanently), Webmail, and mobile phone.
    I used to have outlook set up, everything via POP, to nab everything off the server as soon as I send/receive so that it isn't there any more. I've changed this now so it leaves the last 14 days of emails on the server so I can still access them from my phone and webmail after I've 'downloaded' them to outlook. So far so good.
    However I have a problem with 'sent' mail. Any email I send stays in the 'sent' box of whatever I sent it from, so I have some Sent mail sat in my Outlook sent folder, some in my webmail sent folder and some in my phone sent folder.
    I'd like to keep these all together.
    Now my limited understanding of such matters lead me to believe that IMAP mail would be a solution, however having fiddled with it a while I'm not so sure it is.
    After searching around I found the instructions on how to do so here: http://community.bt.com/t5/BB-Out-About/Re-IMAP-se​rvers-on-BTInternet-email/td-p/3045/page/3 which refers to setting up IMAP on a mobile device. However setting it up the same way in Outlook gives me a whole new Personal Folder, and only shows me what's on the server (it doesn't 'sync' in the way POP does, I THINK...) and I am unable to successfully send anything - any email I write through that account sits in my my main 'Outlook' Personal folders Outbox, and goes nowhere.
    What I want is something that works transparently like POP access did - all my emails from various services coming down into my one inbox, then shuffled about to various folders depending on various Outlook rules, and being stored permanently on my machine, but now I ALSO want the ability to have a centralised 'Sent' folder accessible from anywhere.
    Is what I want achievable? And if so, how do I do it?
    Thanks!

    Have a look at this discussion...
    http://discussions.apple.com/thread.jspa?threadID=1150785&tstart=0

  • Setting up development on device - am I doing this right?

    I'm just setting up to do development on the device. I've tried 2 things and I am stuck on both. What I would like to know is if I seem to be doing this the right way.
    1. I made a certificate and uploaded it through the Program Portal. I'm signed up as an individual so I guess that I'm the "Agent" etc. I expected to be able to approve my own CSR. I got the email that is sent to admins that a CSR is pending and I should go approve it. However when I login to the portal I and go to Certificates/Development I see the request is pending but I don't see an option to approve it (my own request). I have downloaded the WWDR intermediate certificate and installed into the Keychain. So I seem to be stuck in this direction.
    2. I tried to run the Development Provisioning Assistant. I completed the first page (app id) and the second (device description + device ID) entering the device id I got from Xcode. When I click continue a dialog pops up in Safari "An unknown error has occurred" / "please try again" and the Assistant screens exit.
    Can somebody who signed up to the developer program as an individual tell me if I am seem to be doing this the right way?
    Many thanks.
    PS. note this is a bit of a repost but last time I think I was asking the wrong question

    There are many ways to do many things. Seems you have this written well enough. If it works, don't try breaking it just to see if you can make it better.

  • Win7/Base Wim/Office 2010 Patches/ Hangs deployment/Admin rights lost

    Hi All, sorry for the sort of confusing title. 
    My issue is as follows.  I have a task sequence set up to build a Base Wim for Win7EntX64 which will include office 2010x86 and run ZTIWindowsUpdate for patches.  I'm having issues with the task sequence not continuing once Office installs and
    ZTIWindowsUpdate runs.  At this stage I notice that admin rights are lost.  So my task sequence breaks down as follows:
    1. Win7SP1 applies, (including large protion of patches in Packages)
    2. Boot into OS, ZTIWindowsUpdate runs to patch OS
    3. Office 2010 SP2 x86 is installed
    4. ZTIWindowsUpdate runs to patch Office and any stragglers
    5. "Imaging" portion of the task sequence runs, Prep, sysprep,capture
    I've included the tail end of some of my log files.
    smsts.log
    bdd.log
    I don't see any major issues with the logs but I'm not an expert at reading them.  
    Any help anyone can provide will be greatly appreciated.
    Thank you
    ***Edit***
    Almost forgot, I'm running my image build/capture in Win8 hyper-v. Using MDT 2012 U1 and ADK 8. 

  • Am I doing this right?

    Hi all - I apologize in advance if this sounds really stupid and convoluted, but this is my first foray into wireless.
    I have a 17" 1.25GHz FP imac running 10.4.8 - it also doesn't have an airport card. It's had a horrendous hardware history (not even going to get into that) and I've finally decided I can no longer count on it as my primary computer. It's been relegated to a web-surfing, online-poker-playing computer for my husband
    I bought a new 20" imac last week and should be getting it tomorrow. Along with my order, I got a new Airport Extreme base station and I'm trying to figure out the best way to make everything work together Basically I want to share the internet connection, and also have the old computer to have access to the music, photos etc on the new one.
    So this is the setup I'm contemplating: I'm putting the old one in my living room with an adapter to the HDTV (sure, he gets the 50" widescreen! LOL) - I'm going to have to stick the DSL modem and Airport out there, too. DSL modem gets connected to Airport WAN port, and ethernet cable goes from Airport to old imac. OK. I'll have the new imac in my office.
    The Airport was delivered today and it included a setup utility cd. On my old mac, I already have a Airport Admin Utility, Airport Setup Assistant, and Airport Setup Assistant for Graphite and Snow (no idea what that is). I'm guessing they're all up to date as 1. I reinstalled the OS and updates after another HD replacement last week, and 2. there are no updates in my software update window. I'm also assuming the new mac will come with these apps, too.
    So, as far as setting it up - would I use the cd included with the Airport box or the existing apps on my computer? Does it matter which computer I set up first? If I do the airport setup utility on the old mac, will the new mac automatically recognize it when I turn it on?
    The other thing that was running through my head was that it would actually be nicer to put the Airport base station in my office (reduce the clutter of stuff in the living room), but since the old mac doesn't have a wireless card (and I don't even know if I can get one anymore), is there some kind of USB adapter that would work to access the signal? I've seen a bunch of them, but most of the reviews say they're not very mac-friendly.
    Again, sorry for sounding so stupid, but just trying to figure everything out.
    Thanks for any help!
    Joanne

    So, as far as setting it up - would I use the cd
    included with the Airport box or the existing apps on
    my computer?
    Use the CD. There is newer software on it.
    Does it matter which computer I set up
    first? If I do the airport setup utility on the old
    mac, will the new mac automatically recognize it when
    I turn it on?
    Both macs should connect with out a problem. It doesn't matter which you setup first.
    The other thing that was running through my head was
    that it would actually be nicer to put the Airport
    base station in my office (reduce the clutter of
    stuff in the living room), but since the old mac
    doesn't have a wireless card (and I don't even know
    if I can get one anymore), is there some kind of USB
    adapter that would work to access the signal? I've
    seen a bunch of them, but most of the reviews say
    they're not very mac-friendly.
    You probably won't find a mac USB adapter becuase there usually aren't mac drivers. You could bring the old computer to the Apple Store and they can install a wireless card in there.
    15 PMB C2 Duo   Mac OS X (10.4.8)   PPC Mac Mini

  • Am I doing this right? Vonage and Eyehome with AirPort

    I need to get this all straightened out! I think I know what I'm doing but I need some reassurance.
    I've never done anything wireless before and I just moved into a new apartment and the cable hook up is in the closet. So, I guess I need to get my internet (Comcast) running wirelessly. That said, I also have Vonage, and need that to be connected to my modem, too. I also, have Eyehome (that I've never used before) and was thinking about putting it in my bedroom (which is again, nowhere near the cable or the computer.)
    I'm thinking that this is what I need to do (someone correct me if I'm wrong):
    I need an AirPort Extreme Base Station, and an AirPort Express.
    And assuming I have everything set up correctly for my internet and Vonage (which I do as I can make and receive calls and am posting this) just unplug the cable running from my router into my iMac and run it from my router to my AEBS. (While everything is off so that they'll all communicate when I turn them back on.) Yes?
    Then for the Eyehome just plug the AirPort Express in to the outlet in my bedroom and run the LAN cable from the Eyehome into the AirPort Express?
    Does that sound right? I really have no idea, I'm just assuming if it sounds right then it must be right.
    iMac G5 Mac OS X (10.4.7)

    I need an AirPort Extreme Base Station, and an
    AirPort Express.
    Certainly one option.
    And assuming I have everything set up correctly for
    my internet and Vonage (which I do as I can make and
    receive calls and am posting this) just unplug the
    cable running from my router into my iMac and run it
    from my router to my AEBS. (While everything is off
    so that they'll all communicate when I turn them back
    on.) Yes?
    Yes
    Then for the Eyehome just plug the AirPort Express in
    to the outlet in my bedroom and run the LAN cable
    from the Eyehome into the AirPort Express?
    That would work, however I wouldn't recommend it.
    The ethernet port is only active on a remote Airport Express when using WDS, however using WDS effectively halves the wireless bandwidth.
    Using an EyeHome really requires a lot of bandwidth to ensure smooth video playback.
    I have found using WDS that though this work, it did result in stuttering video now and then.
    I would recommend avoiding WDS and use an ethernet wireless bridge such as the Linksys WET54G.
    iFelix

  • MobileMe, .Mac, PPC, and iCloud -- oh my!  Am I doing this right?

    OK, hopefully, I'm not making this more complicated than it is.
    Right now I have:
    a ".mac" account that I use as my Apple ID because that's what I started purchasing items with in the Apple store before MobileMe came out.  So all iTunes purchases, music, movies, iBooks, etc., are under my ".mac" account.
    a MobileMe account that contains all of my calendars, contacts, etc.
    an iPhone 4 (no plans to upgrade to 4S...am waiting for next generation)
    an iPad 2 (WiFi only)
    an iMac G5 with a PPC chip running 10.5.8 (it will be awhile before I can upgrade to another computer that will have an Intel chip and get Lion -- so I'm sitting on this iMac right now).
    What I want to be able to do:
    use iCloud for mail, calendars, notes, apps, contacts, purchased music, etc. -- you know, all of the stuff iCloud is supposed to do.
    keep my contacts synced with my computer, iPhone, and iPad.
    If I understand iCloud correctly, it wants me to sign in with my MobileMe account, then on my iPhone and iPad go into the Store and sign in with my .mac account.  Then it wants me to move my MobileMe account to iCloud, but before I can do that, all of my contacts, which were in MobileMe, have been erased from my iPhone (interestingly though, all of my calendars that were synced through MobileMe are on the iPhone).
    I would like to have everything absolutely clean under one ID...I think the easiest way to accomplish what I want is to:
    "rename" my Apple ID from the ".mac" to a different name that I can also use as my iCloud info for my past and future iTunes purchases (is this possible)?
    have my iPhone and iPad "hard sync" with my computer to have my contacts, calendars, and other current MobileMe info consistent between the iPad 2, the iPhone and the computer.
    Am I making it too complicated for myself?  Is there something else I could be doing to make this process easier?  Any thoughts would be appreciated.

    Apple, if you are reading this, this APPLE ID MESS IS A DISASTER!!!  Shame on you for screwing long-dedicated customers who inadvertantly now have multiple Apple ID's like this due your switches from mobile me, to .mac to whatever else. 
    SJ is turning in his grave.

Maybe you are looking for

  • Upgrade from Final Cut 6.6 to 7

    I have upgraded my operating system to Mavericks and find that Final Cut is running renders very slowly.  Is Final Cut 7 an upgrade or does one have to buy the whole package? Is it likely that Mavericks doesn't operate well with older programs? Any i

  • Transportation Cost setting in SO, How?

    Hello All, Can somebody help me please? i want to set a transportation cost in my sales order but i have no idea how to set it up? can you help me please? please advise and let me know if there are configurations needed. Thank you. Regards, Lee T

  • Stopping execution without modal Jdialog

    Hi there, I am writing a gui that needs to wait for a button click. I used to use a modal JDialog for this, which worked fine, but I have recently changed the GUI to a wizard style, and I would like to simply redraw a Card every time, rather than hav

  • Flash 11 with Captivate 5.5

    We have been running into issues with a client's configuration - buttons not behaving correctly, etc. I've learned that they are using Flash 11.  Does anyone know of problems with Flash 11?  And why doesn't Captivate 5.5 publish to it?

  • Xrunhprof output: unknown root references

    I'm trying to profile an application with the following settings: -Xrunhprof:heap=all,depth=12,cutoff=0 Profile is successfully written, and no hprof errors are reported at runtime. Stack traces show all root references as <unknown>, which makes it h