How to install OS 9.2 on G4 PowerBook 15" 1.67GHz

The installation disks come with the laptop didn't include OS 9.2. But I need it for one program. Where can I get it?

Hi, agliu -
Welcome to Apple's Discussions.
The only source for Classic (OS 9) on that model is the set of disks that originally came with it, although it may not be obvious how to install it.
One or more of these Apple KBase articles may help -
Article #151871 - Mac OS X 10.3: Installing Classic
Article #301408 - Using Restore discs with computers that ship w/ OSX 10.3.7 or later
Article #86775 - Install Mac OS 9 to Use Classic Applications

Similar Messages

  • How to Install Coldfusion 8 64-bit on Small Business Server 2008 64-bit

    How to Install Coldfusion 8 64-bit on Small Business Server 2008 64-bit
    I ran Coldfusion 8 on SBS 2003 Premium for 6 months with no problems.  When we finally decided to cut over to SBS 2008, that’s when everything went to hell.  I tried for weeks to get Coldfusion 8 to install properly on the new SBS 2008 64-bit box.  During the course which, I found bits and pieces of information for Vista 64-bit and Windows Server 2008 64-bit installations.  There are some distinct differences, however, with SBS 2008 since it runs core Web applications like OWA, RWW and Companyweb.  After countless unsuccessful attempts, one of which completed corrupted the box, I found the solution.
    I have attempted in this white paper to detail the steps to assist others who may be in a similar situation.  I don’t make any warranty for the information, but so long as you follow the steps carefully you should be fine.  BTW, for those of you who say Adobe offers free technical support for licensed users, that’s not entirely true.  Like I said, I purchased CF8 and originally installed it on an SBS 2003 Premium box.  After we cut over to SBS 2008 and encountered problems, Adobe wouldn’t provide any technical support without charging.  Moreover, based on my initial conversations with Adobe’s technical team, no one seemed to know much about running 64-bit on SBS.
    From my understanding, only two versions of Coldfusion 8 can be installed in 64-bit: Enterprise and Developer.  The “normal” install (which I paid a grand for) can only be deployed in 32-bit mode – gee, THANKS Adobe!  By the way, in Developer mode only two distinct IPs can access the site in addition to the localhost.  Any additional IPs will result in a CFML error message stating that the maximum number of IPs have been exceeded.  At any rate, take your time and follow the steps to achieve a successful installation. 
    PRE-INSTALLATION TASKS
    Back Up SBS
    It’s always a good practice to backup your server before deploying any kind of major system changes.  Although this step is optional, I recommend it in case you need to restore your server for any reason.  Bear in mind, if your system ever gets totally corrupted, you cannot restore back from the twice daily incremental backup images alone.  You will need a full backup with system recovery information to restore.  Here are the basic steps:
    Click: Start > Programs > Administrative Tools.  Right-click “Windows Server Backup” and choose “Run as administrator”.
    Click “Backup Once” under Actions in the right-hand pane.
    Choose the “Different Options” radio button under Backup Options.
    Choose the “Custom” radio button.  What we’re primarily interested in here is backing up the OS – not your data partitions or attached drives.
    Select the “SYSTEM (C)” checkbox, uncheck any others.  Also, ensure that the “Enable system recovery” checkbox is selected before continuing on.
    Under ‘Specify Destination Type’, I usually select the “Local drives” radio button and point it to a Terrabyte USB drive I use for backups.  You can point this to a tape drive, or select the “Remote shared folder” radio button if you map to a UNC path to store your backup images.  Just remember, make sure that whatever path you select can readily be accessed in the event of an emergency.  Also, make sure the “Verify after writing (recommended)” checkbox is selected.
    Under ‘Specified Advanced Option’, I usually select the “VSS full backup” radio button instead of the default since I don’t use a 3rd party backup product.  If like me you rely solely on SBS for your backups, choose the full backup option.
    Confirm everything and click “Backup”.  This process may take several hours depending on the size of your system.
    Verify ISAPI Filters:
    In IIS Manager, double-click the server instance in the left-hand pane.
    In the center pane under IIS, double click the “Modules” icon to verify that the ISAPI native modules are already installed for IIS.  If it’s set up correctly you should see two entries:
    IsapiFilterModule              %windir%\System32\inetsrv\filter.dll
    IsapiModule                        %windir%\System32\inetsrv\isapi.dll
    If either of these modules are missing, you will need to re-install these (google for a solution).
    Set Up Development Environment
    Create a directory for your CFML files outside of the default Windows location (e.g., default is usually C:\inetpub\wwwroot\).  For the purpose of our install, I created a directory on a separate disk called: D:\DEV.
    Copy and paste your CFML files and directories into the new DEV root Web directory.  This will eventually be the directory where the Coldfusion installer places the CFIDE and CFDOCS folders. 
    Open IIS Manager and double-click the server instance in the left hand pane.  Expand the “Sites” folder.  Right-click the Sites folder and select “Add Web Site”.
    Enter a name in the “Site Name” box (e.g., “test-site”).  You will notice that the system will automatically create a corresponding Application Pool with the same name.  NOTE: this is important to prevent conflicts between the DefaultAppPool (needed for SBS Web apps like OWA, RWW, etc.) and the application pool needed for Coldfusion to function properly in SBS 2008.
    Point the “Physical Path” to the directory you created in step #1 above (e.g., “D:\DEV”).
    Don’t worry about testing the connection.  If you click “Test Settings” you may receive a warning that IIS cannot verify access to path (D:\DEV).  Don’t worry about this for the time being.
    Under “Host name”, enter a DNS path to your site (e.g., “dev.test-site.com”).  Click “OK”.
    Configure Application Pools for Installation
    In IIS Manager, double-click the server instance in the left-hand pane.  Click on “Application Pools” to display the list of server application pools in the center pane.
    In the “Actions” pane on the right-hand side, click “Set Application Pool Defaults”.
    Change “Enable 32-Bit Applications” - the second item from the top – from “False” to “True”, and then click “OK”.  NOTE: if you skip this step, Coldfusion will not properly create the required mappings during the install. We will change this setting back after the installation completes – more on this later.
    Modify the application.host.config File for 64-Bitness
    Click: Start > Programs > Accessories.  Right-click “Notepad” and choose “Run as administrator”.
    Open the config file from within Notepad – default location: C:\Windows\System32\inetsrv\config\applicationHost.config
    Do a search and change this one line from:
    <add name="PasswordExpiryModule" image="C:\Windows\system32\RpcProxy\RpcProxy.dll" />
    To this:
    <add name="PasswordExpiryModule" image="C:\Windows\system32\RpcProxy\RpcProxy.dll" preCondition="bitness64" />
    Restart the IIS Admin service.
    Set HTTP Compression
    According to some threads I read, the http compression module can cause errors if you don’t disable it globally. To remedy this, perform the following:
    Click: Start > Programs > Accessories.  Right-click “Command Prompt” and choose “Run as administrator”.
    At the command prompt, change directory to intetsrv by typing: cd inetsrv
    Run the following command:
    C:\Windows\system32\inetsrv>appcmd.exe set config -section:system.webServer/httpCompression /-[name='xpress']
    This will turn off HTTP compression for all sites in IIS.
    In IIS Manager, double-click the server instance in the left-hand pane.  Double-click the “Compression” icon in the IIS section of the center pane.
    Uncheck all of the boxes, then click the “Apply” button under Actions in the right-hand pane.
    Recheck all of the boxes, then click the “Apply” button under Actions in the right-hand pane.
    Restart the IIS Admin service.  This should enable compression and coldfusion to work at the same time.
    NOTE: if for some reason you need to reverse this, run the following command from the command prompt:
    C:\Windows\system32\inetsrv\appcmd.exe set config -section:system.webServer/httpCompression /+[name='xpress',doStaticCompression='false',dll='%windir%\system32\inetsrv\suscomp.dll']
    INSTALLATION TASKS
    Download the 64-bit installation package from Adobe – filename: coldfusion-801-wind64.exe.
    Right-click the file and select “Run as administrator”.
    Accept the terms of the License Agreement.
    If you have an Enterprise license, enter it.  For our purposes, just click the “Developer Edition” checkbox.
    Select “Server configuration” – the default radio button.
    I deselected all subcomponents and can’t guarantee that you’ll arrive at the same results if you select additional items like “.NET Integrated Services”.  It should be fine, particularly if you install documentation.  My preference was to keep the install as plain vanilla as possible.
    Select the directory path for Coldfusion to install into – default is :C\Coldfusion
    THE NEXT TWO STEPS ARE CRITICAL TO YOUR SUCCESS.  Unselect “All IIS Websites” and select the “Configure specific IIS Website or another web server” radio button.  Click “Add”, and then select your test Web site (e.g., “test-site”) under “IIS Web Site”.  Hit “OK”.
    Do NOT use the default directory path for the CF Administrator location (e.g., default path: “C:\inetpub\wwwroot”).  Instead, point the installer to your new DEV root Web directory (e.g., “D:\DEV”).  The bottom line, you want the installer to place the CFIDE directory and files within this folder, alongside your other CFML files and folders.
    Enter an Administrator password.
    Choose to Enable RDS, or not.  I enable this by preference but it is not required.  This allows you to make updates to files using a CFML editor directly vs. having to move/FTP the files over if you’re working remotely.  Opponents to this argue that it’s potentially less secure, but for a lower environment I don’t see this as a major concern.
    Confirm everything to kick off the install.
    If all goes well you should see a message at the end stating that the install was successful.  I recommend you uncheck the box that asks you to open the CF Administrator in the default Web browser after the install.  NOTE: we will open it a different way during the post-installation tasks.  The worst thing that will happen if you forget to uncheck the box is that you might receive an error that the command prompt hung – not a big deal – just close it and move on to the next (final) steps.
    POST-INSTALLATION TASKS
    Verify CF Installation:
    The installation will create a new folder in your program group: Start > Programs > Adobe > Coldfusion 8.  The default “Administrator” link will not work because it points to the wrong path: http://127.0.0.1/CFIDE/administrator/index.cfm. The “127.0.0.1” or “localhost” path as you may recall in IIS, points by default to the “C:\inetpub\wwwroot” directory.  Our CFIDE files, however, are located within: D:\DEV.
    To bring up the CF Administrator logon page, open up a Web browser and replace the “http://127.0.0.1” part of the path with the DNS path name to your CF environment (e.g., http://dev.test-site.com/CFIDE/administrator/index.cfm).
    This should bring up the Coldfusion Administrator Login screen.  Enter in the Administrator password you created during the install to log in and configure your application server.
    Verify that your test-site renders correctly by typing in your test URL into a Web browser (e.g., http://dev.test-site.com).
    Fix Application Pool Defaults to Re-enable SBS Web Applications:
    At this point, Coldfusion Administrator and your test CMFL Web site should be working properly.  The problem is, default SBS Web applications like OWA, RWW and Companyweb will throw errors and fail to start.  Fortunately, this is easily remedied by performing the following steps:
    In IIS Manager, double-click the server instance in the left-hand pane.  Click on “Application Pools” to display the list of server application pools in the center pane.
    In the “Actions” pane on the right-hand side, click “Set Application Pool Defaults”.
    Change “Enable 32-Bit Applications” - the second item from the top – from “True” to “False” this time.  This should re-enable the SBS applications, which would otherwise result in 500 errors (e.g., OWA, RWW, Companyweb, etc.).  There is no need to restart IIS.
    Open a Web browser and test that you can once again connect to OWA, RWW and Companyweb successfully.
    In IIS click to highlight the application pool for your new site (e.g., “test-site”).  In the right-hand pane, click “Advanced Settings”.  Ensure that “Enable 32-Bit Applications” – second item from the top – is set to “True” for this application pool specifically.
    Lastly, jump up and down for joy!  Hopefully now, everything is working.  Best of luck!! ..Paul D (MCP).

    First, it would be a good idea for you to specify what distro of Linux you're using, as not all are supported by Adobe.
    Second, this is probably your problem right here:
    http://askubuntu.com/questions/40416/why-is-lib-libc-so-6-missing
    In a nutshell, CF expects the 32-bit version of libc.so.6 to be in /lib, but it's probably not. You might be able to modify the installer to point to the correct location for that file, or you might be able to create a symlink to the file - but as the above link describes, creating a symlink might have negative consequences.
    As for installing CF 8 64-bit, that's only available with Enterprise, not Standard. If you want CF Standard 64-bit, you need to upgrade to CF 9.
    Dave Watts, CTO, Fig Leaf Software

  • Adobe Bridge in Photoshop - How to install Bridge and camera raw? And what is it all about?

    Hi everyone! I am actually in love with this adobe photoshop. I used PSCS2 before, but later on upgraded to CS4. But I feel tired in upgrading to CS5.
    One time, I found a tutorial in youtube about camera raw, and would really want to use it. But I was wondering how to install the camera raw. I believe camera raw is a plugin? so I downloaded the plugin here, installed it in my PS. I downloaded a file Camera Raw.8bi and paste it on my C drive - C:\Program Files\Adobe\Photoshop CS4\Plug-ins\File Formats.
    I now am very confused, how will I open it? I do not have adobe bridge!  After I installed the camera raw, I opened my PS. I clicked the file>then browse in bridge. I had an error, it's "error 2 photoshop11 undefined". Which is what I thought, I might have done something wrong with installing it.
    My question is, do you still need adobe bridge installed in order to use camera raw?
    If yes, how does it work? How am I suppose to open camera raw?
    If no, how am I going to open camera raw without bridge?
    And also, where will I download adobe bridge? I cannot find one here for CS4, only adobe bridge for CS5. I am wondering, is it okay to install adobe bridge CS5 and use it with my PS CS4?
    I badly need help!

    WebDAV (Web-based Distributed Authoring and Versioning) is a set of extensions to HTTP/1.1.
    The main difference from FTP as far as I can see is that it allows you to edit documents on a remote web server.
    WebDAV was used by the Apple server - MobileMe but is not generally supported by hosting services.
    Using WebDAV you can mount a directory locally. This was how iDisk worked on your Mac and you could drag files onto it to upload them to the remote directory.
    With WebDAV, a number of users can share a directory which is why its used in local networks but presents security problems when using a remote server.
    If you are into file sharing rather than publishing, Dropbox or its new rival SugarSync are more appropriate.

  • How to install memory modules on a macbook pro 15"

    I run Windows 7 via parallels desktop on my macbook pro. How do I type special characters on a Word document using the mac keyboard?

    how to install memory modules on a macbook pro 15"
    Read the manual / user guide that came with your comptuer or download it from http://support.apple.com/manuals/
    I run Windows 7 via parallels desktop on my macbook pro. How do I type special characters on a Word document using the mac keyboard?
    Post your question on the Paralells forums:  http://forums.parallels.com

  • HT1349 mini graphics to vga adapter for macbook how to install in windows 7.

    mini graphics to vga adapter for macbook how to install in windows 7.
    i have macbook with windows 7 operating system.

    Can you be more specific?
    What are you trying to do?

  • How to install Windows 7/Vista as 2nd OS and retain predesktop environment (service partition)

    This is a step-by-step instruction how to install Windows Vista or Windows 7 as a second OS on a Lenovo Thinkpad that originally shipped with Windows XP AND how to retain the access to the Lenovo Service Partition.
    I have been searching the internet for instructions like these but could not find anything useful. So I am posting it
    here. Maybe this helps other users.
    I have tested the procedure below with installation of Windows Vista Ultimate (64bit) and Windows 7 Ultimate (64bit). I believe that the procedure will also work with the 32bit versions of these OSs. I am not totally convinced that this works when the OS to install is Windows XP (64bit or 32bit). XP has a completely different boot sequence compared to Vista or 7. The basic steps would remain the same, but the XP setup is less forgiving when it finds an unknown partition. If somebody wants to try it out, please post your results as a reply to this forum entry.
    Never never never try to install an older OS (like Windows 2000 or NT) as a second OS when XP is already installed! This is doomed to fail.
    The procedure below does NOT work for Linux installations. I am not a Linux wizard, but any Linux bootmanager I know about is incompatible with the Lenovo Service Partition.
    The procedure was tested on a Thinkpad R61 model 8918-B9G. It should work similar on other models.
    You definitely need a service partition with Rescue&Recovery version 4. It will NOT work with older versions of R&R or if the service partition is not a type12 partition (see below how to find out about that).
    I assume that the harddisk partitions are unmodified, i.e. still have factory settings. This is likely the case if you
    never attempted any OS install or recovery action. If this is not the case, the procedure may or may not work.
    You also need a bootable CD with a tool that can change the size of your current system partition. I was using gparted live version 0.5.2-9. ( http://gparted.sourceforge.net/ )
    Everything you do is at your own risk. I am in no way related to Lenovo, other than being a customer using their
    products.
    Step 1) Make a full backup of your harddisk. Get yourself recovery CDs for your Thinkpad model if you don't have any. The changes we are about to make can completely screw up your harddrive. A typo is sufficient for that to happen.
    Step 2) Power on the system. Check that you can boot into the Service Partition by pressing the Thinkvantage button when the startup screen appears. (Older systems may have a differently named button.) If there is a problem booting the service partition now, it is likely that the rest of this procedure will not fix it.
    Step 3) From the service partition choose 'Warmstart' to reboot the system. Reboot Windows XP, logon.
    Open a command prompt. CD to the following directory:
    \Program Files\Common Files\Lenovo\BMGR
    On a german language system (like mine) it is
    \Programme\Gemeinsame Dateien\Lenovo\BMGR
    If you have an older IBM system the directory may be named
    \Program Files\Common Files\IBM\BMGR
    or something like that. Maybe you need to search around.
    In the following, I will call this the "BMGR dir".
    Enter the following command:
    bmgr32 /info /v
    You should get an output similar to this:
    C:\Programme\Gemeinsame Dateien\Lenovo\BMGR>bmgr32 /info /v
    It's a Lenovo  MBR
    Opened Master Boot Record to see whose MBR it is.
    It's a Lenovo MBR
    Opened drive for reading
    Partition 0 the SP? no, type 0x07 is not correct
    Partition 1 the SP? (512)  Label is SERVICEV
    Using version 2.05 of Lenovo Boot Manager
    Reading: \\.\PHYSICALDRIVE0
            MBR Sector 1 Index: 1   Checksum: 00    Disabled
            MBR Sector 2 Index: 4   Checksum: 03    Passed
            MBR Sector 3 Index: 5   Checksum: FD    Passed
            MBR Sector 4 Index: 6   Checksum: 58    Passed
            MBR Sector 5 Index: 7   Checksum: 96    Passed
            MBR Sector 6 Index: 8   Checksum: 7F    Passed
            Data Sector  Index: 3   Checksum: F1    Passed
            Original MBR Index: 2   Checksum: BD    Passed
            No Patch Sectors
            Checksum Byte: 00
            Think Flag: 1
            WinPE Partition (0-3): 1        Alt Boot Partition (0-3): 1
            Boot Config: 2 (Service Partition containing two Service OS's)
            Boot State: 0                   Alt Boot Flag: 0
            (Normal booting operation, will boot to Customer OS)
            RRU: 00000000 00000000          Prev Active Part: 255
            Previous Partition Type: FF     Patch IN: 0     OUT: 0
            CIRT Disabled
            TOC: 0000000000000000           Lock: 0
            Show Error: 0                   Halt on Error: 0
            CIRT Load Return: 0
            CIRT Execute Return: 0
            Pause Duration: 10              Scan Code: 0085
            F11 Msg: To boot to the Rescue and Recovery Environment, Press F11
            Check Msg: There has been a signature failure
     #  active  type      start CHS      end CHS      startLBA       size
     0   0x80   0x07      1   1   0   239 255 255           63    301296177
     1   0x00   0x12      0 193 255   239 255 255    301296240     11279520
     2   0x00   0x00      0   0   0     0   0   0            0            0
     3   0x00   0x00      0   0   0     0   0   0            0            0
    C:\Programme\Gemeinsame Dateien\Lenovo\BMGR>
    The important thing to look for is the 0x12 partition type in the partition table at the bottom. This is the service
    partition. If you do not have a 0x12 partition, then you can stop here because the rest of the procedure will not work
    for you.
    Step 4) Shutdown and boot gparted from CD. Shrink the system partition to the desired size. Do NOT touch the service partition! Do NOT attempt to create another partition! Leave the new white space on the disk untouched! Apply changes and restart the system.
    Step 5) Reboot XP. gparted has set the NTFS dirty bit. This will cause XP to run a full CHKDSK. Depending on how much files there are on the partition this may take considerable time. Let CHKDSK run to completion. When CHKDSK finishes, the system will automatically reboot.
    Step 6) XP reboots now. Logon. When loading the desktop, XP will show a popup window, stating that system settings have been changed and new devices been discovered and that the system should be rebooted. This is ok. XP actually recognized the shrunk system partition and applied the necessary changes to its own system parameters. Click YES to reboot the system.
    Step 7) XP reboots. Logon. Open a command prompt, CD to the BMGR dir and enter:
    bmgr32 /info /v
    The output you get should be similar to the output you have seen in step 3, except that the partition 0 size column
    shows a smaller value.
    Step 8) Shutdown, restart. Check that you can still access the service partition by pressing the blue Thinkvantage button when the system startup screen appears.
    Step 9) From the predesktop environment choose warmstart. Reboot XP. Logon, logoff, shutdown.
    DO NOT SKIP THIS STEP!!! If you start the Windows Vista/7 install right after shutting down from the predesktop
    environment, the Win Vista/7 setup program will screw up your harddisk! The Lenovo MBR bootmgr reboot takes two steps for completion. The first step is the shutdown and the second step is executed when booting from harddisk. A boot from the Windows CD will skip this second step and disaster finds its way...
    Step 10) Insert the Windows Vista/7 DVD and boot it. Start the setup. Choose "Custom (advanced)" install. It will show the partitions on the disk. Select the white space (unallocated). Click on "disk options (advanced)". Click on "New" to create a new partition in the white space. Keep the default size, click "Apply". Click "Format". A popup window appears stating that the partition may hold OEM data. Continue. Click "Next". Installation starts.
    Continued in the second post...

    Step 11) Win Vista/XP will reboot several times during installation. You will always see the Windows bootmanager with an entry for "Earlier Windows version" and "Windows Vista/7". DO NOT DARE to touch the blue Thinkvantage button on any reboot or press any function keys!
    Step 12) When the installation is finished, check that you can successfully reboot Win Vista/7 by selecting it from the Windows bootmanager.
    Step 13) Reboot XP by choosing "Earlier Windows version" from the Windows bootmanager. Open a command prompt. CD to the BMGR dir. Enter the following command:
    bmgr32 /info /v
    The output will now look like this:
    C:\Programme\Gemeinsame Dateien\Lenovo\BMGR>bmgr32 /info /v
    Opened Master Boot Record to see whose MBR it is.
    Opened drive for reading
    Partition 0 the SP? no, type 0x07 is not correct
    Partition 1 the SP? no, type 0x07 is not correct
    Partition 2 the SP? (512)  Label is SERVICEV
     #  active  type      start CHS      end CHS      startLBA       size
     0   0x80   0x07      1   1   0   254 255 255           63    109675692
     1   0x00   0x07    239 255 255   239 255 255    109676544    191619072
     2   0x00   0x12    239 255 255   239 255 255    301296240     11279520
     3   0x00   0x00      0   0   0     0   0   0            0            0
    C:\Programme\Gemeinsame Dateien\Lenovo\BMGR>
    startLBA and size will of course differ, depending on the actual partition sizes you have set. Note that Windows setup moved the service partition to entry 2 of the partition table. If you do not see the 0x12 partition then stop here.
    Otherwise the following step will likely screw up you harddisk.
    Enter the following command (case sensitive?):
    bmgr32 /Fbootmgr.bin /m0 /IBM /v
    The output will look like this:
    C:\Programme\Gemeinsame Dateien\Lenovo\BMGR>bmgr32 /Fbootmgr.bin /m0 /IBM /v
    installing MBR
    finding free sectors
    Sector 9 is free
    Sector 10 is free
    Sector 11 is free
    Sector 12 is free
    Sector 13 is free
    Sector 14 is free
    Sector 15 is free
    Sector 16 is free
    Opened Master Boot Record to see whose MBR it is.
    It's a Lenovo MBR
    Opened drive for reading
    Partition 0 the SP? no, type 0x07 is not correct
    Partition 1 the SP? no, type 0x07 is not correct
    Partition 2 the SP? (512)  Label is SERVICEV
    Setting Think bit
    C:\Programme\Gemeinsame Dateien\Lenovo\BMGR>
    This command reinstalled the Lenovo bootmanager in the MBR that was erased by the Win Vista/7 setup program.
    Enter the following command:
    bmgr32 /info /v
    The output will now look like this:
    C:\Programme\Gemeinsame Dateien\Lenovo\BMGR>bmgr32 /info /v
    It's a Lenovo  MBR
    Opened Master Boot Record to see whose MBR it is.
    It's a Lenovo MBR
    Opened drive for reading
    Partition 0 the SP? no, type 0x07 is not correct
    Partition 1 the SP? no, type 0x07 is not correct
    Partition 2 the SP? (512)  Label is SERVICEV
    Using version 2.05 of Lenovo Boot Manager
    Reading: \\.\PHYSICALDRIVE0
            MBR Sector 1 Index: 1   Checksum: 00    Disabled
            MBR Sector 2 Index: 11  Checksum: 03    Passed
            MBR Sector 3 Index: 12  Checksum: FD    Passed
            MBR Sector 4 Index: 13  Checksum: 58    Passed
            MBR Sector 5 Index: 14  Checksum: 96    Passed
            MBR Sector 6 Index: 15  Checksum: 7F    Passed
            Data Sector  Index: 10  Checksum: 01    Passed
            Original MBR Index: 9   Checksum: 12    Passed
            No Patch Sectors
            Checksum Byte: 00
            Think Flag: 1
            WinPE Partition (0-3): 2        Alt Boot Partition (0-3): 2
            Boot Config: 0 (Service Partition containing one Service OS)
            Boot State: 0                   Alt Boot Flag: 0
            (Normal booting operation, will boot to Customer OS)
            RRU: 00000000 00000000          Prev Active Part: 255
            Previous Partition Type: FF     Patch IN: 0     OUT: 0
            CIRT Disabled
            TOC: 0000000000000000           Lock: 0
            Show Error: 0                   Halt on Error: 0
            CIRT Load Return: 0
            CIRT Execute Return: 0
            Pause Duration: 10              Scan Code: 0085
            F11 Msg: To boot to the Rescue and Recovery Environment, Press F11
            Check Msg: There has been a signature failure
     #  active  type      start CHS      end CHS      startLBA       size
     0   0x80   0x07      1   1   0   254 255 255           63    109675692
     1   0x00   0x07    239 255 255   239 255 255    109676544    191619072
     2   0x00   0x12    239 255 255   239 255 255    301296240     11279520
     3   0x00   0x00      0   0   0     0   0   0            0            0
    C:\Programme\Gemeinsame Dateien\Lenovo\BMGR>
    So you have actually regained the Lenovo bootmanager. But you are not done yet.
    Step 14) Shutdown. Restart the system. DO NOT PRESS THE BLUE THINKVANTAGE BUTTON AT THE SYSTEM STARTUP SCREEN!!! IT DOES NOT WORK YET! When the system startup screen DISAPPEARS, quickly press F11 (maybe several times). The system should now boot the predesktop environment from the service partition.
    Step 15) When the predesktop is there, choose "warmstart". When the system startup screen appears, press the blue Thinkvantage button. The system should again boot into the predesktop. The blue Thinkvantage button now works permanently.
    Step 16) Check that you can boot Win XP and Win Vista/7 from the Windows bootmanager. You're done!

  • How to install win 8.1 pro x64 on MBA mid 2013 (core i7)

    Please help me how to install win 8.1 pro x64 on MBA mid 2013 (core i7).
    Thank you very much for your help.
    Best regards.

    Everything you need to help you is located here: http://www.apple.com/support/bootcamp/

  • How to install Windows 8.1 Pro on Macbook Pro

    Hello everyone,
         I'm new to these forums and new to bootcamping as well but have been reading all kinds of posts about how to install Windows 8.1 on their Macs using bootcamp. I am however having trouble with this situation as I have no clue what to do next. I have a Macbook Pro 2011, running on Maverics, and I recently downloaded a digital copy of Windows 8.1 Pro, 64-bit, for the Mac platform, along with its CD key through my University's hub website as can be seen here.
    After finishing the downloading process, I received this file which is about 4GB large.
    When i double click on the file this happens. It opens something on DEVICES which gives me what is on the 2nd image.
    At this point, I'm at a loss on what to do next. Do i burn the file on a DVD hoping that Bootcamp will recognize it as a windows disc? Any help would be appreciated, thank you.

    You need a 'Full' Installer.
    From Boot Camp 5.1: Frequently asked questions - Apple Support
    Which versions of Windows work with Boot Camp 5.1?
    Boot Camp 5.1 supports 64-bit, non-Enterprise versions of Windows 7, Windows 8.0, and Windows 8.1. This version of Boot Camp doesn't support Windows XP, Windows Vista, or any 32-bit version of Windows. Depending on your Mac, you may be able to use an earlier version of Boot Camp to work with other versions of Windows. For details, see the Boot Camp system requirements for Microsoft Windows.
    Can I perform an upgrade install from a 32-bit version of Windows to a 64-bit version of Windows?
    It's not possible to upgrade a 32-bit version of Windows to a 64-bit version of Windows. Back up your important files, then perform a new install of the 64-bit version of Windows.

  • How to install ovi suite to a drive other than C:?...

    how to install ovi suite to a drive other than c:??? my c: drive is almost full with other partitions perfectly free to install it, how do i do that? can i use previous versions of ovi suite to use with my e63? at this point, i'm unable to use ovi suite at all, because there's no room to install it on my c: drive.
    allllllllso there's one more thing, when i originally had tried installing ovi suite on my computer i had more than 1gb free. after installing it i on'ly had 500mb free. i had only intended for it to use a very small amount of space, and since i also use my c: drive for virtual memory i quickly uninstalled it, looking for an option i'd maybe skipped over while installing it the first time. no luck. anyways, when i looked in the add/remove programs control panel the installed size of ovi suite was only 40-50mb. even after uninstalling ovi suite the extra memory space that seemed to all of a sudden taken up by the installation stayed used.
    when looking at the file sizes of everything on my hard drive, (including system files and paging file) there is still a descreprency between the amount of memory used and the size of all files total on the drive. at this point im quite disgusted and disapointed in ovi suite as i'm mostly unable to use it to connect my phone to my computer and i'm also having problems with the CA101 cable as well. i guess i'll have to go check for another cable.
    nokia!!! wake up and fix yo **bleep**!!!!
    anyone have any solutions for the main problem? (installing to a drive other than c? is there support for this option in any of the new beta versions? can that be included in the newest betas? i'm suuuuuure i'm not the only one begging for this option!!!

    Hi ostrenga4, sorry to hear about your experiences.
    When installing Nokia Ovi Suite to PC, Windows makes "system restoration points", which are available to restore operating system to previous condition, if something goes wrong, for example in driver installation.
    You can change install location of Nokia Ovi Suite with following:
    - Download Nokia Ovi Suite install package from Nokia Ovi Suite pages
    - Start Windows Command prompt
    - From Command prompt, navigate to folder containing Nokia Ovi Suite install package, which you downloaded
    - Start Nokia Ovi Suite install package with command line "Nokia_Ovi_Suite_webinstaller.exe /TARGET="D:\TestDir\Test"
    - This results, that Nokia Ovi Suite installer creates folder D:\TestDir\Test (if that doesn't exist) and installs Nokia Ovi Suite there.
    - Unfortunately, Windows Installer still keeps installer cache files and system restoration points in C: drive (or whatever your system drive is)
    As you can see, this is possible, but it is very much recommend to have enough space for installing software into system drive.
    Cheers, Samuli

  • How to install a plugin on 64 bits windows 2008 server?

    From the developer forum, I found a description which told me how to install a plugin on windows series system, but I only succeded intalling the plugin on 32 bits windows xp, couldn't install the plugin on 64 bits windows 2008 server. Any ideas or advices, men of genius? Thanks :-)

    Please check if all your plugins are up-to-date. To do this, go to the [http://mozilla.com/plugincheck Mozilla Plugin Check site].
    Once you're there, the site will check if all your plugins have the latest versions.
    If you see plugins in the list that have a yellow ''Update'' button or a red ''Update now'' button, please update these immediately.
    To do so, please click each red or yellow button. Then you should see a site that allows you to download the latest version. Double-click the downloaded file to start the installation and follow the steps mentioned in the installation procedure.

  • How to How to install ATI Radeon HD2600 driver on bootcamp 3.0 windows 7 partition w/black screen problem

    Ok....so i've posted this question in a different way, and i gotten several "scratch the surface" answers from people just saying to install "Ati catalyst", or insert the os x dvd and run set up.exe, and update  to boot camp 3.1 or 3.2...while these all seem like great suggestions, I am finding myself needing more specific direction or "hand holding" so to speak.....here is the MAIN problem...
    The Background/history
    I used boot camp (3.0, and i found updates for 3.1 for imac and for windows, but can't find for mac pro, AND they all are ".exe" files which run on windows..which as you'll see is the big part of my problem...So I recently updated my mac pro (with the ATI Radeon HD2600 graphic PCIe card with 10.6.7 from 10.5.8.  I created a single partitioned drive to install windows 7 professional 64 bit.  The download software function didn't work (Thanks, APPLE for that poor level of support) so have to select the option that i have already downloaded, or have other media with the drivers already on it....i restarted with the windows 7 disk in.... 
    The installation of Windows 7 Pro 64-bit
    So the installation of windows 7 seemed to go flawlessly, was able to use my existing 23" hd apple cinema display (so somehow it has drivers that work with the graphics card, or maybe the motherboard's on board video components) and i select english, and install now, custom, blah, blah, blah...installation causes a few reboots, then restarts ultimately back in os x since that is the default boot os i use on this desk top and have to do the "opt" button to select booting in windows....so when i try restarting in windows, now using the actual boot drive on which i am installing it, it ran through another reboot or two, but then after that, my display goes black....  in the communities, the solution sounds super simple... "go download the ATI catalyst for the black screen problem....windows 7 doesn't have device drivers that work with the ATI radeon hd2600...no problem, just go download and install...."
    The problem, re-emphasized :  I cannot even finish the install for windows, because of this driver problem....i cannot see anything....I have tried to reboot in safe mode, and that then seems to invoke whatever basic drivers that do work, likely through the motherboards onboard video vs the actual graphic card, and the screen works and says that it's wanting to complete the installation, so i'm thinking awesome this is gonna work....and then.. "windows installation was not completed and cannot be completed in SAFE MODE, need to restart, blah, blah, blah" pops up...and forces reboot...so Safe Mode allows me to see, but won't allow me to finish the install of windows 7...and without completing the install i can't run (ranther I DONT KNOW HOW TO) any of the various .exe files everyone is telling me are the solutions to my problem...like update 3.1 and 3.2 bootcamp...they're all .exe files?  not sure why, because bootcamp runs in 10.6.7 i thought, but whatever...it needs running Windows to execute...then the ATI radeon hd2600 driver for windows 7 that i downloaded from the site has an installation program that is an .exe file, which needs windows to run...  Does this make sense, why i can't just use these fixes, that seem to be the only fixes out there....so can someone school me step by step here (not just the highlights) of how to update bootcamp, and how to install the ati radeon driver  without having been able to complete the windows 7 installation because the monitor goes and stays black????
    This is so very frustrating for the record...and any substantial help "not just go download this..." would be immensely appreciated.
    Some other things i've been told to try that i've tried and nothing seems to happen as i'm told it will....
    ---I've been told to install the osx dvd and run "setup.exe"  - AGAIN...it's an exe file...and 2 - when i put in the os x file it just wants to re install 10.6...so need more help if this is even a real solution to understand how to make it work...
    ---I've been told to update boot camp to 3.1 and/or 3.2 from 3.0, using Apple Software Update....Well, my software update is saying everything is up to date and there is nothing new to download at all, and when i reverify the bootcamp version it is still only 3.0.2...and again downloading the updates from www.apple.com/support/  for 3.1 and 3.2...all of those are .exe files...need windows to run them...again, refer to the problem described in detail above...
    ---I've been referred to the black screen on imac early 2011 thread saying it should fix my problem...and reading it it SEEMED like the most promising resolution...it involves creating a boot flash drive for windows 7 and an xml file that sets the imac drivers to auto install during the windows installation..and it got me farther than anything else..but still ultimately ended up in the darned black screen...my assumption is that it's because it's for imac and not mac pro so not ati-radeon specific drivers....ok....that's enough..please...anyone who thinks they can help...your help is desperately needed...thanks so much in advance!

    hey Hatter, thanks so much for getting back...so just to be super clear...is there no way to install the drivers using an exe file given my current state? no way to do it with command prompt or something?  if can make work with existing card, i'd prefer it...now when you say it's 'toast' how do you mean?  it works well with the os x partitions and always has...so i'm not sure i follow, just want to be clear...
    Now to your point of starting with only the one drive installed...so i would put that bootcamp drive in bay 1 and disconnect the rest...i'm not totally sure what you're suggesting the effect should be of doing this?  just that i'm just installing windows without the bootcamp deal...but if windows 7 doesn't support the ati radeon hd2600, it still will go black screen no? or you're saying it will run video through the motherboard if it's the only bootdrive, and will run all the way through the windows install without trying to switch over to the hd2600?  (slrry flr these questions..just really want to make sure i understand what you're telling me..thanks so much for your patience and help by the way...it's very greatly appreciated...your support is priceless!
    So now, assuming none of the above is possible...referring now to the ati 5770 that you referred to...you mention it works with 10.6 well, and that windows 7 supports it ...2 questions on that
         1) Windows 7 supports" meaning, out of the box windows 7 supports it? or will i have to install drivers still through some update, because again, if that's how i have to do it, then won't work, cuz can't start windows to see anything to install any drivers or run any thing at all...so it would have to just work with initial installation.
         2)hardware wise for my Mac Pro 3,1...intel dual quad core xeon, blah blah....will this card work? it's a PCIe and should fit on my board no prob, etc?

  • How to install Small Business Server 2008 in an existing Active Directory domain

    It is shown on this page:
    http://support.microsoft.com/kb/884453, "How to install Small Business Server 2003 in an existing Active Directory domain".
    Is it possible to do this with SBS2008 ?
    If "YES", are there any published information about the procedure ?

    Yes, it is. Thank you very much.
    But there is something that confuses me - I want to migrate from Win2003Std to SBS2008. And also, I want to keep the existing Win2003Std as a second DC for a long time.
    But it is written in the shown article:
    ... After the migration is finished, you must remove the Source Server from the network within 21 days. ...
    Is this rule mandatory for the scenarios where the Source Server is Std, not SBS ? As I know, I can have more than one DC(Win2003Std/Win2008Std) together with SBS2003. But what about SBS2008 ?

  • How to install IE8 on Windows Server 2008 R2 Datacenter?

    Hello.
    Can anybody tell me, how to install IE8 on 2008 R2 Datacenter?
    I've downloaded this http://www.microsoft.com/en-us/download/internet-explorer-8-details.aspx for "Windows Server 2008 64-bit and more..", removed IE11, IE10, IE9 from installed updates, and runned "dism /online /disable-feature
    /featurename:Internet-Explorer-Optional-amd64".
    And nothing helps. I've got a message "Internet Explorer 8 is not supported on this operating system".

    you can't "install" IE8 on WS2008R2, nor on Windows7 - because those OS's shipped with IE8.
    IE is an OS component, and so when you "upgrade" or "downgrade" IE, you are affecting an OS component.
    What this means is that the "IE8" download you are trying to apply, is actually IE8 for WinXP or maybe WinVista.
    You can usually "downgrade" Win7 back to IE8, by uninstalling the newer "upgrade" of IE - this causes the OS to automatically attempt to revert to the prior IE version.
    This reversion assumes/requires a healthy OS and component store (CBS), including all the pkgmgr file needed to revert to component.
    Sometimes, the component store is damaged, or is missing files.
    you may need to check the CBS logfiles, and may need to perform SFC /scannow
    You may need to use CheckSUR to repair system health.
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • How to install windows 8 on mac

    I just bought windows 8 pro and am trying to install in on my windows. I have previously installed windows 7 via bootcamp but just deleted the partition because I want to start over from scratch with windows 8. I understand bootcamp needs to be updated to bootcamp 5 but every time I try to use the assistant and download the windows update to my external hard drive it freezes halfway through. I'm confused as to what I should do now. I downloaded the bootcamp 5 drivers from http://support.apple.com/downloads/#macoscomponents. I downloaded the first one,
    Boot Camp Support Software 5.0.5033
    I'm not sure how to install this or how it works exactly but there is a file in it called setup.exe but it requires a program to open it which i dont have. I have the unarchiver program but even that wont open the setup.exe. Is this the file I need and if so how do I go about updating bootcamp. I also found out that I have bootcamp Version 5.0.2 (462) but when I open the assistant the only option on there is "create a winows 7 or later version" I assumed I needed to update it because it says nothing about windows 8. Thanks for any help.

    Welcome to the Apple Support Communities
    You have to save the folder you downloaded into a USB drive. Then, after installing Windows, connect it and open the setup.exe file, so you will install the Windows support software. Windows support software is needed to make your computer run properly in Windows.
    When you open Boot Camp Assistant, how many options do you see and how are they named? It's possible that your Mac isn't officially compatible with Windows 8 > http://support.apple.com/kb/HT5634

  • How to install TWAIN plug-in for Adobe Photoshop CS5

    Adobe Photoshop CS4 listed my Epson Perfection V500 scanner as a selection under “File-Import”. When I installed Adobe Photoshop CS5, I noticed that scanner selection is not there. I contacted Epson technical support and they said Adobe Photoshop CS5 does not automatically install the TWAIN plug-in that it needs to recognize the scanner and that I need to contact Adobe technical support to find out how to add it.
    How do I install the TWAIN plug-in for Adobe Photoshop CS5 so it will recognize my Epson Perfection V500 scanner as a selection under “File-Import”?
    Thanks to anyone who can help me out.

    Thanks for your response.
    I downloaded the "Photoshop CS5 Optional Plugins" file (PSCS5OptionalPlugins_Win_en_US.zip). I unzipped it and read the "ReadMeCS5_OptionalPlugin.pdf" file. In that file, the only section that discusses TWAIN is entitled "TWAIN (Mac only)". There is no section for how to install TWAIN for Windows.
    How do I install the TWAIN plug-in for Windows?
    On a side note: Before I posted the question to the form, I changed my Adobe account email from [email protected] to [email protected] I then logged in as [email protected] and posted the question. The notification email for your posting a response to my questions was sent to my old email address (not tye new one). My Abobe account and my forum profile both show my new email address. Where is the settings that controls the email notification for the posting responses?
    Wikipedia
    Wictionary
    Chambers (UK)
    Google images
    Google define
    The Free Dictionary
    Join example
    WordNet
    Google
    Urban Dictionary
    Answers.com
    rhymezone.com
    Merriam-Webster<>0
    wvcidfjoguarm

Maybe you are looking for