XP on a new build - want to just encode faster video to dv - avi, mpeg2 and mpeg4.

Hello, I am planning to build a new computer with a gigabyte MB z68 chipset.  I don't want to use windows 7 due to a lot of old program that I really like.  Will there be problems with the chipset drivers, and God knows what other drivers.  I am now happy with XP Pro on my P4 and want to just encode faster video to dv - avi, mpeg2 and mpeg4.

Why do you want to build a new computer? Just add the last graphics card, compatible with windows xp, with the latest drivers

Tags: Windows

Similar Questions

  • I want to just convert a virtual computer model... and I owe the clone to the model?

    can you just convert a VM directly to a model? I'm used to using the windows client, I carefully use the webclient service because VMware forces my hand. I hate it.

    I want just to convert a virtual machine in a model. I don't see this option. I see an option to CLONE to a template, but I don't want a clone. I don't want 2 copies. IT seems that it is perhaps the only option with the web client? Am I missing something? And then to turn back, I copy the model to model or something? At VMware really derailed this much?

    Client Windows worked fine. Customer Web is painful.

    Yes, you can convert a virtual machine to a model using the Web Client. See the attached screen photographed... where is the option for her.

  • How to stop opening two windows when I clicon an e-mail, home page link and the link both open. I want to just link to open

    How to stop opening two windows when I click on an e-mail link, the home page and the link that the two open. I want to just link to open

    I deleted cookies and tried to stop this site to open, but it opens, however, how to stop it! I have young children in the House and we don't need that sort of thing...

  • Just installed Firefox 9.0.1. When you open a new browser session, two tabs will open. One is my home page, and the other is a home page of Firefox. I want to just my home page to open. How do I get there? Thank you.

    Just installed Firefox 9.0.1. When you open a new browser session, two tabs will open. One is my home page, and the other is a home page of Firefox. I want to just my home page to open. How do I get there? Thank you.

    See the following for a few suggestions:

  • I downloaded the Adobe Pro 9 Setup program on a new mac and it says that it can not be installed because it comes from an unidentified developer. I have a serial number and want to just 9 Pro on my new machine

    I downloaded the Adobe Pro 9 Setup program on a new mac and it says that it can not be installed because it comes from an unidentified developer. I have a serial number and want to just 9 Pro on my new machine

    How to open third-party applications to developers not identified in Mac OS X "Mac tips.

  • Creating a new build configuration

    wants to create a new configuration in Momentics in this compiles differently my app (it will pass a few macros to the compiler C preprocessor when my project is built).

    Let's say I want to base it on the release device, but I want to call device-release-test instead. I can see how to do this step through the IDE already: (project-> Build Configurations-> Manage)

    This will (I assume) build my project on top of the arm/o-le.v7/ directory. What I want, is to have the project built in a new location, so that I can ensure that my binary output never get confused upward.

    I want this configuration rather to be built under the arm-test /o - the .v7 / directory. I believe that this should be possible because the 'Device-profile' configuration made something similar, with builds end up under the arm-p.

    My question is, how is the build in momentics configuration (stored in the .cproject configuration file) specifies this change? I can see the configuraiton of 'Device-profile' in the directory .cproject - but there is no reference to a 'arm-p' directory, and there is nothing in the file PRO of my app which gives an indication of a configuration of 'profile '.

    I grep has my entire code base and I don't see how to do it - but it must be possible. What I'm missing here?

    I figured out how to do this, in case anyone else is interested. The key is to understand that the compilation life cycle begins with the brand and not qmake / myapp.pro I first thought.

    By default, a Makefile waterfalls looks like:

    QMAKE_TARGET  =  myapp
    PROJECT_DIR   := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)))
    I18N_DIR      := $(PROJECT_DIR)/translations
    
    include mk/cs-base.mk
    

    The cs - base.mk (found in your NDK) contains everything you need to understand how the process works. In cs - base.mk you can see the built-in rules for unit-Debug, device-liberation, Simulator-Debug configurations. These are hard-coded in the build system.

    You do not want to change cs - base.mk to add your own configurations, to fix this add the following lines at the end of the Makefile in the root of your application:

    QMAKE_TARGET  = myapp
    PROJECT_DIR   := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)))
    I18N_DIR      := $(PROJECT_DIR)/translations
    
    include mk/cs-base.mk
    
    # add the following:
    arm-test/Makefile: $(QMAKE_TARGET).pro
    
    Device-Test-Release:
       $(info ***** This is my custom make target ***** )
       @mkdir -p arm-test
       cd arm-test && $(QMAKE) -spec blackberry-armv7le-qcc ../$(QMAKE_TARGET).pro CONFIG+=release CONFIG+=device CONFIG+=test
       $(MAKE) -C ./arm-test -f Makefile release
    

    I wasn't the most appropriate copy rules of cs - base.mk and defined my own rule for the configuration of device-Test-version. The foregoing rules follow these steps:

    1. Creates the arm-test directory
    2. Adds 'test' to the variable CONFIG - this will be available in my PRO account

    Now, you must create a new Configuration of build in the momentics IDE.

    1. Right click on your project in the project (myapp) Explorer. From the context menu, select:
    2. -> Manage the Build Configurations

    In the dialog box handle Configurations, click 'new '.... "and create a new configuration called 'Device-Test-Release' (or whatever you wish to call your. Make sure that copy you the settings from a Configuration of 'existing '. Choose the most appropriate for your scenario. In my case, I started my new configuration of generation on 'Device-Release.

    At this stage, you select the new build configuration when you build your project:

    1. Right click on your project in the Project Explorer
    2. Build - Configuraitons-> current value
    3. Select the new "device-Test-version" configuration.
    4. Build!

    However, you will find that different nothing happens. This is because the device-Test-version is based on device-release, so exactly the same thing happens when build you. Therefore, change the device-Test-version so that our custom in our makefile rule is called, instead of the default peripheral release target

    Bring up the project properties:

    1. Right click on your project in the Project Explorer
    2. Select Properties
    3. Goto the tab generating C/C++
    4. Select Device-Test-version in the Configuration drop-down list
    5. The behavior of Goto tab
    6. There is two-text fields ('Generation on resource save' and 'Building')
    7. Change the textfields that say "Device-liberation" for "Device-Test-Release.
    8. Click on apply

    The procedure above "links" your configuraiton of build in the IDE, with the brand target in your Makefile. Now, when you build your project (in the configuration of the device-version-Test), it will be integrated in the arm-test / directory

    There are still two other things you need to do if:

    Edit your file of bar - descriptor.xml and add a new configuration, based on what you see for release device. Just copy the article release device that is already defined, as follows:

    
      Qnx/Cascades
      armle-v7
      myapp
    
    

    You must make sure that the arm-test folder and of course change

    Once you have done this, you can finally edit the myapp.pro file and specify some custom in there rules. I didn't add the following rule:

    # put this in the myapp.pro file
    
    test {
      DEFINES += TEST_BUILD_WHOOP
    }
    

    Don't forget the ' test of += CONFIG "that we put into the Makefile project? In the PRO file above, we leverage this by creating a test rule {}, which applies only when we build the configuration of device-Test-version. Whenever the rule of test runs, we can add a TEST_BUILD_WHOOP preprocessor definition. Now every time our source files are compiled (in the test configuration), the TEST_BUILD_WHOOP macro is defined, and we can put custom code that gets compiled only when we test.

    for example in your myapp.cpp file:

    #ifdef TEST_BUILD_WHOOP
    
    /* whoohoo! building for test */
    
    #endif
    
  • Install Win7 64 bit update on the new build machine

    Initially, I bought a Dell machine with Win XP installed on it, that was obviously an OEM installation. Later, I bought an update to Win7 (boxed version containing two DVD - 1 x 32 bit and 1 x 64-bit).

    I looked at the product key on the System Properties screen and it does not contain the letters OEM, then it means that when I upgraded the operating system he converted it from version OEM to a retail version?

    The reason for my question is that I intend to use this system for donor parts and build a new one, but it will contain a different MB, CPU and RAM, which if I understand correctly this is what the OEM versions are related to. Building the new system, I will seek to install the 64-bit version rather than the 32-bit on the current computer.

    And just to confirm, the old system definetely will be out of use and therefore discarded. I don't mean to reproduce the number of facilities, any transfer from one machine to the other.

    Thanks in advance
    Steve

    Hi Noel, thanks for your response.

    I have to admit your backup response I expected in the case, but...

    Since my original post, I have been informed of "Universal PID Checker", I used to check my current installation (the one I'm looking for scrap) and he informed me that I have a retail version.

    If I will have to just suck it and see?

    With a question mark above it, I do not want to splash out on a new license if it is not needed.

    You will need to invest in a new full version license, because the machine you build will not have an existing previous license eligible to use the upgrade version.

    You can try the following and see if it works:

    How to do a clean install with upgrade disc:

    Boot from the Windows 7 DVD

    Click Install now

    Accept the license agreement

    When the option is displayed to select a type of installation, click (Custom advanced)

    Click on drive Options

    Select the disc/s click on Delete

    Click new

    Click on apply

    Click OK

    Click Format, and then click next to proceed with the installation

    Skip entering your product key Windows 7 and complete the installation.

    When you reach the desktop, click Start, right-click on computer

    Click on properties

    Scroll down to the Windows Activation

    Click the link x days before activation.

    Click on the link that says: "show me other ways to activate.

    Enter the product key

    Click next

    Select the Activation of the phone

    Click Next when you enter your key page

    Select your country

    Click Next, call the number listed

    Be sure to explain your situation to the Appeals Officer.

    Provide the installation generated when ID requested by the call agent

    They give a confirmation ID in return, enter it

    Click next to complete the activation.

    However, the requirements for the media upgrade is that you have an operating system already eligible such as Windows XP or Vista installed to use it. Since the Windows 7 end user license agreement.

    15 UPDATES. To use upgrade software, you must first be licensed for the software that is eligible for the upgrade. After the upgrade, this agreement takes the place of the agreement for the software that you upgraded. After upgrade, you can no longer use the software that you upgraded.

    So, if you are always denied, you will just have to reinstall Windows XP or Vista and let it do the verification of eligibility.

    or

    How to activate Windows 7 manually (activate by phone)
     
    1) click Start and in the search for box type: slui.exe 4
     
    (2) press the ENTER"" key.
     
    (3) select your "country" in the list.
     
    (4) choose the option "activate phone".
     
    (5) stay on the phone (do not select/press all options) and wait for a person to help you with the activation.
     
    (6) explain your problem clearly to the support person.
     
    http://support.Microsoft.com/kb/950929/en-us

  • Hi I am new to Oracle forms and reports I want to know the differences between the Enter query mode and Normal mode?

    Hi I am new to Oracle forms and reports I want to know the differences between the Enter query mode and Normal mode?

    Welcome to Oracle Forms!  Out of curiosity, what do you mean by 'new '?  You are a student or new to an organization that uses Oracle Forms?  Or just play with Oracle Forms to learn something new?

    Let me start by saying that many of your questions designtime can answer by searching in the help of the constructor of the form library.  It's accessible, like most of the other products in the Builder menu > help.

    Regarding your question, ENTER QUERY mode, as the term implies, is when it is in a State where it is accept input for the execution of a query.  When in this mode, there are various restrictions.  Yet once, it will find more details in the Builder Help.  In this case, search help for these two subjects, "SYSTEM." MODE'and "built-ins comments that are not allowed in the input query Mode".  There are many other pages that contain information about the ENTER_QUERY method, but these two should help you get started.

    Normal mode, as its name implies, is when it is in a State of 'normal '.  Basically to do nothing in particular, but also not in ENTER QUERY mode.  In this State, you can move the shape, INSERT, UPDATE, DELETE, documents, etc..

    You will find additional information, as well as a lot of documentation on the product page of forms of OTN:

    http://www.Oracle.com/technetwork/developer-tools/forms

  • I want to just delete bookmarks. Suggested method does not work.

    I want to just delete bookmarks. The suggested procedure says to go to the bookmarks menu and select organize bookmarks. Opens the 'library', and then you select the folder that contains the bookmarks that you want to remove. But the bookmarks that I want to delete are not in the files and they are not listed in the "library" window

    "I found a way to list them in the window of the library, but I don't know how to choose a group of them and delete them all at the same time."

    Once listed in the right pane of the library window, right hand pane, press and hold CTRL while clicking on those you want to remove, release CTRL when you select what you want to remove, then carefully with the right button on one of the highlighted items and select 'Delete', all highlighted items should disappear in the right pane. entries not marked will remain in the right pane.

    Other topics: ~ ~ Red: you have installed the plug-ins with known security issues. You must update them immediately. ~ ~

    Java Update: your worm (very old) ~~red:1.4.1_02 ~ ~ current version 1.6.0.20 (important update 15/04/2010)
    (Firefox 3.6 and above requires Java 1.6.0.10 or above; see: http://support.mozilla.com/en-US/kb/Java-related+issues#Java_does_not_work_in_Firefox_3_6 )
    (Windows users: do the update manually, very easy.)
    ~ ~ Red: check your version here ~ ~: http://www.mozilla.com/en-US/plugincheck/
    See: Java Update
    Do the update with Firefox closed.
    NOTE: Java version 1.6.0.21 was released. It is mainly an update for developers of Java applications and most of the users don't need to worry about downloading version 1.6.0.21. Right now, the option of update in existing Java 1.6.0.20 facilities are not updated to version 1.6.0.21. right now, it must be manually downloaded and installed. According to the release notes for Java:
    "Bug fixes ".
    Java SE 6 Update 21 contains no additional patches for vulnerabilities to its previous version, Java SE 6 Update 20. Java SE 6 Update 20 users have the latest security patches and don't have no need to upgrade to this version is current on security patches. " Source: http://java.sun.com/javase/6/webnotes/6u21.html

    Install/update Adobe Reader for Firefox (aka Adobe PDF plugin for Firefox): your version 9.3.2. current version 9.3.3 (updated security important release 29/06/2010; See: http://www.adobe.com/support/security/bulletins/apsb10-15.html)
    ~ ~ Red: check your version here ~ ~: http://www.mozilla.com/en-US/plugincheck/
    See: http://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox#Installing_and_updating_Adobe_Reader
    Instead of going on the site of Adobe and download, you may be able to update to Adobe Reader installed on your system . Start > Program Files, find and click on Adobe Reader to open, click Help, click Find updates. Allow the download / update to occur. If you use this method, no need to proceed with the instructions below, but look at the two downstairs bulleted items ""NOTE for IE:"and" see also: "." Restart Firefox and check your new version here: http://www.mozilla.com/en-US/plugincheck/
    If you go to the Adobe site to download the course Adobe Reader:
    -use Firefox to download and SAVE to your hard drive (save to the desktop for easy access)
    ~ ~ Red:-see the images at the bottom left of this post to see the steps on the Adobe site ~ ~
    -the release of Firefox (file > exit)
    -Make sure that Firefox is completely closed (Ctrl + Alt + Delete, choose Task Manager, click the processes tab, if "firefox.exe" is on the list, made a "firefox.exe" right-click and choose end process, close the Task Manager window)
    -Double-click on the installer for Adobe Reader you just download to install/update Adobe Reader

  • Envy 17 k299nb: Windows 8.1 on "new" laptop wants the recovery disk 32 GB

    Hello

    Bandnew laptop, turned on for the first time.
    First thing I want to do after installation, is to make a recovery disk.
    When you choose this option, the laptop wonder a 32 GB flash drive 'at least'.
    How can this be since it has "new"?

    And more importantly, how I can reduce this amount of memory needed?

    Access performance and USB drive is so terrible in this notebook I have to wait for hours!

    THX

    This has nothing to do with the laptop being new. It is just a part of the initial report of installation and can be ignored for now, if you don't not available now.    Just remember you need to do the recovery at some point media.

    You can skip the creation now and create it later.

    If you want to have external recovery media access, then you will need to follow the guests will tell you. Do not save anything in the recovery partition!

    You can access more later by invoking the charm of research and typing in HP recovery. Click the icon to create HP recovery media to start the process.

    It won't take hours to make the usb recovery media. Access USB is fast, especially compared to the access of the DVD media.

  • Hello, I have Lightroom version 5.7.1 I use no clouds at all. However, I just bought a class of Adobe's Lightroom, and it includes downloads that only works on a new version of Lightroom. As a result, I can't enjoy the great progress

    Hello, I have Lightroom version 5.7.1 I use no clouds at all. However, I just bought a class of Adobe's Lightroom, and it includes downloads that only works on a new version of Lightroom. Therefore, I can't take advantage of the excellent program, I bought (editing of Photo of Ben Wilmore Adobe® Lightroom® CC: The Complete Guide) unless I update.

    I resisted doing what I am on a fixed income and do not service CC. Unfortunately, I have a problem. How do I most cost effectively upgrade my version of Lightroom?

    LR CC and LR 6 are the same program other than some missing features to 6 LR6 is a standalone program. You are able to go to Adobe website LR6, so you should be able to use the course. We must look carefully because they want to subscribe, but it is available!

  • I had photoshop on my windows now the graphics card has gone bad and you want to move to my MAC I pay every month and I am a student, so, how can I transfer accounts until I get a new computer

    I had photoshop on my windows now the graphics card has gone bad and you want to move to my MAC I pay every month and I am a student, so, how can I transfer accounts until I get a new computer

    If you are on subscription, you just install it on your new computer and sign in with your ID Adobe that you used to buy PS when you arrive up to two installs, it will tell you that you have exceeded you install limit and asks if you want to disconnect other computers. Just so disconnect you. No need to have to disable or call Adobe!

  • Captivate 8, why the back of sanitation to the quiz action take back me to the quiz when I want to just go to the next slide?

    I use in my course on the user get a question wrong sanitation. This part works, however, when I want to just sail the course before taking the quiz, I'm back to the quiz before even I got to the course quiz section. It makes no sense to a user. Any one fixed this problem or there at - it

    something wrong with the way in which the actions are configured?

    Basically, when a user gets an answer wrong they click anywhere on the screen and is taken to a slide in the course of reviewing the information described in the quiz.

    The user is then able to return to the quiz by clicking on the button continue.

    Help, please

    Winstonian

    I think that indeed to be the reason. You will be in Quiz carried almost all the slides, and the capability to return to a question with the following button slide is certainly linked to the scope of Quiz. It was my first "intuition".

    Most of the new features of quiz is designed with a case of use quite limited in mind. This is the case for all the, pre-test and remediation issues.  And it is often the team Adobe assumes that all questions on the test are set at the beginning of the file, all normal questions are set at the end of the file. And I'm perfectly aware that this is rarely the case for real projects. For this reason, personally, I would avoid these features in most of the projects. One that works very well as far as I KNOW is branch up-to-date, to create system variables Dynamics quiz. And in some cases, I really appreciate the rating partial and even sentence (too bad it is only limited to the MCQ type). I will often use workarounds for other features. More work, but more control.

  • Philips dyed white Starter Kit found that it cracked so I want to just return item

    Philips dyed white Starter Kit A19 E26 who ordered 2 days ago and happened

    I found that it was cracked so I want to just go back to the item, but is not able to return (it is not printed about to return)

    This point is not on my shopping list wasn't error in the homepage?

    just find a way to return this article... Please write me.

    < re-titled by host >

    These are bulbs?

    You posted on Apple (computers and iDevices) forum for the publication of books. We are a user to forums for computer and iDevice problems.

    We cannot help you return the bulbs.

    Please let us know if I misunderstood your problem.

  • What happens if I want to just pictures of my phone stored in icloud, but not my other devices?

    What happens if I want to just pictures of my phone stored in icloud, but not my other devices?

    Hello Lisa,.

    You can get more help if you posted in the forum to iCloud.

Maybe you are looking for

  • Messages delete two at once when I press DELETE.

    When I try to delete a message 2 or more that I haven't read get deleted with it. Any suggestions? Thank you!

  • Need a new acquisition of data USB multifunction device

    Hello Currently I use a PCIe - 6321 Multifunction DAQ hardware to control my stepper motor. I need to change the PCIe - 6321 and use the engine with a device for the acquisition of data USB multifunction bit PCIe - 6321. I'm not sure which USB model

  • loud screeching noise at startup

    Original title: his record gameSometimes after I listened and watched a video on my HP Touchsmart, which worked well and I turned off the video and the computer on the left I siuddenly get a loud noise from my computer and I have to turn off the comp

  • LaserJet 1022: Shared LaserJet 1022 on Windows 10 not seen by laptop on homegroup

    Hi HP community! I have a LaserJet 1022 connected via USB to my desktop Windows 10 and it works great. I created a homegroup - ensuring share printer - my son's laptop, and however the laptop does not detect the LaserJet 1022. File sharing works very

  • Support Audio M115HD Wi - Fi

    Hello I have M115HD projector with 725-10262 optional Dell Wireless for M110, M115, S500, S500WI projector 4220 dongle or 4320. Software allows to activate the audio transfer PC to the projector on a wireless connection of specyfying to the audio set