Creating an Image of 2003 server and add drivers LTO

Hello

I was given a task of cloning our Server 2008 system, Server 2003 on it, then add new Server 2008 after; but I think there is a much easier way, which is simply create a Server 2003 image and use it with VMWare.

What we're trying to accomplish is to recover files from our old tapes, and we have a problem with the HP Library and Tape Tools program to recover the data.

My question is, are there drivers that support by adding the HP StorageWorks Ultrium 920 to a Virtual Machine? It will also recognize the Ribbon when it is inserted? How can I add a tape drive to the VM?

In my view, this is a much easier option (creating a virtual machine) that cloning, imaging, cloning etc etc etc.

Please notify.

try to add to the virtual machine as "SCSI device" generic then

Tags: VMware

Similar Questions

  • How do I download an image from a server and store it in EncodeImage

    How to download an image from a server and store it in EncodeImage?

    It allows you to create an EncodedImage object. so that you can upload an image from a server, you can use HttpConnection to send a request to your server. Then, your server can return the image file. Since he will cross the stream, you can read and store it in a "byteArray". so the ByteArray, you can generate an EncodedImage by calling the EncodedImage.createIncodedImage (byteArray). now that you already have a coded picture.

  • I lost the connection to Windows 2003 server and through the connector.

    I lost the connection to Windows 2003 server and through the connector.

    original title: WHS connector has stopped working.

    Hi Mjopritchard,

    The question you have posted is related to Windows Home server and would be better suited to the Windows Home server community.
    Please visit the following link to find a community that will support what ask you:

    Support for Windows Home Server

  • Image taken from server and display on the screen

    Hello Sir

    I'm new to the development of Blackberry, I use a webservie that returns the image in . Its a Web service written in DotNet Framework. I'm trying to convert bytes it so that I can conver bitmap and use it on the screen.

    I think I'm losing a date when the dat of conversion to Byte]

    connection_for_image image_connection = new connection_for_image();

    raw Byte [] = image_connection.get (URL);
    Dialog.Alert ("control returned 1 size =" + raw.length);
               
    try {}
                      
    Bitmap_image bitmap = new Bitmap (Bitmap.ROWWISE_MONOCHROME, 50, 50, gross);
                        
    Image BitmapField = new BitmapField (bitmap_image);
    Add (image);
                     
    } catch (Exception e) {}
    Dialog.Alert ("catch" + e.getMessage ());
    }

    After running the above code a few image is displayed in black and white, but even once, is not the image I am downloading from webservice.

    In the connection class that I'm parsing the data type in bytes using following code

    data Byte [] = null;

    I have String = d.MySplitName (content, "",")<>
    data = i.getBytes ();
    return data;

    Here, I'm a little frustrated because you don't seem to listen to what I tell you.

    "How to convert byte [] Base64Binary data.

    "Is there a way by which I can convert the base64Binary byte data.

    Please read carefully what I suggested that you make.  You should be able to determine the raw bytes that has your Web server.  The Web Service then converts it to text he sends you.  You should be able to convert it to bytes that were originally used.  You have enough information in this thread already do.  Please confirm this part of the treatment before you do anything else.

    "then use these data to display the byte [] in the bitmap file.

    That's where I think your problem is.  Look at the code I gave you in the last post.  But you will need to know the format of the raw bytes that are stored on your Web server and sent to you.  Then find a way to convert them into a Bitmap image on the device - method may depend on how the bytes are stored on your Web server.  It might be that the bytes that are sent to you are already in a Blackberry bitmap format, but I doubt it.

    So please make sure that you have correctly found the bytes of the raw image.  When this is correct, you know that your network stuff working.  Once you've done that, then you have to find a way to convert the bytes of the Bitmap image.

    If the byte [] is supported by JSR 172 is not relevant at this stage.

  • Error on image from the server and display streaming

    Hi all

    Im trying to read an Image that origin of the server and displays on a screen

    Here's the code I'm using to broadcast the image.

    It is streaming on my Simulator as well as on some devices.

    But on some devices, it's not streaming and throw an exception.

    public UrlToEncodedImage(String url)
    {
    HttpConnection connection = null;
    InputStream inputStream = null;
    byte[] dataArray = null;
    
    try
    {
    connection = (HttpConnection) Connector.open(url+getConnectionString(), Connector.READ, true);
    inputStream = connection.openInputStream();
    byte[] responseData = new byte[10000];
    int length = 0;
    StringBuffer rawResponse = new StringBuffer();
    while (-1 != (length = inputStream.read(responseData)))
    {
    rawResponse.append(new String(responseData, 0, length));
    }
    int responseCode = connection.getResponseCode();
    if (responseCode != HttpConnection.HTTP_OK)
    {
    throw new IOException("HTTP response code: "+ responseCode);
    } 
    
    final String result = rawResponse.toString();
    dataArray = result.getBytes();
    }
    catch (final Exception ex)
    { }
    
    finally
    {
    try
    {
    inputStream.close();
    inputStream = null;
    connection.close();
    connection = null;
    }
    catch(Exception e){}
    } 
    
    bitmap = EncodedImage.createEncodedImage(dataArray, 0,dataArray.length);
    // this will scale your image acc. to your height and width of bitmapfield
    
    int multH;
    int multW;
    int currHeight = bitmap.getHeight();
    int currWidth = bitmap.getWidth();
    if(currHeight>350&&currWidth>350){
        bitmap=scaleToFactor(bitmap,currWidth,currHeight,Display.getWidth()-20,250);
    }
    
    }
    public EncodedImage getEncodedImage()
    {
    return bitmap;
    }
    public  EncodedImage scaleToFactor(EncodedImage encoded, int curWidth, int curHeight, int newWidth,
            int newHeight)
    {
         int numerator_width = Fixed32.toFP(curWidth);
         int denominator_width = Fixed32.toFP(newWidth);
         int scale_width = Fixed32.div(numerator_width, denominator_width);
    
         int numerator_height = Fixed32.toFP(curHeight);
         int denominator_height = Fixed32.toFP(newHeight);
         int scale_height = Fixed32.div(numerator_height, denominator_height);
    
         return encoded.scaleImage32(scale_width, scale_height);
    }
    private static String getConnectionString()
    {
        String connectionString = null;
        if(DeviceInfo.isSimulator())
        {
                if(UrlToEncodedImage.USE_MDS_IN_SIMULATOR)
                {
                       connectionString = ";deviceside=false";
                }
                else
                {
                       connectionString = ";deviceside=true";
                }
        }
        else if(WLANInfo.getWLANState() == WLANInfo.WLAN_STATE_CONNECTED)
        {
           connectionString = ";interface=wifi";
        }
    
        else if((CoverageInfo.getCoverageStatus() & CoverageInfo.COVERAGE_DIRECT) == CoverageInfo.COVERAGE_DIRECT)
        {
            String carrierUid = getCarrierBIBSUid();
            if(carrierUid == null)
            {
             connectionString = ";deviceside=true";
            }
            else
            {
               connectionString = ";deviceside=false;connectionUID="+carrierUid + ";ConnectionType=";
            }
        }                
    
       else if((CoverageInfo.getCoverageStatus() & CoverageInfo.COVERAGE_MDS) == CoverageInfo.COVERAGE_MDS)
        {
          connectionString = ";deviceside=false";
        }
    
       else if(CoverageInfo.getCoverageStatus() == CoverageInfo.COVERAGE_NONE)
        {}
        else
        { connectionString = ";deviceside=true";} 
    
        return connectionString;
    }
    private static String getCarrierBIBSUid()
    {
        ServiceRecord[] records = ServiceBook.getSB().getRecords();
        int currentRecord;
    
        for(currentRecord = 0; currentRecord < records.length; currentRecord++)         {             if(records[currentRecord].getCid().toLowerCase().equals("ippp"))             {                 if(records[currentRecord].getName().toLowerCase().indexOf("bibs") >= 0)
                {
                    return records[currentRecord].getUid();
                }
            }
        }
    
        return null;
    }
    

    The underlined part of the code is where the uid is sent as public _.

    Please, look in the code and let me know where the error is, or is there a better way to disseminate the image.

    In the hope that you hear.

    Thank you & best regards

    Krishnan

    Hello

    I found the error.

    It's in the URL sent by the server.

    The URL consisted of http://google.com

    But the format required to retrieve the image on several device would be http://www.google.com.

    Thanks for anyone who tried to help him.

    Krishnan.

  • randomly created 31/12/2000 2003 server file

    A random file is created and then removed in a server environment 2003 with a timestamp of 31/12/00 18:00.  Only, there are for a short period of time and disappeared before I have a chance to see what type of file it is.  However, it lasts long enough to trigger an alert that there is an old file.  All the world has already lived this kind of random behavior?  A couple of things:

    (1) it does not appear in the same folder

    (2) it happens at random times throughout the day, day of the week makes no difference

    (3) the timestamp of this file is always the same

    Any thoughts would be greatly appreciated.  Thank you!

    Hi PaulMassey,

    Your Windows Server 2003 issue is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public. Please post your question in Windows Server 2003. You can follow the link to your question:

    http://social.technet.Microsoft.com/forums/en-us/winservergen/threads

  • Alignment of disc - Windows 2003 Server and NetApp

    I recently installed a couple of the virtual machine that will host Lotus Domino providing mail to about 400 users per server.

    Virtual machines on ESX 3.5 HP DL585 4 * Quad Core with 32 GB memory, 2 * 6 HBA * NIC with a drive of 15K FC NetApp 3140c storage

    I created a VMDK file for Notes data and used a PART of DRIVE to create the partition sho it is aligned on 64 k blocks and then formatted the partition with blocks of 32 KB (in line with the alignment of disc).

    When I look in disk management, the partition created by using the PART of the DISC is a base and not on a dynamic Partition partition.

    My qustion is... If I change the partition to dynamic it cancel alignment jobs and produce a slower reaction of the I/O?

    Thank you

    Expansion VMDK and getting Windows to use space extra is also really easy too and can be done while the virtual machine is online (except the system drive, but it's just a little more effort)

    I would recommend avoiding dynamic disks. Where I work, we have thousands of Windows servers and I never remember coming across with dynamic disks.

  • Impossible to update Alpha UI - incredibly slow server and connection drivers

    I have tried for more than 2 hours to download a update of 84.5 MB (Alpha UI 3.0.5.8), and it keeps giving up the connection. Could someone please look into this? I have 2 other systems (Macs) at home, and all are facing the same problem. My Wi - Fi and wi - fi network and all other web services (and the download speed internet 100 MB) are completely solid. This is just isolated to the downloads.dell.com server. It is broken? This is a mandatory update, so I can't use my new system without it. It's very frustrating, because I downloaded 23 GB worth other files at the same time that 50% of the download ended with several connections interrupted (and now it says "this page cannot be displayed"). Help, please! Thank you.

    It seems that they have set. My download time is now about 35 to 40 minutes for a 685 MB file.

  • Upgrade virtual Center 2.02 VC 2.5 on the new server. Upgrade ESX 3.02 ESX Server 3.5. and add the new ESX Server.

    Hello

    We are due to upgrade our VMWare environment. ESX 3.02 x servers virtual Center 2.02 and 3.  We have new material on which to install Virtual Center and we are also adding a new ESX Server.

    I read various guides for virtual center upgrade and watched questions on the forum, but can not see everything that relates to the way I thought to do. I want to install Virtual Center 2.5 on the new server and I would refer her to the current virtual cenre database.  Is this supported?

    I then install ESX 3.5 on my new ESX Server and add it to the virtual Center. Then I would start the upgrade / rebuild other servers using VMotion to migrate all VM the next server to be rebuilt on the new server running ESX 3.5.

    Would this work.

    What is the best way to upgrade the virtual center of new material and a new Version?

    Thank you for all the advice that can be offered.

    Kind regards.

    Kevan

    Kevan says:

    I read various guides for virtual center upgrade and watched questions on the forum, but can not see everything that relates to the way I thought to do. I want to install Virtual Center 2.5 on the new server and I would refer her to the current virtual cenre database.  Is this supported?

    Yes, it is an upgrade that is supported.  Don't forget there will be an upgrade for your DB schema and it may take some time.  Just make sure that you have a good backup of your DB before you start.

    I then install ESX 3.5 on my new ESX Server and add it to the virtual Center. Then I would start the upgrade / rebuild other servers using VMotion to migrate all VM the next server to be rebuilt on the new server running ESX 3.5.

    I agree entirely, I drive rebuild is the way to go.

    Would this work. > What is the best way to upgrade the virtual center of new material and a new Version?

    Upgrade to the current version using the .iso image file.  Don't forget the license server, which is a standalone update and are located in the folder /vpx of the vCenter .iso

    Upgrade path:

    1 vCenter

    2 ESX

    3 VMware Guest Tools

    Thank you for all the advice that can be offered.

    I hope that was a little helpful as well

    http://www.VMware.com/PDF/vi3_35/esx_3/r35u2/vi3_35_25_u2_upgrade_guide.PDF

  • Create the image with black and white patterns

    Hello

    With the attached VI I am able to create an image that is completely black (or white or any color according to values in the color palette). See picture1.

    Is it possible to create an image as photo 2 and photo 3 or any other form which consists of black and white patterns? I need an image with black and white areas that a camera can recognize.

    Thanks for any help.


  • 7B blue screen on each computer virtual created from image

    I'm running a few servers ESXi 4.1 for an emulated production environment. I am to take the acronis backup images of the production (taken with Acronis Advanced Backup and Recovery 10) environment and put them into our test environment. The machines operate all Win2K server via win2k8 R2. I spent several days to get 2 virtualized domain controllers (both 2 k 8 R2) but was finally able to do it with the help of sanbarrow.com and a lot of testing.

    The procedure I used is to create a new virtual machine with a configuration similar to the existing machine has (get the right OS, appropriate disks and sizes, etc..) I add 2 cd discs and ride with the bootable Acronis CD and the other with an ISO of the. TIB images. I have essentially treat the virtual environment than physical and do the traditional Acronis restore inside the virtual machine. I settled on this method after trying the VM converter and it constantly not recoginizing the source format (I was unable to convert everything. TIB images)

    Ive been able to get the 2 DCs 2k8R2 and 1 machine client XP and all the world from 20 virtualized or if I have left to go through this process and then blue screen with the error 0x0000007B in INNACCESSABLE_BOOT_DEVICE. Ive gone and checked the boot.ini file and it seems to be pointing to the right location, ive tried with all types of controller 3 and getting similar errors. In view of its happens on almost all of them, would be the only thing I could think it is a driver problem. These are pretty standard machines, Dell workstations for most and some Dell servers. I can't install/modify/change anything on the production environment, then I have just the images to work with. Ive read through http://kb.vmware.com/selfservice/microsites/search.do?cmd=displayKC & externalId = 1005208 this on the injection of SCSI driver in the installation program, but which requires to change the machine and get new images. IM wondering; Since I can navigate through the image, can I participate and add or remove a driver from there to help the process? Ive also looked by http://kb.vmware.com/selfservice/microsites/search.do?cmd=displayKC & externalId = 1006626 do im sure works do not anything he would fault upward. The only software I can think that may is 'Diskkeeper' which is a software of defragmentation/optimization that we run on most of our production machines, but I'm not sure that it manages the disks under the level of the BONE.

    Any suggestion would be appreciated, im working under a lot of restrictions and some take it hard!

    I didn't not join .vmx files since there are so many machines but I can't as necessary.

    Welcome to the community,

    have you tried to use the VMware Converter Standalone again. It has an option 'Configure Machine' that allows to inject the appropriate drivers to a virtual machine that does not start.

    André

  • Download the image to the directory and database of the same form data

    Hi all

    I play to build a shopping cart (never done before) a tutorial of Gordon Knapp at www.webthang.com.

    I created the site and it works perfectly. Now, I want to extend it.

    There is a form that allows the user to add data to the database. I would also like to be able to transfer an image to a directory on the server and add the data to the database at the same time of the same shape. It would be good if the input field "< input name ="product_picture"type ="text"id ="product_picture"tabindex ="6"size ="50"/ >" could be filled automatically by the file name of the image being downloaded, but it's not a neccessity.

    I looked at different packages ASP Upload and I can upload a single image, but none of them clearly show how to download the image and add data to the database at the same time.

    It is a private project I need suggestions for free.

    The tutorial shows how to create Dev Ultra site but works perfectly well in DW. The page looks like this. It is named "admin_add.asp":

    "< %@LANGUAGE="VBSCRIPT "CODEPAGE ="65001"% >
    "" <!-#include = file '... / Connections/con_ecom.asp "-->
    < %
    Dim MM_editAction
    MM_editAction = CStr (Request.ServerVariables ("SCRIPT_NAME"))
    If (Request.QueryString <>"") then
    MM_editAction = MM_editAction & "?" & Server.HTMLEncode (Request.QueryString)
    End If

    'boolean to abandon a record edition.
    Dim MM_abortEdit
    MM_abortEdit = false
    % >
    < %
    "Implementation of the IIR.
    Function MM_IIf (condition, ifTrue or ifFalse)
    If condition = "" then
    IfFalse = MM_IIf
    On the other
    IfTrue = MM_IIf
    End If
    End Function
    % >
    < %
    If (CStr (Request ("MM_insert")) = "add_form") then
    If (not MM_abortEdit) then
    'execute the insert.
    Dim MM_editCmd

    Set MM_editCmd = Server.CreateObject ("ADODB.Command")
    MM_editCmd.ActiveConnection = MM_con_ecom_STRING
    MM_editCmd.CommandText = "INSERT INTO products (product_category product_name, product_price, product_briefdesc, product_fulldesc, product_picture) VALUES (?,?,?,?,?,?)".
    MM_editCmd.prepared = true
    MM_editCmd.parameters.Append MM_editCmd.CreateParameter ("param1", 202, 1, 50, Request.Form ("product_category")) ' adVarWChar
    MM_editCmd.parameters.Append MM_editCmd.CreateParameter ("param2", 202, 1, 50, Request.Form ("product_name")) ' adVarWChar
    MM_editCmd.parameters.Append MM_editCmd.CreateParameter ("param3", 5, 1, -1, MM_IIF (Request.Form ("product_price"), Request.Form ("product_price"), null)) ' adDouble
    MM_editCmd.parameters.Append MM_editCmd.CreateParameter ("param4", 203, 1, 536870910, Request.Form ("product_briefdesc")) ' adLongVarWChar
    MM_editCmd.parameters.Append MM_editCmd.CreateParameter ("param5", 203, 1, 536870910, Request.Form ("product_fulldesc")) ' adLongVarWChar
    MM_editCmd.parameters.Append MM_editCmd.CreateParameter ("param6", 202, 1, 50, Request.Form ("product_picture")) ' adVarWChar
    MM_editCmd.execute
    MM_editCmd.ActiveConnection.close

    ' add the query string to the redirect URL
    Dim MM_editRedirectUrl
    MM_editRedirectUrl = "admin_control.asp".
    If (Request.QueryString <>"") then
    If (InStr (1, MM_editRedirectUrl, "?", vbTextCompare in) = 0) then
    MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
    On the other
    MM_editRedirectUrl = MM_editRedirectUrl & "" & Request.QueryString
    End If
    End If
    Response.Redirect (MM_editRedirectUrl)
    End If
    End If
    % >
    <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN".
    " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ".
    "< html xmlns =" http://www.w3.org/1999/xhtml "> "
    < head >
    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"
    < title > Administration - add a < /title > product
    "" < link href = "... / scripts/admin.css" rel = "stylesheet" type = "text/css" / >
    "< script type =" text/javascript"src ="... / scripts/ecom.js "> < / script >"
    < / head >

    < body onLoad = "adminTitle ()" >
    < div id = 'wrapper' >

    < div id = "pageHeading" > ADMINISTRATION - add a PRODUCT < / div >

    < div id = "navBar" > < a href = "admin_control.asp" > < /a > control | " Add | < a href = "admin_view.asp" > view < /a > | < a href = "admin_update1.asp" > update < /a > | < a href = "admin_delete1.asp" > delete < /a > | "" < a href = "... / Default.asp" > shop < /a > < / div >

    < br / >

    < name of the form = "add_form" id = "add_form" method = "POST" action = "< % = MM_editAction % >" >
    < table border = "1" align = "center" id = "tblArea" >
    < b >
    < class td = "tdLabel" > < table > product category
    < td colspan = "2" > < input name = "product_category" type = "text" id = "product_category" tabindex = "1" size = "50" / > < table >
    < /tr >
    < b >
    < class td = "tdLabel" > Product Name < table >
    < td colspan = "2" > < input name = 'product_name' type = 'text' id = 'product_name' tabindex = "2" size = "50" / > < table >
    < /tr >
    < b >
    < class td = "tdLabel" > < table > product price
    < class td = "tdContent" colspan = "2" > < input type = "text" name = "product_price" id = "product_price" tabindex = "3" size = "50" / > < table >
    < /tr >
    < b >
    < class td = "tdLabel" > product short Description < table >
    < class td = "tdContent" colspan = "2" > < textarea name = "product_briefdesc" id = "product_briefdesc" cols = "47" lines = "4" tabindex = "4" > < / textarea > < table >
    < /tr >
    < b >
    < class td = "tdLabel" > full < table > Product Description
    < class td = "tdContent" colspan = "2" > < textarea name = "product_fulldesc" id = "product_fulldesc" cols = "47" rows = "5" tabindex = "5" > < / textarea > < table >
    < /tr >
    < b >
    < class td = "tdLabel" > < table > product Image file name
    < class td = "tdContent" colspan = "2" > < input name = "product_picture" type = "text" id = "product_picture" tabindex = "6" size = "50" / > < table >
    < /tr >
    < b >
    < class td = "tdLabel" > < table >
    < td align = "center" > < input type = "reset" name = "Reset" id = "Reset" value = "Reset form" / > < table >
    < td align = "center" > < input type = "submit" name = "Submit" id = "Submit" value = "Add to the shop" / > < table >
    < /tr >
    < /table >
    < input type = "hidden" name = "MM_insert" value = "add_form" / >
    < / make >

    < / div >
    < / body >
    < / html >

    Hope you can help.

    Best regards

    Martin

    Have sorted it.

    Found an excellent tutorial to Webthang.

    http://www.webthang.co.UK/Tuts/tuts_dmx/rob15/rob15.asp

  • can I install Windows 2003 server in my computer hp laptop pav14-v021tu

    Hai

    My system came with windows 8, when I bought.

    But now I thing I finstalling windows server 2003 in this laptop, I heard from my local technician some computers laptops hp does not support Server 2003 (he said need some drivers from hard disk sata hard or something like that)

    As I have not super-hotel with this stuff,

    some we can't so please say argues this model the windows sever 2003 if so this laptop has no other than the Server 2003 addinational drivers to work

    Thank you

    Hello:

    The technician is correct on the sata drivers are needed.

    The problem is that your laptop is an Intel 4th generation of processor and chipset of the 8 series.

    Intel develops not all drivers sata for this chipset, so windows XP and 2003 server will not install on the PC with this chipset.  Nor are there at - he graphics drivers for Windows 2003 server, and probably many other features would not have driver support for hardware that your PC has.

  • (2003 server) error 2019: the server was unable to allocate from the system non-paged pool because the pool was empty

    Hello

    I have a Windows 2003 server and get error (Server 2003) 2019: the server was unable to allocate from the system non-paged pool because the pool was empty.

    If anyone has encountered this error and has an instruction step by step to solve this problem please let me know.

    appreciate the help!

    Sincerely,

    Riaz

    This issue is beyond the scope of this site (for consumers) and to be sure, you get the best (and fastest) reply, we have to ask either on Technet (for IT Pro) or MSDN (for developers)

    If you give us a link to the new thread we can point to some resources it
  • How can I run a program with win xp have a restricted user account type in the title of windows 2003 Server domain controller?

    Dear all,

    I have a windows 2003 server and I have a domain controlor.

    I have win xp use in this field, the account type for these users are not administrator users and restricted users.

    When I need to install a program in any of these workstations, I need to disconnect the user restucted and the journal as an administrator user.  When installation is finished, I can run this program from the administrator user but when I closing session and connection for users user restruct I can not run this program and an error.

    My question is: How can I use this program with the user of gods?

    Thank you

    You would be better that tag on your workstation
    Windows Server - how to configure the group policy in windows server 2003 to remove the start in the start menu to xp pro user Expert MowGreen Windows IT Pro - consumer safety

Maybe you are looking for

  • Qosmio F10: Question about RAM upgrades

    Hello I have a laptop Qosmio F10, and it crashed in the summer 2006, so I sent it to Toshiba and changed it the motherboard. I got a new version with the nVidia card 6600 and I have 2x512MB PC2700S DDR - RAM (the one that came with it, the one I adde

  • DC5800 bios update

    I have a HP Compaq originally shipped with XP Pro dc5800 and now has Window 7 Pro.  The reference is AK819AW #ABA.  He has BIOS version 786F2 v01.04 dated 31/01/2008.  I was looking on the HP site for an update of the BIOS for it and found nothing in

  • No executable polygon

    Guy! I know that there are some old thread for this. but I just want to ask... I can't start my IMAQ polygon... I have download and intall run Time Vision and Vision Development Module 2013. I just follow the VI that uses an example of a polygon. I'l

  • revoked

    My copy of Adobe Creative Suite 6 had revoked series, how can I fix it.I tried to find a way to contact support, but taking the round in circles getting nowhere fast.

  • When I watch videos in youtube my laptop cranked with noice

    1 HP pavilion NOTEBOOK PC - QA911EA #ABV g6 2 WINDOWS 7 3. NO ERROR MSG 4. NO CHANGES MADE I USE HP LAPTOP 5 YEARS WITHOUT ANY PROBLEM, SO I TRUST AND PREFAREHP. NOW I HAVE BAUGHT 2 PORTABLE 17/09/2011 IN DUBAI TO DEIRA CITY ALGHURIAR PLUGINS. SAD NE