Windows virtual machine with labview on a Mac

I am about to buy a Mac laptop with virtualization software (either VMware or Parallels), then create a Windows 7 virtual machine and put Labview for Windows Professional on it.
I searched the board and found some discussion of this configuration but it is several years old.
I would just like to hear from people who have done this and learn from their experiences.  Are there any pitfalls, features that don't work, performance problems, setup difficulties, whatever.  Also, do you prefer VMware or Parallels. 
One other thing:  I would like to create at least four virtual machines (Windows with Labview development, Windows without LV to test the applications in a non-labview environment, and similar for MacOS}.  Is this a reasonable thing to do?
Regards,
David

Hi David,
As indicated above I have been running a windows virtual machine using VMware on a 17 inch macbook pro for quite a while now.  I have not experienced significant problems.  Labview and labview generated apps work fine in the virtual environment.
But would I do it again?  I think not.  The economics don't work.  You can buy a quite capable Windows laptop for less than $500.  The virtual machine alternative costs $200 for a copy of Windows, $80 for virtualization software (Parallels or VMware) plus extra memory on the Mac (I have 8 gb) plus a more powerful machine, etc.  I ended up paying over $3,000 for the Mac hardware and extra software.  The alternative would have been $1,500 for a 15 inch Mac plus $500 for a Windows laptop.
Also, there is definitely a performance penalty.  Virtualization is not free.  Start up and shutdown times for Windows are more than twice as long under VMware than with a cheap HP laptop.
It is nice having all my files (Mac and Windows) on the same machine but I could have easily networked the Mac and Windows and had effectively the same result.  Expected benefits, such as a single backup disk for both operating systems didn't work out.  Apple's time machine software views the entire Windows environment as a single lump, so I am still stuck with two backup drives.
So the good news is that it works.  The bad news is that the costs (in my opinion) exceed the benefits.
David'

Similar Messages

  • Photo Stream not working on Windows in a Virtual Machine, but not on my Mac

    Hi there,
    since yesterday I tried to connect to Photo Stream with my Mac, but I can't. It works fine in my Windows 7 Virtual Machine with the iCloud software, it works fine on my iPhone 4S. The iCloud System Status suggests that all services work just fine.
    However, as soon as I try to activate Photo Stream in iPhoto 9.2 (626) (App Store version, confirmed latest version) or Aperture 3.2 (non App Store version, confirmed latest version), I am presented with the message, which roughly translates to "Activating Photostream... iPhoto couldn't connect to Photostream", with an "Abort" button as the only option.
    All other iCloud features work perfectly fine for me. Any suggestiosn?
    Thanks!

    confirm that it is activated in icloud preference pane ( System-Settings ) like this :

  • Using virtual machines with Mac

    Hi Folks,
    Any suggestions on using a virtual machine with Mac. Parallels, VMware Fusion or Virtual Box ? Which one is good and share some thoughts here.
    Thanks,

    Hi direwolf8,
    You wrote : Not without knowing what you're trying to achieve.
    This is what I am trying : I am planning to use the virtual machine technique so that I can work from home with the animation softwares to create and convert movies and the most commonly used systems, use Windows OS. I will need to test whether they will run in the Windows environment using all media players before making DVDs. (As per policies that is what I am supposed to reveal).
    You wrote : If you're running Linux or Windows, you can use native drivers for your video display and skip the virtualized abstraction layer. You can even add a high-performance video card just for the vm's.
    How can I do that?
    Hi dwd, Thank you for your response also.
    Regards.
    Message was edited by: Mac-Expert

  • Can i install VS 2013 in my Virtual Machine with Windows 8.1 and work for Mobile Development,Mobile Emulator can work in my Virtual Machine ?

    I have a Virtual Machine with Windows 8.1 OS and 4gb RAM, 200gb Disk.
    I want to develop apps for Windows Mobile 8.1 with VS 2013 Update 4, Mobile Emulators can work in my Virtual Machine, bcz i am getting bellow error.
    Windows Phone Emulator is unable to verify that the virtual machine is running:
    Something happend while starting a virtual machine:'Emulator 8.1 WVGA 4 inch 512MB.APPUSER' failed to start.(Virtual machine ID xxxxxx-xxxxx-xxxx-xxxx-xxxxxxx)
    The Virtual Machine Management Service failed to start the virtual machine 'Emulator 8.1 WVGA 4inch 512MB.appuser' because one of the Hyper-V components is not running (Virtual machine ID xxxx-xxxxx-xxxx-xxxx-xxxx).

    No you cannot do that.  You need a physical machine that supports Hyper-V
    Jeff Sanders (MSFT)
    @jsandersrocks - Windows Store Developer Solutions
    @WSDevSol
    Getting Started With Windows Azure Mobile Services development?
    Click here
    Getting Started With Windows Phone or Store app development?
    Click here
    My Team Blog: Windows Store & Phone Developer Solutions
    My Blog: Http Client Protocol Issues (and other fun stuff I support)

  • Create Hyper-V Virtual Machines with Windows PowerShell searching on hostname

    Dear,
    I’m a starter with PowerShell scripting an I’m looking for a script to create Hyper-V Virtual Machines with Windows PowerShell. The idea behind the script is that when I run the script its first searching for the hostname. I’m migrating 24 locations and each
    location have a different hostname like xxx-SRV001. The script needs to use the first 3 signs from the hostname in this case “xxx” and create 2 VM's with below info:
    Virtual Machine 1 2048MB
    Virtual Machine 2 4096MB
    Location D:\VM\
    I can create VM's with Powershell into Hyper-V so only a script to first searching for the first 3 characters of the hostname is enough.
    Example:
    It's the intention that when the script runs it's looking for the hostname. As example we have hostname 000-SRV001
    If the script see the first 3 characters of the hostname, in this case 000 he need to create 2 VMs with name xxx-SRV002 and xxx-SRV004
    I think it must be something with 
    $hostname = "Get-WmiObject -computername $Machine Win32_Computersystem"
    But then when i'm asking for $hostname he must give me back the hostname and if the hostname is 1 of the 24 locations then he need to create 2 vm's in Hyper-V with above info.
    Can you help me or do you have a script for this? 

    Juste use :
    $vram = 1GB*$vRam
    You not need the "
    Do you have any error with the creation of the VM?
    # Variables
    $VMName = Import-Csv "C:\HyperV\input.csv"
    $VHD = 40GB
    $VMLOC = "C:\HyperV"
    $vSwitch = "External"
    $ISO = "C:\ISO\WinServer2012R2.iso"
    $LocationCode = $env:COMPUTERNAME.Split("-")[0]
    # Create VM Folder
    MD $VMLOC -ErrorAction SilentlyContinue
    Foreach ($VM in $VMNames)
    $Name = $VM.name
    [int64]$vRam = $vm.vram
    $vram = 1GB*$vRam
    $VMName = $LocationCode+$Name
    # Create Virtual Machine
    New-VM -Name $VMName -Path $VMLOC -MemoryStartupBytes $vRam -NewVHDPath "$VMLOC\$VMName\Virtual Harddisks\$VMName.vhdx" -NewVHDSizeBytes $VHD -SwitchName $vSwitch
    # Configure Virtual Machines
    Set-VMDvdDrive -VMName $VMName -Path $ISO
    Start-VM $VMName
    # Configure Virtual Machines
    Set-VMDvdDrive -VMName $VMName -Path $ISO
    Start-VM $VMName
    Error message 
    New-VM : '003' failed to modify device 'Memory'. (Virtual machine ID 8F5F32D7-F1A0-4A68-8B01-CA6661869A1E)
    Invalid startup memory amount assigned for '003'. The minimum amount of memory you can assign to this virtual machine is '32' MB. (Virtual machine ID 8F5F32D7-F1A0-4A68-8B01-CA6661869A1E)
    A parameter that is not valid was passed to the operation.
    At line:20 char:5
    + New-VM -Name $VMName -Path $VMLOC -MemoryStartupBytes $vRam -NewVHDPath "$VM ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (Microsoft.HyperV.PowerShell.VMTask:VMTask) [New-VM], VirtualizationOperationFailedException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.NewVMCommand
    Set-VMDvdDrive : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:23 char:5
    + Set-VMDvdDrive -VMName $VMName -Path $ISO
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Set-VMDvdDrive], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.SetVMDvdDriveCommand
    Start-VM : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:24 char:5
    + Start-VM $VMName
    + ~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Start-VM], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.StartVMCommand
    Set-VMDvdDrive : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:27 char:5
    + Set-VMDvdDrive -VMName $VMName -Path $ISO
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Set-VMDvdDrive], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.SetVMDvdDriveCommand
    Start-VM : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:28 char:5
    + Start-VM $VMName
    + ~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Start-VM], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.StartVMCommand
    New-VM : '003' failed to modify device 'Memory'. (Virtual machine ID C0FC835E-36D4-462E-BD21-69A75A808E2F)
    Invalid startup memory amount assigned for '003'. The minimum amount of memory you can assign to this virtual machine is '32' MB. (Virtual machine ID C0FC835E-36D4-462E-BD21-69A75A808E2F)
    A parameter that is not valid was passed to the operation.
    At line:20 char:5
    + New-VM -Name $VMName -Path $VMLOC -MemoryStartupBytes $vRam -NewVHDPath "$VM ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (Microsoft.HyperV.PowerShell.VMTask:VMTask) [New-VM], VirtualizationOperationFailedException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.NewVMCommand
    Set-VMDvdDrive : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:23 char:5
    + Set-VMDvdDrive -VMName $VMName -Path $ISO
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Set-VMDvdDrive], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.SetVMDvdDriveCommand
    Start-VM : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:24 char:5
    + Start-VM $VMName
    + ~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Start-VM], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.StartVMCommand
    Set-VMDvdDrive : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:27 char:5
    + Set-VMDvdDrive -VMName $VMName -Path $ISO
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Set-VMDvdDrive], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.SetVMDvdDriveCommand
    Start-VM : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:28 char:5
    + Start-VM $VMName
    + ~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Start-VM], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.StartVMCommand

  • What is best Windows Virtual Machine?

    Hi
    I have a lot of stuff remained from my old Windows as some softwares without Mac couterpart or Word documents with ruined fonts which only can be seen on MS Word . I need a Virtual Machine with minimum performance reduction. I tried VMWare but it really stucks , I also tested Wine Bottler but it can run a limited number of Windos apps. I have heard about Boot camp but I dont want to log out for using windows.
    My Config:
    Mountain Lion on Macbook Pro , late 2011, core i7 2.4 GHz, with 4G RAM. 
    Anyone knows which VM is most compatible with Mac ML?

    Paralles 7  Their annual updates seem spendy too me.   Right now however if you Purchase PD 7  then it is a free upgrade to PD 8 when it is released in Sept.  http://www.parallels.com/products/desktop/
    free upgrade documentation: http://www.parallels.com/techguarantee2012/
    Don't forgret Virtual Box 
    https://www.virtualbox.org/    freeware/shareware/opensource
    MacBook Pro, Mac OS X (10.8.1) 2.4GHz IntelCore i5 320 HD 8GB RAM ParallelsDesktop7.0

  • Cannot create guest virtual machine with Solaris 10 SPARC in Oracle VM 2.2

    Dear All,
    I try many times to create guest virtual machine with Solaris 10 SPARC but not get success.
    When I created it already and then I start the Power On button, it run normally but the Console button cannot click on (hide). After that the virtual machine running abit then it change status to Powered Off.
    Please kindly give advice for this.
    Thanks and regards,
    Heng

    I storgly doubt, VMware player is available for Solaris 10 SPARC version.
    Solaris 10 is not a comercial product, like ubuntu, windows, MAC etc... It's really for a server.
    That's the reason still I hate Solaris 11 as a desktop. You have very limited product/software.... This may change for Solaris 11, but U can't expect one for Solaris 10.

  • Not able to connect Azure Linux Virtual Machine with Putty

    Hi,
    I am not bale to connect Azure Linux Virtual Machine with Putty... Error shows "Network error: connection timed out".
    Please help.
    Thanks,
    Techsol
    Thanks, Kk

    Hi TechSol01,
    Thanks for posting here.
    I suggest you to try the below steps
    On a computer running a Windows operating system, you might want to use an SSH client such as PuTTY. For more information, see the
    PuTTY Download Page.
    On a computer running a Linux operating system, you might want to use an SSH client such as OpenSSH. For more information, see
    OpenSSH.
    If it is the endpoint configuration, you can go to the portal and add port 22, (it should already be there by default). 
    Now if it is locked out of the VM because of the firewall on the VM, which is called iptables , You won't be able to connect to the VM,
    If you haven’t configured the port 22. You may have to follow the below steps :
    A = Original VM (Inaccessible VM)
    B = New VM (New Temp VM)
    1)  Stop VM  A via the Azure management portal
    2) Delete VM A BUT select “keep the attached disks”
    3) Once the lease is cleared, attach the Data Disk from A to VM B via the Azure Portal, Virtual Machines, Select “B”, Attach Disk
    4) On VM “B” eventually the disk will attach and you can then mount it.
    5) Locate the drive name to mount, on VM “B” look in relevant log file note each linux is slightly different.
    grep SCSI /var/log/kern.log (ubuntu)
    grep SCSI /var/log/messages (centos, suse, oracle)
    6) Mount the attached disk onto mountpoint /tempmount
    df -h
    mkdir /tempmount
    mount /dev/sdc1 /tempmount
    df –h
    7) Now you should be able to clear the rules set from the configuration file of the firewall, by accessing it
    through /tempmount
    Let me know if this works
    Girish Prajwal

  • Can't install my printer on Windows virtual machine using  Leopard OS

    Have just installed Leopard and Parrallels software. I cannot install my HP C3180 printer on the virtual windows machine. USB plug and unplug are not recognized and suspect it is because the printer is in use on the Mac OS side. How can I get the same printer to be connected and usable in both MAC and Windows virtual machines?

    I had exactly the same issue as you when I wanted to print from my iMac to a printer that was attached to a Windows 7 machine.
    I found the solution at an Apple Support page, located at "http://support.apple.com/kb/HT3049".
    What really solved my problem was the introduction of the user PASSWORD in the address line, like this:
    smb://user:password@workgroup/server/sharename
    Read the Apple Support page I mentioned carefully to better understand what you will be doing.
    I hope this helps you.

  • Modify security on "Windows Virtual Machine" SCPs

    Hi. Any domain joined VM will create serviceConnectionPoint object under the computer object in AD (http://blogs.technet.com/b/askcore/archive/2012/09/18/what-is-the-windows-virtual-machine-object-in-active-directory.aspx).
    We have special security requirements in our AD and by default these SCPs for VMs are visible to any user which breaks our security rules. My questions:
    a) is it supported to change security on this object (doubt it, but I'm asking anyway)
    b) what happens if I change the security on this object, specifically if I remove Authenticated Users from the ACL? Can I expect any problems?
    c) what exactly is the SCP used for/by in this case? The article I mentioned above explains what it is, but not really what is it used for.
    Thanks in advance

    Hi MarkosP,
    I removed the "Authenticated Users" for test , when I logon DC with a domain user I can not "manage"/query  the computer object .
    "what exactly is the SCP used for/by in this case?"
    Maybe you can get  accurate assistance from DS forum :
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverDS
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • I created an application on a machine with Labview 6.01, can I run this application on another machine that has labview 5?

    In the development center we use Labview 6.01, in the testcenter we use labview 5.
    Additionally, in the development center we use a unix version of Labview and in the testcenter a Windows version.

    You can Save with Option to save VIs as version 5.
    Unless your VIs deal with system files in UNIX or Windows (ie. Registry...)
    then you have to develop your VI specificly on that OS, since UNIX and
    Windows have different ways to deal with system files. Mostly, LabVIEW is OS
    independent. I used to have VIs developed from LabVIEW v.3 on UNIX, I can
    still open these files from LV v.4 on Windows. Now I can still work with
    these VIs on LV 6 on Windows.
    Good luck,
    Nam.
    roybra wrote in message
    news:[email protected]..
    > I created an application on a machine with Labview 6.01, can I run
    > this application on another machine that has labview 5?
    >
    > In the development center we use Labview 6.01, in the testcenter we
    > use l
    abview 5.
    >
    > Additionally, in the development center we use a unix version of
    > Labview and in the testcenter a Windows version.

  • Live Migration Failed while Quick Migration is Ok...Virtual machine with synthetic FC HBA !

    When I migration the virtual machine with synthetic FC HBA  in windows server 2012 R2 Cluster,it fails
    but I do it in the style of quick migraton ,it secceed!
    The error event here
    Live migration of 'Virtual Machine PTSCSQL01' failed.
    Virtual machine migration operation for 'PTSCSQL01' failed at migration destination 'PTCLS0106'. (Virtual machine ID B8FBDE64-FF97-4E9B-BC40-6DCFA09B31BE)
    'PTSCSQL01' Synthetic FibreChannel Port: Failed to finish reserving resources with Error 'Unspecified error' (0x80004005). (Virtual machine ID B8FBDE64-FF97-4E9B-BC40-6DCFA09B31BE)
    'PTSCSQL01' Synthetic FibreChannel Port: Failed to finish reserving resources with Error 'Unspecified error' (0x80004005). (Virtual machine ID B8FBDE64-FF97-4E9B-BC40-6DCFA09B31BE)
    My virtual machine's  synthetic FC HBA setting here
    做微软的先行者,享受用户体验

    Yes, definitely check your zoning/masking.  Remember that with vHBA you have twice as many WWPNs to account for.  Performing a live migration makes use of both pairs during the transfer from one host to the other - one set is active on the machine
    currently running and the second set is used to ensure connectivity on the destination.  So if you are using Address Set A on Host1, Host2 will try to set up the fibre channel connection using Address Set B.  If you do a quick migration, you would
    continue to use the same Address Set on the second host.  That's why you most likely need to check your zoning/masking for the alternate set.
    . : | : . : | : . tim

  • Sharing p4014n printer on windows 7 machine with XP machine

    I have installed a Laserjet P4014n on a new Windows 7 machine with the USB connection - I allowed it to detect and install the drivers automatically.  The printer works great on the Win7 machine.
    I shared the printer and would now like to have an XP machine also be able to use it for printing.  However when I add a printer and I browse out to the shared printer on the Win7 machine,  the XP machine gives the error:  "The server for the HP LaserJet P4014/P4015 PCL6 printer does not have the correct printer driver installed.  If you want to search for the proper driver click OK.  Otherwise click Cancel..."  I tried to find the correct driver (.INF) file on the CD that came with the printer, but it does not seem to like any of the files on the CD.
    I have tried to install on the XP machine the drivers using the CD that came with the printer, but because there is not a printer connected, it will not install.  I have also downloaded the XP drivers (PCL6 and Universal Printer Drivers for PCL5 and PCL6)  for the printer from the HP website, and tried to browse to those when installing the drivers but it still cannot find a file it likes.
    What file should I be looking for on the CD or downloaded files for XP? 
    I also tried to add additional drivers on the Win7 machine but again can not find a file that installs from the CD or downloaded files.

    i am having the same problem. the printer is installed on a new windows 7 computer and we are trying to share it to a windows vista computer. did you figure out how to get it to work?! we r getting very frustrated!!

  • BadRequest: Virtual machines with secondary network interfaces and virtual machines with no secondary network

    I'm trying to create an "ExtraLarge" VM with multiple NICs.  The New-AzureVM returns the following error:
    BadRequest: Virtual machines with secondary network interfaces and virtual machines with no secondary network
    interfaces are not supported in the same deployment, also a virtual machine having no secondary network interfaces
    cannot be updated to have secondary network interfaces and vice-versa.
    But I have no other VMs.  Or at least I did and then deleted them and all their disks.  The service has no deployments (either staging or production).
    Why is New-AzureVM complaining about a mismatch of VMs with and without secondary network interfaces when no other VMs exist?
    I have tried many things to fix this, including the deletion of ALL of my resources.  I have deleted and created the service many times, both with an affinity group and without.  I have a screen print of the -debug output if your interested.
    Thanks for the outstanding help.

    Hi Ron,
    IMPORTANT NOTE: Please do not post the CONFIDENTIAL DETAILS ever on the public forums, this is HIGH RISK action.
    Please send an email with your contact details to my email
    [email protected] so that I guide you on steps which help you come out of the current scenario. Thank you for understanding.
    I suggest you to create a new VNET and new VM with cloud services. Create Multiple NIC VM. Let us know the results.
    Ref:
    http://azure.microsoft.com/blog/2014/10/30/multiple-vm-nics-and-network-virtual-appliances-in-azure/
    http://blogs.technet.com/b/canitpro/archive/2014/11/04/step-by-step-create-a-vm-with-multiple-nics-in-azure.aspx
    If you are unable to create a VM with multiple NIC, please open a support case as it requires more confidential information which is out of scope of FORUM support offerings.
    Regards,
    Girish

  • Pre-Configured Virtual Machine with OBIEE 11g available?

    Hi,
    does Oracle offer a pre-configured Virtual Machine with OBIEE 11g? I found an old Virtual Box Image with 10.2..., but nothin newer.
    Thanks for your help.
    Christoph

    Hi,
    I don't suppose this is available yet is it? I notice Oracle offer quite a few downloadable images for Virtual Box now, but OBI isn't included in any that I could see.
    Thanks,
    Mike

Maybe you are looking for

  • Why can't I open photos from Iphoto in Photoshop?

    I'm trying to open a picture I downloaded from my camera into iPhoto using Photoshop, but when I click the iphoto icon I get no pictures.

  • GPS Navigation App that doesn't suck?? Or am I doing something wrong?

    I started off with a droid 2 before I got my iphone 4.  The droid 2 gps was phenomenal, I had no problems with it.  Then I got an iphone which I assumed was going to be just as good if not better than the droid's gps.  Boy was I wrong!  The "Maps" ap

  • Best way to install oracle server + odp on same machine

    Hello, I've been having problems with this configuration: Win 2003 x64 R2 + IIS Server + Oracle DataBase 10g Release 2 102010_win64_x64_database + 10.2.02 patchset Win2003 x64 + ODAC 10.2.02 x64 Beta So far, I've installed all in the same Oracle_home

  • How to place images

    I am totally new to dreamweaver. I have done a lot of tutorials, and I'm trying to make a web page. I have laid out what I want my page to look like in InDesign, is there a way for me to attach or upload that here to show what I'm trying to do? I hav

  • BC Developer Needed

    I am looking for a BC Developer to build a site for me. We are currently overbooked and need help in building an ecommerce site. I will provide all the design files and login to our BC temp site and you will build it. If you are interested please con