Re: Need technical information about the CD/DVD with Portege 7200 series writer

Hello
just to clarify my last post should have read: CD and DVD rw burner compatible with the laptop above.

all the best john.

The Portege 7200 cannot be upgraded with a CD/DVD burner (drive).
You can buy a dock like [this one | 5QQcmdZViewItem http://cgi.ebay.ca/Slim-TOSHIBA-Portege-7200-Dockstation-Built-in-DVD-CDRW_W0QQitemZ170200420841QQihZ007QQcategoryZ14008] which provides a feature of CD/DVD drive!

I m not 100% sure if this docking station can be improved with a CD/DVD burner, but you can try to contact the ASP in your country for details.
Guys might provide information whether or not this player is available!

Tags: Toshiba

Similar Questions

  • Need technical information about the Satellite P100 - 10 p

    Hello

    I own a laptop Satellite P100 - 10 p.

    My question is:
    How this notebook gigaflops can produce (not in the normal conditions of use, but technically)?

    Hello

    First of all, that you won't find here Toshiba technicians but simply, common users of Toshiba laptops. This is a user forum!

    With regard to your question;
    Why you n t use a reference application for measuring performance in floating point.
    Perhaps a benchmark in LINPACK 64-bit app might help. I am writing could help because I never used and tested the program. ;)

    http://Linux.Softpedia.com/get/system/benchmarks/high-performance-Linpack-1396.shtml

    But this program was written for the Linux operating system. It seems that you won't be able to run it on a Win OS.

  • Need complete information about the construction of interactive forms in IDCS6

    Need complete information about the construction of interactive forms in IDCS6

    Where could I get the most thorough training for the creation of interactive forms in IDCS6?

    I need a tutorial that covers all the basics of the beginning to the end and the rules that cannot be broken. I thought I learned enough today to write one, but it appears there are holes in my methods I discovered tonight.

    In fact prices of Claudia on Lynda.com is about creating forms with Acrobat X Pro, and she finished before InDesign CS6 was available.

    Anne-Marie Concepcion discussed creation of forms in his new functions in InDesign CS6 video Lynda.com.

    But Sandee Cohen wrote an article dynamite in the current issue of InDesign Magazine on creating forms in InDesign CS6 which is very comprehensive.  The magazine is not available for free.

    www.indesignmag.com/Purchase.php

    The FRIEND coupon code to save $20 on a 1 year subscription.

  • Information about the host material with information on the nic and HBA drivers

    Can someone help me complete the script below. I can't able to get information from HBA and driver for the card.

    
    Get-Datacenter | % {  
      $datacenter=$_
      Get-VMhost -Location $datacenter | Get-VMHostHBA -Type FibreChannel | where {$_.Status -eq "online"} | 
      Select @{N="Datacenter";E={$datacenter}},@{N="VMHost";E={$_.VMHost.Name}},@{N="HostName";E={$($_.VMHost | Get-VMHostNetwork).HostName}},@{N="ver";E={$_.VMhost.version}},@{N="Manf";E={$_.VMhost.Manufacturer}}, @{N="Hostmodel";E={$_.VMhost.Model}},@{Name="SerialNumber";Expression={$_.VMhost.ExtensionData.Hardware.SystemInfo.OtherIdentifyingInfo |Where-Object {$_.IdentifierType.Key -eq "Servicetag"} |Select-Object -ExpandProperty IdentifierValue}},
      @{N="Cluster";E={
            if($_.VMHost.ExtensionData.Parent.Type -ne "ClusterComputeResource"){"Stand alone host"}
            else{
                Get-view -Id $_.VMHost.ExtensionData.Parent | Select -ExpandProperty Name
            }
          }},Device,Status,@{N="WWN";E={((("{0:X}"-f $_.PortWorldWideName).ToLower()) -replace "(\w{2})",'$1:').TrimEnd(':')}},@{N="HBA Model";E={($_.VMhost | get-vmhosthba -Type FibreChannel | where {$_.Status -eq "online"} | select-object -ExpandProperty Model  ) | Get-Unique}},
          @{N="fnicdriver";E={$esxcli.software.vib.list() | ? {$_.Name -match ".*$hbadriver.*"} | Select -Expand Version}}
          @{N="Fnicvendor";E={$esxcli.software.vib.list() | ? {$_.Name -match ".*$hbadriver.*"} | Select -Expand Vendor}},
          @{N="enicdriver";E={$esxcli.system.module.get("enic").version}}
         @{N="Enicvendor";E={$esxcli.software.vib.list() | ? {$_.Name -match ".$net.*"} | Select -Expand Vendor}}
    } 
    
    

    Thank you correct me with your previous posts, I had made some changes to get information on the correct provider for FC and network cards, now it's show desired output.

    Get-Datacenter | % {
          $datacenter=$_
          foreach($esx in Get-VMhost -Location $datacenter){
            $esxcli = Get-EsxCli -VMHost $esx
            $nic = Get-VMHostNetworkAdapter -VMHost $esx | Select -First 1 | select -ExpandProperty Name
            $hba =Get-VMHostHBA -VMHost $esx -Type FibreChannel | where {$_.Status -eq "online"} |  Select -First 1 |select -ExpandProperty Name
            Get-VMHostHBA -VMHost $esx -Type FibreChannel | where {$_.Status -eq "online"} |
            Select @{N="Datacenter";E={$datacenter.Name}},
                    @{N="VMHost";E={$esx.Name}},
                    @{N="HostName";E={$($_.VMHost | Get-VMHostNetwork).HostName}},
                    @{N="version";E={$esx.version}},
                    @{N="Manufacturer";E={$esx.Manufacturer}},
                    @{N="Hostmodel";E={$esx.Model}},
                    @{Name="SerialNumber";Expression={$esx.ExtensionData.Hardware.SystemInfo.OtherIdentifyingInfo |Where-Object {$_.IdentifierType.Key -eq "Servicetag"} |Select-Object -ExpandProperty IdentifierValue}},
                    @{N="Cluster";E={
                        if($esx.ExtensionData.Parent.Type -ne "ClusterComputeResource"){"Stand alone host"}
                        else{
                            Get-view -Id $esx.ExtensionData.Parent | Select -ExpandProperty Name
                        }}},
                    Device,Model,Status,
                    @{N="WWPN";E={((("{0:X}"-f $_.NodeWorldWideName).ToLower()) -replace "(\w{2})",'$1:').TrimEnd(':')}},
                    @{N="WWN";E={((("{0:X}"-f $_.PortWorldWideName).ToLower()) -replace "(\w{2})",'$1:').TrimEnd(':')}},
                  # @{N="Fnicvendor";E={$esxcli.software.vib.list() | ? {$_.Name -match ".*$($hba.hbadriver).*"} | Select -First 1 -Expand Vendor}},
                    @{N="Fnicvendor";E={$esxcli.hardware.pci.list() | where {$hba -contains $_.VMKernelName} |Select -ExpandProperty VendorName }},
                    @{N="fnicdriver";E={$esxcli.system.module.get("fnic").version}},
                    @{N="enicdriver";E={$esxcli.system.module.get("enic").version}},
                   # @{N="Enicvendor";E={$esxcli.software.vib.list() | ? {$_.Name -match ".net.*"} | Select -First 1 -Expand Vendor}}
                     @{N="Enicvendor";E={$esxcli.hardware.pci.list() | where {$nic -contains $_.VMKernelName} |Select -ExpandProperty VendorName }}
                     #@{N="Enicvendor";E={$esxcli.network.nic.list() | where {$vmnic.name -eq $_.vmnic1} | select -First 1 -ExpandProperty Description }}
            }
        } 
    

    =================

    Output:

    -------

  • Satellite A660-10 x - need more information about the password in the BIOS mode

    Hello

    When I go to the bios there are Security tab when I have things like user password, password mode password hdd/ssd and supervisor + user password hdd/ssd.

    I have not found no documentation mode "password hdd/ssd" is for and what is the difference between 'User only' and 'user + Master' and how it works.

    Could you please give me some info, how does it work?

    Best regards

    Hello

    This is a password disk HARD useful summary:
    http://APS2.toshiba-tro.de/KB0/TSB6B01MC000CR01.htm

    _HDD password user and HDD Master Password: __________
    There are two levels of password of HDD, HDD user password and the HARD drive password. If two levels of HARD drive password have been registered, you can access the HARD disk by entering one of them. Password of TOSHIBA (TPU) utility supports only the HARD drive password. If you want to register both, open the CONFIGURATION of the BIOS. If the HARD drive password has been saved, the drive HARD master password cannot be saved

    I hope this helps a little

  • Need information about express port replicatior for Portege M series

    Hello
    What are the ports and how many of them, are included in the express port (PA3508E-1PRP) for the m series portege Replicator?

    Thank you
    Russell

    M series has four different binders. Can you be perhaps more accurate?

  • I need some information on the new iMessage on ox10

    I need some information about the new features on I update to iOS 10 message

    Howdy iotti!

    I understand you want to learn more about iMessage on iOS 10. There are a few new features!

    See these pages for a quick look on the update options:

    Use effects of message with iMessage on your iPhone, iPad and iPod touch
    Use iMessage apps on your iPhone, iPad and iPod touch
    Use #images with Messages in iOS 10

    If you have a question about a specific feature, you are in the right place to help! Don't forget to reply to this topic with specific questions.

    Take care!

  • Need information about the data included in the example for the inner race with flaws

    Hello

    There are several examples for fault detection in bearing (Vibration tool sets). I need more information about these data include:

    -Bringing its specifications

    -How to perform data acquisition

    -a link to the tutorial

    I came across this manual that shows how to use OATS envelope detection VI to perform detection of failures of bearings.

    http://zone.NI.com/reference/en-XX/help/372416A-01/svtconcepts/cst_speed_brg/

    It lists the specifications of turnover:

    • Inch diameter 0,2813

    • Primitive diameter: 1,1228 inch

    • Speed: 1 234 RPM

    It also goes to the list of characteristic frequencies determined by these attributes.

    The data acquisition is carried out by the use of an accelerometer and a tachometer. These devices measure the vibration and the rotation speed of the bearing data. Failure detection uses a method called detection of the envelope to look at the signals of the bearing and compared to signals of standard bearings to the discovery of flaws. You can learn more about the method of acquisition of data here:

    http://zone.NI.com/reference/en-XX/help/372416A-01/svtconcepts/fault_detection/#Envelope_Detection

    The first link is a tutorial on the detection of failures in the bearings. The end of the link provides the location of an example VI that may also be useful.

  • I need my files to open in the monitor # 2 I usually have some important information about the number of monitor 1. I need the files to alternate when they are open. One in 2, then one 1.

    I need my files to open in the monitor # 2 I usually have some important information about the number of monitor 1. I need the files to alternate when they are open. One in 2, then one 1.

    Kind regards

    How it works is usually the application (explorer.exe is an application) in question is open about everything that monitor his last (final) session was closed the.  Not all applications have this built-in memory, but most do.

    I don't think that even something TO manage multiple monitors (this is what it was built for) will do what you are wanting.  ;-)  I see no way of programming of this type of automation.  ;-)

    https://www.DisplayFusion.com/

  • Need information about the Tables in database in Oracle Apps

    Hello

    I am looking for information about the Tables in database in Oracle Apps.

    Is it possible that we could see the (column name, description of each column, the primary key, foreign key etc.) the table structure in database (e.g. HZ_PARTIES, CS_INCIDENTS_ALL_B, csf_debrief_headers) used in Oracle 11i applications?

    ETRM. Oracle.com

    concerning

    Pravin

  • Anyone have information about the software to improve the performance of a computer called "MECHANICAL SYSTEM"

    original title: windows xp

    has anyone information about the software to improve the performance of a computer called "MECHANICAL SYSTEM"?

    It is located on the website at WWW.IOLO.COM.

    Maybe someone of expertise of knowledge about this software?   or maybe someone has experience with this product?

    There is a similar product, without the costs?

    DO NOT BUY OR INSTALL "SYSTEM MECHANIC".

    IT will bog your system with errors, which would mean probably a complete restoration of your system.

    Dell recommends and sells it from their technical support group and SHAME on THEM for DOING SO.

    THIS SOFTWARE IS A TRAGEDY IN THE MAKING.

    Go to PC Mag reviews and you will see for yourself that there is a very LOW RATING and under normal conditions, you need software to mess with your registry.

    I know someone who has installed this program and we always try to fix all of the errors generated by mechanical system.

    We did a complete restoration and stil having problem.

    Thus he PURCHASE a CERTAINLY DO NOT GOLD INSTALLER CE PROGRAM.

  • Information about the backup of files

    I replace my old system of vista with windows 7 Professional, I'm backing up my files if I can replace vista Ultimate edition, but I don't know which option to use to back up my computer. I like to keep everything I've got, just change the operating system. I don't have an external hard drive, so I'll support my computer on the disks.

    Hi wooldave,

    You can save your files on DVD or CD. Make sure that the disks are writable, which means that you can add, remove, or modify the content. If you decide to use this method and have a lot of files to backup, be sure to have enough disks to complete the job. The back up files Wizard you indicates how much space you need whenever you perform a backup and recommends the type of media to use. If you label the disks with the date and time of the backup, they will be easier to find later. For maximum protection, keep the discs in a fireproof place separate from your computer.

    Always keep removable storage or media used for backups (such as external hard drives, DVDs or CDs) in a safe place in order to prevent unauthorized access to your files.

    1. Open the backup center and restore by clicking the Start button, clicking Control Panel, clicking system and Maintenance, and then click backup and Restore Center.
    2. Click back up files, and follow the steps in the wizard. If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    Visit the links below for more information about the backup and restore.

    Backup and restore: frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows-Vista/back-up-and-restore-frequently-asked-questions

    Back up your files

    http://Windows.Microsoft.com/en-us/Windows-Vista/back-up-your-files

    Methods of backup of your files.

    http://Windows.Microsoft.com/en-us/Windows-Vista/methods-for-backing-up-your-files

    Please post back and let us know if it helped to solve your problem.

    Kind regards

    KarthiK TP

  • Pavilion 15 AU084TX: Information about the expense of ram in my laptop

    Hi guys, I need your help about the compatibility of upgrade of ram in my laptop...

    My laptop comes with 4 GB DDR4 which can be expandable to 16 GB... I want to update my ram 8 GB...

    How I choose the correct ram, which should be compatible with my laptop.

    Here's my book:

    http://support.HP.com/us-en/product/HP-Pavilion-15-au000-notebook-PC-series/10862158/model/11991509/...

    Thank you

    Hey @Batzora,

    Welcome to the Forums of HP's Support. I am happy that you have participated and asked to help with suggestions and solutions regarding your HP Notebook PC. I'll do my best to help you with the information you need to upgrade your RAM.

    When we came to a resolution, please share what has worked for you with others by marking this post as an acceptable Solution.

    This is HP Pavilion Notebook PC Maintenance and Service of Guide for you. I have included a screenshot of the guide for you on memory that can be put into your laptop and the part number for him. You can use the HP PartSurfer to order parts for your laptop.

    If you need assistance, I would be happy to help you. Please make sure you have done every step (including those in the troubleshooting document) in the order and provide the detailed results of the steps.

    If you do not want to show your appreciation for my efforts today, please take a second to click the Thumbs Up button below.

    I look forward to hearing your response.

    I'm glad that you have joined in!
    Have a great day!

  • Need some information on the Satellite A100-474 screen refresh rate

    Hello.
    Good time of day.

    I try install asp linux on my laptop. To configure X Windows I have to configure horizontal and vertical refresh of the screen (Toshiba TruBrite WXGA TFT).
    Any ideas how I can find these values?

    With respect and graditude, Raven.

    Hello

    Unfortunately, I found that the information the Satellite A100-474, which belongs to the PSAA9E series has been delivered with the 15.4 screen "and max. 1280 x 800 WXGA resolution.
    As far as I know it is developed by Samsung and it is a part number: LTN154X3-L06-H0A.

    Did you look in the user manual? I think that the manual provides some useful information under Schedule A; Technical characteristics.
    It should be for information about the video modes as the resolution of the CRT screen, color depth (bpp), and refresh rate (hz).

  • Windows Explorer has stopped working windows is collecting more information about the windows problem restarts what is the fix

    Is not allowing me to access my computer, don't constantly message restarts message windows.   Process is underway, need help.  I loged as a guest on the computer problem not if badly - however, it does not go to all the pages and begins to have a similar message to say windows cannot open this page, even if it often is in the page and it stops.

    a response would be email to me - thanks

    Hello

    1 have had any changes made to the computer before the show?

    Please follow the steps in the link.

    Important: before you perform an upgrade in-place, you must be prepared for the worst scenarios that led to your existing data on your computer being deleted. These data include data personal, settings, information about the hardware and software drivers. In case of a worst case scenario, you may have to reinstall all the programs. Make sure that you back up personal data to disks or other external storage devices before performing an upgrade on the spot.

    Error: Windows Explorer has stopped working

    http://support.Microsoft.com/kb/2694911

    Reference link:

    Explorer Windows stopped working

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-performance/Windows-Explorer-has-stopped-working/6ab02526-5071-4DCC-895F-d90202bad8b3

Maybe you are looking for

  • Re: Map of Satellite A350 ATI graphics driver needed

    Hello A few weeks before, I bought a Satellite A350. I installed Windows XP and I can not find the drivers for the card of graphis. This laptop seems to be to use a card ATI Mobility Radeon 3650. The ATI website, there are drivers for the cards 'Rade

  • What allows before USB2 connector on M57 (6075-AFU)

    Hello I recently got a hand on a rear USB support in series with two connectors usb on this subject. The M57 dekstop (6075-AFU) I have has a Front USB1 and USB2 Front connector on the motherboard. Obviously, the Front USB1 connector is used by the fr

  • Pro9000mkII

    Hello I have a new printer (8 weeks), but sometimes it will print a partial picture then eject paper, the amount that it prints varies from printing to printing and he sometimes finishes printing. Pointers would be appreciated thanks JEREVE

  • WMP distorts his dvd, yet other readers multimedia (WinDVD, PowerDVD) play very well?

    The sound is distorted when playing dvd on wmp 11. However, when you play the same dvd WinDVd or PowerDVD quality sound and picture are fine. I downloaded Windows XP Video Checkup Utility, and he indicated that none of my MPEG-2 decoders were compati

  • XP will not let me turn on the firewall

    I try to turn on the firewall, but it doesn't allow me to do. I have McAfee and AVG installed on my XP.