BootCamp Update 3.2.  .exe file, Windows 7 uninstallable with cordless mouse until drivers in.   What next then?

Trying to get windows 7 to run under iMac. I am learning to fly and the best flight simulator (I'm told) is still FSX which does not run on the iMac which I made my main computer infrastructure last year.  And besides it's got the best screen in the house.  Before buying both a virgin copy of Windows 7 (expensive) and of FSX (ditto) I checked the forums and there are definitely people saying it works.
My iMac has a cordless mouse and a cordless keyboard.  I have read that the latest software which makes these work is in BootCamp3.2. 
I quote from the apple pdf on installing windows:
Step 1 : Check for updates.  In Mac OS X go to http://www.apple.com/support/bootcamp and check whether you need to update your software before you can install windows. 
Yes I do.  Can't call that URL very helpful on file selection, but OK, I worked it out.  (Though could someone tell me if ALL intervening updates need to be applied.  I had no way of telling where the full set of updates was, so I had to assume installing the latest would work.)
OK - so I need to install BootCamp_3.2_64-bit.exe
But having downloaded it, if I run it it opens in a text editor.  Why is that?  Explanation will help.  But why is there nothing at Apple on this?  It's apple software. 
Searching I found people sounding equally confused, and someone says you'll need to burn it to a disc.  That took a fair while too - but I did it.  I found the help on burning very poor.  It's hard to find how to put a file on a disk.  The defaults are all for music and films. (Tip - use Finder, not other options, when you put a blank disk in)
So I now have the bootcamp upgrade file on a DVD.  I learn (slowly) that because it is a .exe it must be run from Windows.  But I have not got windows, that is what I am trying to load.  And when I load the Windows Disc I can't get very far, because it can't cope with a cordless mouse, until the drivers are upgraded.
I am now worried that things will get worse, because the rest of the forums say you can't make Boot Camp Assistant work when there's already a partition made.  And, there is.  I made one before being trapped by a driverless cordless mouse.
I have an iMac 2.93 Ghz Intel Core i7.  8Gb 1333 MHz DDR3.  ATI Radeon HD 5750.  A cordless mouse and keyboard.  I Bought Windows 7 Home edition 64 bit.    
I'm a bit disillusioned.  I bought this hyper computer to run some number crunching simulations via an Oracle database.  The setting up was 10 - 20 times more difficult than setting up Oracle on my Dell laptop.  The simulations ran half as fast as on the laptop and appeared to be frying the iMac's own hard drive.  So I stopped.  I flirted with Times Ten - but it was unsuited to my codebase (not Apple's fault) and then gave up.  So this lovely computer is now used by my daughter to watch movies.
This is the second attempt at doing something moderately serious, and both have been very disappointing.  If you think it's worth saving someone who is about to give up on Apple completely and leave this powerhouse to an idle life of Facebook, then your assistance will be sincerely appreciated.  It's been 6 hours, a very irritating six hours, so far.

You really really do need to read the Windows 7 FAQ the Boot Camp 3.0 Installation and Setup guide for 10.6  and the Boot Camp 3.0 MacOS 10.6 FAQ  a couple of times to really get to know the whole picture.
"Boot Camp" is just a basic set of WINDOWS drivers to run Apple hardware. You install Window first, via BCAssistant to start it, then after it finish's the install and restarts into Windows then you insert the "whatever you made disk" with the Boot Camp drivers on it, it should then give you an installer window, just like on the Mac side, if you want to "Run" it or "Open as a file". (Run it)
The Apple Software Updater updates ALL the Apple files including BootCamp Assistant on the Mac, it updates the Boot Camp Assistant to look for the latest drivers to use when it gives you the option to download the files onto whatever you want to use to download onto.
BTAssistant to partition the drive, then it will boot off the Windows installer, there is no more Mac control, it's ALL Windows now, have Windows format it the way you want, then it will finish by restarting into Windows, then you install the drivers while booted in Windows.
You need a wired mouse AND keyboard just like the instructions said. If you have the earlier Magic Mouse then they suggest you plug it into the keyboard instead of the computer.
If you partitioned like the instructions said, via Boot Camp Assistant, you can install Windows anytime you want, it won't forget it's there. YOU just have to remember where it is.
If you do have problems with the partition then at the bottom of the instructions it tells you how to restore the partition back to normal then you can start over.

Similar Messages

  • Open .exe File (windows based)

    How to open an .exe file (windows based) from Form6i?

    What do you mean "open" - if you want to run a program .exe then use the HOST() built-in

  • HT5628 After running bootcamp, DVD drive is detected by Windows 8. But after installing drivers, no longer can detect. Device Manager shows that DVD drive is unplugged! Drivers in Bootcamp "removed" the DVD drive!

    After running bootcamp, DVD drive is detected by Windows 8. But after installing drivers, no longer can detect. Device Manager shows that DVD drive is unplugged! Drivers in Bootcamp “removed” the DVD drive. I think there is an issue because I reinstalled Windows 8. If I don't install driver, then I have reduced functionality (no Apple keyboard, no sound etc), but once I install driver, I lose my DVD drive.

    Hi, guys, I have had the exact same problem since the summer of 2010. Here's what I was able to find out.
    Deleting upper/lower filters, running all those Fix Ya programs and other Microsoft crap is useless. This problem is most certainly has nothing to do with registry of any software on your computer. I took my HP 9620us to a couple of repair places and, they tried a lot of things and it appears that the root of this problem is a faulty motherboard connection. Of course, it costs about 400 bucks to fix it so I'm not sure I want to pay this kind of money.
    Anyway, if somebody was able to fix it PLEASE post here to let us know. Again I am 99 per cent sure it's some piece of hardware in the motherboard.

  • Exe file not working with forced download script.

    I have a captivate file that I exported as an exe file for
    pc. It works fine when I download it from the server using the
    direct URL to the file but I don;t want people to actually see
    where it is located so I have a used a force-download php script.
    When I download it by way of the script... it downloads, but the
    file won't play. All I get is a DOS window pop up and then goes
    away. Same file...any ideas?
    The php file I'm using to force the download is below...
    <?php
    $filename = $_GET['file'];
    // required for IE, otherwise Content-disposition is ignored
    if(ini_get('zlib.output_compression'))
    ini_set('zlib.output_compression', 'Off');
    // addition by Jorg Weske
    $file_extension =
    strtolower(substr(strrchr($filename,"."),1));
    if( $filename == "" )
    echo "<html><title>Download
    Error</title><body>ERROR: download file NOT SPECIFIED.
    USE force-download.php?file=filepath</body></html>";
    exit;
    } elseif ( ! file_exists( $filename ) )
    echo "<html><title>Download
    Error</title><body>ERROR: File not found. USE
    force-download.php?file=filepath</body></html>";
    exit;
    switch( $file_extension )
    case "pdf": $ctype="application/pdf"; break;
    case "exe": $ctype="application/octet-stream"; break;
    case "zip": $ctype="application/x-compressed"; break;
    case "swf": $ctype="application/x-shockwave-flash"; break;
    case "doc": $ctype="application/msword"; break;
    case "xls": $ctype="application/vnd.ms-excel"; break;
    case "ppt": $ctype="application/vnd.ms-powerpoint"; break;
    case "gif": $ctype="image/gif"; break;
    case "png": $ctype="image/png"; break;
    case "jpeg":
    case "jpg": $ctype="image/jpg"; break;
    default: $ctype="application/force-download";
    header("Pragma: public"); // required
    header("Expires: 0");
    header("Cache-Control: must-revalidate, post-check=0,
    pre-check=0");
    header("Cache-Control: private",false); // required for
    certain browsers
    header("Content-Type: $ctype");
    // change, added quotes to allow spaces in filenames, by
    Rajkumar Singh
    header("Content-Disposition: attachment;
    filename=\"".basename($filename)."\";" );
    header("Content-Transfer-Encoding: binary");
    header("Content-Length: ".filesize($filename));
    readfile("$filename");
    exit();
    ?>

    Actually...never mind. This script creates a HUGE security
    risk....

  • HT1222 After update on Iphone4 it does't works with sim-card!!! What's the problem?

    After update to 5.1.1 (9B206) Iphone 4 show "No Sim-card". What I have to do to solve this problem?

    Having same issue with Passbook.. Unable to select anything and when tapping App Store, nothing happens..
    Is it just me or can't we remove apps within folders? Seems I have to move the app out of the folder then delete it?? Beat..

  • Boot-camp/Windows with cordless mouse and keyboard

    I am picking up my 27" quad core iMac tomorrow. In anticipation I bought the Pogue book on Snow Leopard. In it he says that you can't install Windows with the cordless mouse and keyboard but that once installed it can be used with the cordless mouse/keyboard. Will someone please tell me he is wrong .
    Thanks.
    Alan

    I used mine to install Windows. Worked just fine till the Apple Bluetooth drivers were installed, then I just had to connect a regular USB keyboard/mouse to pair the bluetooth keyboard and mouse again.
    One suggestion, after you install the Boot Camp drivers and plug in your USB keyboard/mouse, uninstall the "Apple Bluetooth" drivers (I believe there are two of them) and restart your computer. Let Windows automatically install generic drivers for the built in bluetooth, THEN pair your wireless keyboard and mouse. After that you can reinstall the Apple bluetooth drivers if you want, although I don't think it's particularly necessary. The generic drivers seem to work fine in my experience.
    You may run into trouble pairing your keyboard and mouse, if so, refer to the "Boot Camp" section on this site, there are millions of threads about it there.

  • HT5731 After following the instructions to clear a -50 error and deleted the .tmp file, I am now getting a -150 error. What next?

    After folling the instructions to clear a -50 error and deleted the .tmp file, I now am getting a -120 error. I can't find instructions to clear this...What next?

    Hello jimlcoff,
    I found a couple of articles with steps you can take when you are not able to connect to the iTunes Store.  I recommend reviewing the following articles:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Update attempt on iPad2 using Windows PC. Keep getting error 3004. What the **** is going on? Apple care not helping much. And I have downloaded latest iTunes version and restarted and it still says there's an iTunes update available for same version.

    Disgusted

    Your firewall or av software is screwing everything up.
    Turn it off.
    Straight from Apple:
    Errors 3000-3999 (3002, 3004, 3013, 3014, 3018, 3164, 3194, and so on): Error codes in the 3000 range generally mean that iTunes cannot contact the update server (gs.apple.com) on ports 80 or 443. This may be because out-of-date or incorrectly configured security or firewall software is interfering, an old version of iTunes is installed, an entry in your hosts file redirecting requests to gs.apple.com (see error 1004 above), or because of your Internet proxy settings. If you are using a proxy, try without using one or with a known-good network. If that does not resolve the issue, follow iTunes for Windows: Troubleshooting security software issues. Error 3014 may indicate that you need to free up more disk space on the computer before trying to restore again. Error 3194 most likely indicates you do not have the latest version of iTunes installed Update to the latest version of iTunes.  
    http://support.apple.com/kb/TS3694#error3004

  • I've downloaded firefox19. When I click on the exe. file I don't have a "run" option. What do I do?

    Running Win 7 on ASUS K53E notebook with 2 GHz cpu and 4GB ram. I installed software for an older digital camera and started getting "Firefox is already running....." message. I did a soft boot with no change. I uninstallled and re-installed Firefox with no change. System restore failed twice. I've run AVG and found no threats. I'm currently using IE9 but some changes have been made in it too. Don't know what's happened but I want to get it straightened out.

    Try to delete the profiles.ini file to force Firefox to create a new default profile.
    *http://kb.mozillazine.org/profiles.ini_file
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *https://support.mozilla.org/kb/Firefox+is+already+running+but+is+not+responding
    *http://kb.mozillazine.org/Profile_in_use
    If the new profile works then you can transfer some files from an existing profile to the new profile, but be careful not to copy corrupted files.
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • File window closes with link pointer

    When I use my link pointer to point to a file, the folder tree window abruptly closes. What is causing this, and how can I prevent it happening? Thanks!

    Which version of DW? Which operating system?

  • How to update boot camp in the Mac OS if it is a .exe file?

    I don't know how to update my 3.0 Boot Camp because the files available on Apple's download page are all .exe files.
    How can I do it from Mac OS since I don't have Windows installed yet?

    The downloadable files are Driver Updates and have to be used while in Windows.
    The Mac OSX BootCamp Assistant (in the Applications/Utilities folder) is not updated by these .exe files and the latest version of it is 3.0.4 (325) (OSX Snow Leopard 10.6.8).
    Boot Camp - Installation and Setup Guide (Mac OS X v10.6 Snow Leopard)
    Stefan

  • SCCM 2012 error downloading EXE files updates

    Created an Update Group with security updates for Windows 7, from 2014/Jan-Jun
    On downloading, every update with NO-EXE files, were successful.
    Every update containing EXE files got errors with this message (example with KB2871997):
      Error: There was an error adding Software Update Content to the specified package for Security Update for Windows 7 (KB2871997). Check Deployment Package permissions, or the network path to the Package folder.
    NOTES:
    1. the target folder (to host the update EXE file) is created normally, but results empty
    2. it was possible to download the EXE file updates using Internet Explorer to another folder, BUT trying to alternatively download update from this folder (as opposed to download from internet, the standard way), the same errors above result.
    Thanks

    Thanks, Joyce and Torsten
    Got PatchDownloader.log with NO error messages,
    BUT target folders result empty and SCCM Console ends operation with the error on my first post.
    Last messages on PatchDownloader.log, with NO error messages and a FINAL SUCCESSFULL (?) message:
    - Trying to connect to the root\SMS namespace on the <server> machine. Software Updates Patch Downloader 11/09/2014 10:25:30 10964 (0x2AD4)
    - Connected to \root\sms\site_001">\\<server>\root\sms\site_001
    namespace on the <server> machine. Software Updates Patch Downloader 11/09/2014 10:25:30 10964 (0x2AD4)
    - Connected to \Pacotes\Updates_Test\eb266e23-2194-4e96-bdbb-d2da966a6dfa.1\ndp40-kb2901110-v2-x86.exe">\\<server>\Pacotes\Updates_Test\eb266e23-2194-4e96-bdbb-d2da966a6dfa.1\ndp40-kb2901110-v2-x86.exe
    . Software Updates Patch Downloader 11/09/2014 10:25:31 10964 (0x2AD4)
    - Contentsource = http://wsus.ds.download.windowsupdate.com/msdownload/update/software/secu/2014/01/ndp40-kb2901110-v2-x86_9e9c5c03aefbf129dda5f03906d920c5b5f2b36f.exe
    . Software Updates Patch Downloader 11/09/2014 10:25:31 10964 (0x2AD4)
    - Downloading content for ContentID = 16801587,  FileName = ndp40-kb2901110-v2-x86.exe. Software Updates Patch Downloader 11/09/2014 10:25:31 10964 (0x2AD4)
    - Download http://wsus.ds.download.windowsupdate.com/msdownload/update/software/secu/2014/01/ndp40-kb2901110-v2-x86_9e9c5c03aefbf129dda5f03906d920c5b5f2b36f.exe
    in progress: 10 percent complete Software Updates Patch Downloader 11/09/2014 10:25:32 10320 (0x2850)
    - idem: 20, 30, 40, 50, 60, 70, 80, 90 percent complete Software Updates Patch Downloader
    - Download http://wsus.ds.download.windowsupdate.com/msdownload/update/software/secu/2014/01/ndp40-kb2901110-v2-x86_9e9c5c03aefbf129dda5f03906d920c5b5f2b36f.exe
    to C:\Users\ADM~1.FRA\AppData\Local\Temp\1\CAB88B6.tmp returns 0 Software Updates Patch Downloader 11/09/2014 10:25:37 10320 (0x2850)
    - Successfully moved C:\Users\ADM~1.FRA\AppData\Local\Temp\1\CAB88B6.tmp to
    \Pacotes\Updates_Test\eb266e23-2194-4e96-bdbb-d2da966a6dfa.1">\\<server>\Pacotes\Updates_Test\eb266e23-2194-4e96-bdbb-d2da966a6dfa.1
    to \Pacotes\Updates_Test\eb266e23-2194-4e96-bdbb-d2da966a6dfa.1">\\<server>\Pacotes\Updates_Test\eb266e23-2194-4e96-bdbb-d2da966a6dfa.1
    to <a href="file://\\\Pacotes\Updates_Test\eb266e23-2194-4e96-bdbb-d2da966a6dfa">\\<server>\Pacotes\Updates_Test\eb266e23-2194-4e96-bdbb-d2da966a6dfa Software Updates Patch Downloader 11/09/2014 10:25:38 10964
    (0x2AD4)

  • Installation update with the .exe file

    Hi all.
    Maybe somebody did install updates via the .exe file?

    hello
    I do not fit this way, because I use the format "etxtendedDesktop" and run the update from .air is not obtained.
    I try to run file with updates through
             airFile = File.applicationStorageDirectory.resolvePath(folderUpdate + '/update.air');
             function updateStart () : void {
                        appUpdater = new ApplicationUpdaterUI();
                        appUpdater.updateURL = airFile.url;     
                        appUpdater.isCheckForUpdateVisible = false;
                        appUpdater.addEventListener(UpdateEvent.INITIALIZED, updateIntializeHandler);                                                       
                        appUpdater.addEventListener(StatusUpdateErrorEvent.UPDATE_ERROR, _errorUpdate);
                        appUpdater.initialize();
            private function updateIntializeHandler(e:UpdateEvent):void {
                appUpdater.installFromAIRFile(airFile);
    but an error 2032.
    Please help, really need a solution to this problem.

  • How to set Compatibility mode of an EXE file???

    Hi,
    I'm in a bit of a pickle, got a problem with an EXE which we need to set to "Windows 2000 Compatibility Mode" using a script.
    I need to update an existing .exe file on several hundred computers, and was planning on using Group Policy to run a VBscript on login to change the properties on that .exe file so that its in 2000 compatibility mode.
    Can anyone help me knock up a quick vbsript to do this please. I've spent some time looking, but no articles on setting the compatibilty attribute of exe files.

    Hi, you can set compatibility mode via the registry for all users under:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers
    Create a REG_SZ value under this key with a name of the path to your exe, for example "C:\Apps\Myprog.exe" and then the value will be "WIN2000".
    You can script this by running regedit.exe to apply an exported .reg file, or to run reg.exe to create the values by running something like:
    REG.EXE ADD HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers /v "C:\Apps\Myprog.exe" /t REG_SZ /d "WIN2000" /f
    or you could use StdRegProv, see here.
    Hope this helps,
    Rob

  • Problem running .exe files

    I cannot run .exe files on Windows 10. A pop-up window shows a message that the .exe file I am trying to run is missing. What can I do to solve this problem ?

    Keep in mind that the Win 10 build "refresh" operations are clearing parts of the registry back to default values, so some things you've installed might end up uninstalled or only half installed after an upgrade to a new TP build.
    What EXACTLY is going wrong?  In other words, exactly what are you trying to do, and what is the exact content of the message(s) you're seeing.
    Details matter.
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options

Maybe you are looking for