Boot Camp 2.1 upgrade HELP!

I have been trying to update my Boot Camp to 2.1, and I have experienced the issue in the following support article.
http://support.apple.com/kb/HT1845
The article suggest that I do the following.
In Windows, start a command prompt (cmd.exe, sometimes referred to as a command shell). Use Administrative rights if running Windows Vista.
Type one the following command lines in the command shell:
For Windows XP, type: msiexec /update <path to the .msp file>\BCUpdateXP.msp
Can someone give me a dummies guide to how this can be done?
How do I launch "cmd.exe"?
What is <path to the .msp file>?
Thank you!

For anyone interested in the answer to this issue, I have summarized a quick fix.
1)
“Cmd.exe” can be accessed via the “Start” menu and “Accessories” in Windows XP.
2)
To get the “path to file”, simply drag the icon of the update into cmd.exe, and the path will be shown in its proper command sequence.

Similar Messages

  • Cannot install Boot Camp 3.2 upgrade for Windows 7 64 bit

    I recently installed Windows 7 64 bit on my macbook. I also installed Boot Camp 3.0.1 after Windows 7 installation, however, WiFi did not work. Therefore, I needed to upgrade to the latest Boot Camp 3.2. However, when I tried to install Boot Camp 3.2 upgrade for Windows 7 74 bit, I got an error message saying that I needed Boot Camp 3.1 installed first. I CANNOT find Boot Camp 3.1 upgrade for Windows 7 64 bit on Apple website at all. Can someone please help me on this? Is there a way to get the complete Boot Camp 3.2 package that can simply be installed on version 3.0.1??

    here is the link to bootcamp 3.1 for windows 7 64 bit http://support.apple.com/kb/DL1336 .. and no there is no package that can be applied to the windows side to go from 3.0.1 to 3.2

  • Boot camp lost after upgrading to Yosemite from mountain lion

    I lost my windows7 boot camp after I upgrade to Yosemite from mountain lion. When I press ALT when rebooting there is no more alternative to boot for window anymore. I did read some thread about this but my case is different since when I tried to type 3 steps(diskutil.......etc)  as LonerT user answers it did not work. The attached files here are what I faced with. Please help. I have a lot of important files in windows

    If you look at the GAP between GPT3 and GPT4 it is start/size of 782929176/37595880 but the NTFS header starts at 782929920 according to your Testdisk output shown here.
    MS Data                782929920  976773112  193843193
    The difference is 782929920 - 782929176 = 744 bytes. You will need to delete the current GPT4 and recreate a new GPT4. Please stop if you see any error messages and post here.
    1. Delete the old entry and create a new entry at GPT#4.
    sudo gdisk /dev/disk0
    p
    d
    4
    n
    4
    782929920
    976773112
    0700
    p
    w
    y
    Here is an example of the delete/new...
    Command (? for help): d
    Partition number (1-4): 4
    Command (? for help): n
    Partition number (4-128, default 4): 4
    First sector (34-1954210086, default = 1454210080) or {+-}size{KMGTP}: 1454211072
    Last sector (1454211072-1954210086, default = 1954210086) or {+-}size{KMGTP}: 1954209791
    Current type is 'Apple HFS/HFS+'
    Hex code or GUID (L to show codes, Enter = AF00): 0700
    Changed type of partition to 'Microsoft basic data'
    Command (? for help): p
    Disk /dev/disk0: 1954210120 sectors, 931.8 GiB
    Logical sector size: 512 bytes
    Disk identifier (GUID): 6ED0C429-00D1-4759-B50E-04B6FB80D0E3
    Partition table holds up to 128 entries
    First usable sector is 34, last usable sector is 1954210086
    Partitions will be aligned on 8-sector boundaries
    Total free space is 1293 sectors (646.5 KiB)
    Number  Start (sector)    End (sector)  Size       Code  Name
       1              40          409639   200.0 MiB   EF00  EFI System Partition
       2          409640      1452940543   692.6 GiB   AF00  Customer
       3      1452940544      1454210079   619.9 MiB   AB00  Recovery HD
       4      1454211072      1954209791   238.4 GiB   0700  Microsoft basic data
    2. This is a tedious process and you want to check after the second 'p'rint command that it looks reasonable, before the 'w'rite and 'y'es to confirm.
    3. You will need to reboot after the change, because the disk you are booted from is the one being modified. Reboot will rebuild disk0s4 using the start/end you entered.
    4. Run the dd command - sudo dd if=/dev/rdisk0s4 count=1 2>/dev/null | hexdump -C and check that the first line contains "R.NTFS".
    5. Once you have a working GPT#4, a new hybrid MBR needs to be created which will overwrite what you see in your Fdisk output. This is also done using GPT Fdisk (Gdisk). Your numbers will look different than what are in the following example. In most cases, you will use the default except entry 4, which should have a 'y' for bootable flag.
    sudo gdisk /dev/disk0
    GPT fdisk (gdisk) version 0.8.10
    Warning: Devices opened with shared lock will not have their
    partition table automatically reloaded!
    Partition table scan:
      MBR: hybrid
      BSD: not present
      APM: not present
      GPT: present
    Found valid GPT with hybrid MBR; using GPT.
    Command (? for help): p
    Disk /dev/disk0: 490234752 sectors, 233.8 GiB
    Logical sector size: 512 bytes
    Disk identifier (GUID): 59BDFEEB-1EB4-4529-94FE-3CBC2C3CD513
    Partition table holds up to 128 entries
    First usable sector is 34, last usable sector is 490234718
    Partitions will be aligned on 8-sector boundaries
    Total free space is 2604 sectors (1.3 MiB)
    Number  Start (sector)    End (sector)  Size       Code  Name
       1              40          409639   200.0 MiB   EF00  EF
       2          409640       401060383   191.0 GiB   AF05  Macintosh HD
       3       401060384       402329919   619.9 MiB   AB00  Re
       4       402331648       490233848   41.9 GiB    0700  Microsoft basic data
    Command (? for help): r
    Recovery/transformation command (? for help): h
    WARNING! Hybrid MBRs are flaky and dangerous! If you decide not to use one,
    just hit the Enter key at the below prompt and your MBR partition table will
    be untouched.
    Type from one to three GPT partition numbers, separated by spaces, to be
    added to the hybrid MBR, in sequence: 2 3 4
    Place EFI GPT (0xEE) partition first in MBR (good for GRUB)? (Y/N): y
    Creating entry for GPT partition #2 (MBR partition #2)
    Enter an MBR hex code (default AF): AF
    Set the bootable flag? (Y/N): n
    Creating entry for GPT partition #3 (MBR partition #3)
    Enter an MBR hex code (default AB): AB
    Set the bootable flag? (Y/N): n
    Creating entry for GPT partition #4 (MBR partition #4)
    Enter an MBR hex code (default 07): 07
    Set the bootable flag? (Y/N): y
    Recovery/transformation command (? for help): w
    Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
    PARTITIONS!!
    Do you want to proceed? (Y/N): y
    OK; writing new GUID partition table (GPT) to /dev/disk0.
    Warning: Devices opened with shared lock will not have their
    partition table automatically reloaded!
    Warning: The kernel may continue to use old or deleted partitions.
    You should reboot or remove the drive.
    The operation has completed successfully.
    6. a. Test 1 - Can you see your Bootcamp volume in Finder.
        b. Test 2 - Can you files in the Bootcamp volume?
        c. Test 3 - Can you see Bootcamp in your System Preferences -> Startup Disk.
        d. Test 4 - If Test 1-3 are successful, select Bootcamp and click on Restart. You may need Windows startup repair, if you see a hanging underline cursor at the top left corner of your screen. In most cases, it is not required.
    Here is an example...
    Command (? for help): d
    Partition number (1-4): 4
    Command (? for help): n
    Partition number (4-128, default 4): 4
    First sector (34-1954210086, default = 1454210080) or {+-}size{KMGTP}: 1454211072
    Last sector (1454211072-1954210086, default = 1954210086) or {+-}size{KMGTP}: 1954209791
    Current type is 'Apple HFS/HFS+'
    Hex code or GUID (L to show codes, Enter = AF00): 0700
    Changed type of partition to 'Microsoft basic data'
    Command (? for help): p
    Disk /dev/disk0: 1954210120 sectors, 931.8 GiB
    Logical sector size: 512 bytes
    Disk identifier (GUID): 6ED0C429-00D1-4759-B50E-04B6FB80D0E3
    Partition table holds up to 128 entries
    First usable sector is 34, last usable sector is 1954210086
    Partitions will be aligned on 8-sector boundaries
    Total free space is 1293 sectors (646.5 KiB)
    Number  Start (sector)    End (sector)  Size       Code  Name
       1              40          409639   200.0 MiB   EF00  EFI System Partition
       2          409640      1452940543   692.6 GiB   AF00  Customer
       3      1452940544      1454210079   619.9 MiB   AB00  Recovery HD
       4      1454211072      1954209791   238.4 GiB   0700  Microsoft basic data

  • Screen flickers after boot camp 2.1 upgrade

    I have been running boot camp 2.0 and WinXP for a few weeks on my iMac 24" 3.06 Ghz 4 Gb running 10.5.5. I had installed the nvidia 177.98 drivers and they improved gaming performance and work great.
    I installed the boot camp 2.1 upgrade and the video drivers changed back to the boot camp 2.1 drivers. I re-installed the nvidia 177.98 drivers.
    I now have two issues:
    1. the monitor is listed as generic plug and play. Is there a driver for the iMac 24" display?
    2. My room is dark so I use F1 to reduce the screen brightness. The whole screen flickers or flashes continuously. IF i have the brightness up near make the flickers or flashing stops. Anyone sen this or have any thoughts?
    If i can't stop the flickering and flashing, I will eventually delete the WinXP system and re-create it and stick with boot camp 2.0.
    ..Bob

    Before you re-do everything consider other options.
    This is the procedure for uninstalling and installing drivers. A program called driver sweeper is required. To uninstall your old drivers you must boot into safe mode, uninstall your old drivers, use driver sweeper to eliminate any remaining fragments of your driver and then install new driver.
    http://www.guru3d.com/category/driversweeper/
    http://forums.guru3d.com/forumdisplay.php?f=29
    Maybe you need to do 2.1 first? or use later drivers?
    nVIDIA ForceWare X 179.13 for Windows XP/2K 32bit
    http://www.laptopvideo2go.com/drivers/xp/179.13
    In the future, you might want to use something to regularly backup, but for now, WinClone can take a full snapshot image for restore, and runs in OS X. DataBackupPC from Prosoft Engineering (Data Rescue II folks) or similar backup / cloning software (Acronis doesn't support GPT and EFI, so no Mac support).

  • Boot Camp Windows 7 download help?

    So i just used boot camp to download windows 7 onto my macbook air, and everything worked out fine… or so i thought. The windows 7 runs smoothly and everything, and the reason I wanted Windows on my mac is so that I could play online games which like 90% of them don't work on mac… So i go to download a game I have been wanting to play, and it says I need to download adobe flash first. So when I go to download adobe flash, it says there is an error, and that I have no available disk space in the C drive !!(i am pretty sure it was the c drive)... so ***?!?! I just gave 20 GB to windows 7 and it says i have NO AVAILABLE DISK SPACE?!! I am so confused… so please help…. why after i just partitioned 20 GB to windows 7 on my mac computer does it say that there is no available disk space?

    20gb way too small, if you're going to game you should give windows at least 60gb
    also disable hibernation and the page file (google) on your air after getting windows installed

  • Lost Boot Camp partition after upgrading to OS X Mavericks

    History:
    I had Windows 8 installed on Boot Camp. For some reason I had to enable Bit Locker in Windows that required me to create a partition using Windows Disk Utility. The Windows Disk Utility created the partition but then there was mismatch between GPT and MBR Records.
    The system was working as expected.
    What Happened:
    I decided to upgrade my OS X to the latest version Mavericks 10.9, that owerwritten the MBR Records and updated GPT I guess.
    The Windows BootCamp partition disappeared. Only OS I could use is Mac OS X.
    Current Situation:
    I have been trying many tools so might have further spoiled the situation.
    Out put from some of the utilities
    sudo fdisk /dev/disk0
    Disk: /dev/disk0          geometry: 31130/255/63 [500118192 sectors]
    Signature: 0xAA55
             Starting       Ending
    #: id  cyl  hd sec -  cyl  hd sec [     start -       size]
    1: EE    0   0   2 - 1023 254  63 [         1 -     409639] <Unknown ID>
    2: AF 1023 254  63 - 1023 254  63 [    409640 -  195312496] HFS+       
    3: 07 1023 254  63 - 1023 254  63 [ 196993024 -  302407680] HPFS/QNX/AUX
    4: 07 1023 254  63 - 1023 254  63 [ 499400704 -     714752] HPFS/QNX/AUX
    sudo gdisk /dev/disk0
    print
    Disk /dev/disk0: 500118192 sectors, 238.5 GiB
    Logical sector size: 512 bytes
    Disk identifier (GUID): 67A9C2D9-CEE1-49DD-8EE8-84881E7456AC
    Partition table holds up to 128 entries
    First usable sector is 34, last usable sector is 500118158
    Partitions will be aligned on 8-sector boundaries
    Total free space is 2013 sectors (1006.5 KiB)
    Number  Start (sector)    End (sector)  Size       Code  Name
       1              40          409639   200.0 MiB   EF00  EFI System
       2          409640       195722135   93.1 GiB    AF00  Apple HFS/HFS+
       3       195722136       196991671   619.9 MiB   AB00  Apple boot
       4       196993024       500117503   144.5 GiB   0700  Microsoft basic data
    TestDisk Output
    Disk /dev/disk0 - 256 GB / 238 GiB - 500118192 sectors (RO)
         Partition               Start        End    Size in sectors
    >P EFI System                    40     409639     409600 [EFI]
    P Mac HFS                   409640  195722135  195312496
    P Mac HFS                195722136  196991671    1269536
       Mac HFS                196991676  198261211    1269536
       MS Data                196993024  500117503  303124480
       MS Data                498685953  499400704     714752
       Mac HFS                498848616  500118151    1269536
       MS Data                499400704  500115455     714752
    sudo gpt -r -vv show /dev/disk0
    gpt show: /dev/disk0: mediasize=256060514304; sectorsize=512; blocks=500118192
    gpt show: /dev/disk0: PMBR at sector 0
    gpt show: /dev/disk0: Pri GPT at sector 1
    gpt show: /dev/disk0: Sec GPT at sector 500118191
          start       size  index  contents
              0          1         PMBR
              1          1         Pri GPT header
              2         32         Pri GPT table
             34          6        
             40     409600      1  GPT part - C12A7328-F81F-11D2-BA4B-00A0C93EC93B
         409640  195312496      2  GPT part - 48465300-0000-11AA-AA11-00306543ECAC
      195722136    1269536      3  GPT part - 426F6F74-0000-11AA-AA11-00306543ECAC
      196991672       1352        
      196993024  303124480      4  GPT part - EBD0A0A2-B9E5-4433-87C0-68B6B72699C7
      500117504        655        
      500118159         32         Sec GPT table
      500118191          1         Sec GPT header
    Thanks a ton in advance.

    Further Information:
    I haven't resolved the issue yet and still working on it.
    The TestDisk detailed search revealed following information:
      Mac HFS                196991668  198261203    1269536
    >  Mac HFS                196991676  198261211    1269536
       MS Data                196993024  500117503  303124480 - found using backup sector
       MS Data                498685953  499400704     714752- found using backup sector
       Mac HFS                498848616  500118151    1269536- found using backup sector
       MS Data                499400704  500115455     714752
       MS Data                499473315  499479488       6174- found using backup sector
       MS Data                499479488  499485661       6174 [Boot]
    Thank you.

  • I have os x 10.6.6 and I need to remove a partition from boot camp and I no longer have a boot camp assistant...HELP!!!

    HELP!     You've heard of builders who never get their house finished?  Well, I have a husband who could do this and a friend of my husband's who can also but they REFUSE to help me or at least keep forgetting (conveniently).  I'm at wits end and am contemplating taking it to the shop.  UGH!!   I no longer have a boot camp assistant (I tried to do this before last year and gave up and bought a pc as my work programs wouldn't work with Mac.)  What can I do?
    Thank you!!!!!

    Niels approach to get the BootCamp Assistant back is recommended because usually the correct way to remove your Windows partition is to use the BootCamp Assistant again which should give you the option to remove the made Windows partition and revert back to one OSX volume.
    After that's done a reboot of your Mac might be advisable.
    Only if that's not working (whatever the reason) :
    1) boot your Mac from your OSX install DVD
    2) choose your language and then 'ignore' (cancel) the installation
    3) from the Top Menu (Utilities) start Disk Utility (DU)
    4) in DU click on your harddisk (not any partition) in the left pane (the first item listed)
    5) in the right pane use the 'Partition'-Tab
    6) click to highlight on the ex-Windows partition you want to delete
    7) click on the small '-' Button at the bottom
    That should delete your former Windows partition
    After that's done successfully
    8) Drag the partition separator line until it encompasses the entire drive and then select apply.
    9) Quit Disk Utility
    10) reboot your Mac from your harddisk.
    Since you are 'fumbling' with your OSX partition you should consider having/making a backup of it before trying the a.m. procedure. Just in case.
    Stefan

  • Installed Vista 64 however boot camp drivers dont work - Help

    I have a Macbook Aluminum with 4 gb ram.
    I just installed vista 64 bit however - i can get Boot camp drivers to run.
    Please help someone.

    Mac OS X 10.5.4 DVD BootCamp included drivers
    http://support.apple.com/kb/HT1999
    Limited list of Macs that officially support 64-bit Vista
    http://support.apple.com/kb/HT1846
    What does happen when you insert your Leopard/OEM 10.5.x DVD?

  • Boot Camp Questions, Bob Maher Help!

    I have Boot Camp running on my MBP, I must say it was a very easy install, just took some time. The speed just knocks my socks off!
    I do have some issues though, Bob Maher, need your help.
    Does XP sleep on your MBP on its own or do you have to do it manually? I have to do it manually.
    Does your Display brightness go to max when you boot into XP? Mine does.
    Does your bluetooth connect to your Razr V3? Mine does but only via USB. Bluetooth sees it but does not allow Motorola Phone Tools to connect.
    Any input would be appreciated!
    William
    PS: I can live with this at present but if you have ideas to remedy the issues I would like to know, thanks!

    William:
    I have read that "sleep" is a problem at the moment with running XP and that it is not a good idea to put it to sleep, by closing the lid, and putting it in it's case. It will get horribly hot, which chould permanently damage your battery.
    The Display Brightness is controlled with a little icon on the Task Bar - it looks like a screen. If you set it mid way, and shut down and start back up - it remains that way - on mine anyway.
    I have not attempted connecting Bluetooth to a phone (I have a Verizon Treo 650 - need to figure this out BTW), so I don't know. The blue tooth works fine on my BT keyboard.
    Peter:
    You have to run the network setup configurator in Network Places (join a netword something like that) for it to get "on line" - it works fine for me.
    Some General Observations:
    1) Download Tweakl UI from the PowerToys section of Microsoft and install it. It will allow you to set up all the settings correctly or to your taste...
    2) I have zero heat issues running XP. Very odd. I ran some high end decompressions (using our companies software) and there was no change in heat. The unit is downright cool!
    3) The volume is significantly louder. Maybe by 3X. I had real volume problems before the Firmware update, which solved the "general" issues, but I can't believe the difference in the XP side of things.
    4) Whatever you do, if you go the Boot Camp route, make sure you leave about 5GB's of free space. You will need it. I can't swear to it, but I think the system is using more Swap File than it ever does on a native BIOS machine.
    5) I have noticed, that when switching back to OS X, you really should shutdown completely, and not run a re-start. I find this to be true whether going from XP to Mac or Mac to XP. Don't know why, but I had some lockup issues.
    6) Be sure to download all updates! Watch that security!
    7) Use a Virus Protector and your Firewall. I happen to have an unlimited license of Norton Security (I know!) so I used that. But you may find that the "free" things are fine. I also know that the Windows Firewall meets HIPAA requirements (medical patient information) and so with that pass, it is fine for general use.
    Direct Questions can be emailed to [email protected] which I check only once or twice a day, but I'd prefer that account be used. I'm averaging fifty emails a day based on this forum!
    Bob

  • Will Boot Camp function after upgrade to Mavericks?

    Planning on upgrading from Snow Leopard 10.6.8 to Mavericks.
    I now have Windows XP on my Boot Camp partition. I also use an old version (2.0.8) of VMware Fusion to access the same BootCamp WinXP.  I rarely use Windows & I know my old version of VMware will not work. Would need to purchase a new version (6.x) for ~ $60.00. 
    But, I’m hoping I could still Option Boot into my BootCamp Windows.
    Am I correct? Or after upgrading to Mavericks, will I be unable to boot into Windows w/o a bunch of fixes & troubleshooting?
    Regards,
    Steve

    Thanks!
    Fingers crossed.
    As soon as I purchase iBank I will do the upgrade. Will make a bootable clone just b4 I do the upgrade.
    Will run Repair Permissions as well.
    Probably late tonight or Monday.

  • What to Backup & what will happen to Boot Camp before I Upgrade??

    Hi guys,
    I am going to buy the $29 Snow Leopard Upgrade for my MacBook Pro 13" once it is available which is soon
    My MBP is 2-3 weeks old so i don't need a CLEAN install (Wipe and install) so an Upgrade will do
    but what shall i backup else than my Music, Documents & Pictures??? do I need to backup any other folders??? (Applications, Library, System...etc) or everything will stay as it is?? i am new to the Mac and specially to just an Upgrade!!
    and one more question... I have a Boot Camp partition as well, will the upgrade keep it or will it affect the partition???
    Thank you so much and enjoy your Snow Leopard
    Sul

    An external disk, at least as large as your internal drive, is your best friend when dealing with updates of any sort on a Mac. Just backup to that disk, and you can stop worrying about what happens. I like SuperDuper for this, others like CarbonCopyCloner. For my purposes, TIme Machine won't do, as I want a bootable backup.
    If anything bad happens you can either boot from the external to fix things up, or restore the external to your internal disk, and be right back where you started. Think of it as a safety net.
    I also back up important data from my laptop to my desktop, as well as to DVD. Probably unnecessary, but it gives me peace of mind.
    Went for a straight "upgrade" this afternoon. So far so good. Not noticing any odd hardware behaviour (yet). If I do, I'll wipe and reinstall "clean", then use Migration Assistant to pull my home directory and certain applications over. Good thing it's Friday, and the whole weekend is ahead to play, eh? =)

  • Do you know when Boot Camp will be upgrade and available for the iMac 3TB

    I buy a new iMac 27" with Fusion Drive 3TB for using the two platform Windows & OS X.  When I try to initiate Boot Camp for windows installation I got the message "not possible with 3TB".  Here anyone know when the update will be available for Boot Camp version 3TB?

    Nobody knows when Apple decides to make changes to the Operating System. I would suggest you take your question to the Apple Support Community for Boot Camp, and maybe they can help you with a workaround if one is available.
    https://discussions.apple.com/community/windows_software

  • Boot Camp and Win XP help

    does anyone know any way around intalling windows xp professional that doesn't have service pack 2? I tried installing my old xp with SP1 using boot camp and it wont work, I can't imagine that I have to buy a whole new windows xp to be able to use it on my macbook.

    The method is called slipstream:
    http://www.winsupersite.com/showcase/windowsxpsp2slipstream.asp

  • Boot camp assistant problems: please help!

    ok, so i was running boot camp assistant on my macbook pro (13 inch) and everything was going fine. But when it was partitioning a space for the windows portion it never showed the bootcamp partition icon to the right on my desktop. I didn't know this was a problem until I tried to install the windows on my computer and it would not work because apparently it does not have the ntfs format. I tried it again two more times, both with no applications running. Is there something I am doing wrong?

    You should post in the Bootcamp forum where the Bootcamp gurus hang out.
    http://discussions.apple.com/category.jspa?categoryID=237
    EDIT
    Once again I am thwarted by my slow typing. Follow the advice of rkaufmann87
    Message was edited by: BobTheFisherman

  • Boot Camp - How to upgrade to 3.1 with Mac OS X ?

    Hi,
    I would like to install Windows 7 on my Mac. The only problem is that Boot Camp 3.1 is required and I only have 3.0. The only updates I found are for Windows but I can't use that if they are required BEFORE the Windows installation (dummies).
    So, how do I get a 3.1 update for Mac OS X ?
    Sincerely.

    you misread. Just use Boot Camp Assistant, follow the guide, and install 3.0 off your OS X DVD after Windows is up and running.
    some macs do need special drivers beforehand.
    The name "boot camp" is used too often, for too many different things, and means something different at different contexts. Windows partition; drivers; Assistant; Boot Camp control panel in Windows.
    the pdf and Apple tech articles
    http://www.apple.com/support/bootcamp is a good start

Maybe you are looking for

  • Icons Not displaying correctly in Bridge 6

    in bridge 6. Image Icons in layered psd images do not show changes I have made – for example added or deleted layers. Also some image icon as above shows just the first layer, not added layers. I open the image in cs6 and it is correct.  The correct

  • Where is my PS CS4 Plugin folder?

    I was trying to install the complete edition for NIk Software but I was not able to locate the PLUGIN folder , where is that?  From the instruction of software installation I should locate the following: Macintosh HD: Application:  Adobe Photoshop CS

  • Roland TD9 to mac mini

    Not stricty speaking a logic issue but thought tis is probably the best place to post as it is related to midi input. Im a drummer who uses a computer to trigger VST's etc, i dont record so it is just for real time use. I have just got a mac mini (ma

  • Scanning...On...Scanning...On

    For the past few weeks (since the last update, maybe) I've been having a problem with my Wi-fi network and connecting to the internet. You can see under the Airport menu that my iMac and my Macbook are constantly scanning for the network. There is a

  • Business Service to updated Adjustment Characteristics

    Hi, In ETM 2.2 I am trying to write a business service to update adjustment characteristics. I created a BS with following details: name: CM-AdjustmentChars Service Name : CILAADUP Schema: <schema pageAction="update"> <adjustmentId mapField="ADJ_ID"/