RemoteFX issue when running Multipoint Server 2012 Premium as VM on Hyper-V

I have a server setup running Hyper-V 2012.  I made a Multipoint 2012 Premium VM and added RemoteFX.  After installing I went to Device Manager on the VM and noticed that the display adapter was showing as Microsoft Basic Display Adapter and
there was an unknown device which I assume is the RemoteFX 3D adapter.  I updated the integration services and ran Windows Updates, but still cannot get RemoteFX to show up properly in the VM.
Does Windows Multipoint Server 2012 not support RemoteFX when running as a VM?  I can't really run this on bare metal since I am looking at supporting more than 20 stations and therefore would need to run multiple instances virtualized on
the same server running Hyper-V. 

The server I have setup for this test is a Dell R720 and the video card is an AMD FirePro S7000. I am using the latest stable AMD FirePro driver (ver. 13.352.1006.1001).
I also went ahead and setup a Dell OptiPlex 7010 with an AMD Radeon 5450 (which is DirectX11).  I setup Server 2012 Hyper-V and again with Server 2012 R2 Hyper-V.  Both times I was unable to add the RemoteFX 3D adapter.  I am beginning to
think that it is not possible. 
Are you running Multipoint 2012 server virtualized on top of Hyper-V with RemoteFX enabled in the virtualized server (and showing so in Device Manager)?

Similar Messages

  • Security.policy issue when running javarmi server.

    hi guys,
    i am trying to run a sample javarmi applications.
    the code as follows:
    file name : myRMIInterface.java
    //package my_rmi_classes;
    public interface myRMIInterface extends java.rmi.Remote {
    public java.util.Date getDate() throws java.rmi.RemoteException;
    //implementation program
    // package my_rmi_classes;
    import java.rmi.*;
    import java.rmi.server.UnicastRemoteObject;
    public class myRMIImpl extends UnicastRemoteObject implements myRMIInterface
    public myRMIImpl(String name) throws RemoteException
         super();
         try
              Naming.rebind(name,this);
         catch(Exception e)
              System.out.println("Exception occured:"+e);
    public java.util.Date getDate()
         return new java.util.Date();
    application : myRMIServer.java
    //package my_rmi_classes;
    import java.rmi.*;
    import java.rmi.server.UnicastRemoteObject;
    public class myRMIServer {
    * @param args the command line arguments
    public static void main(String[] argv)
    // TODO code application logic here
    System.setSecurityManager(new RMISecurityManager());
    try
         myRMIImpl implementation = new myRMIImpl("myRMIimplInstance");
    catch(Exception e)
         System.out.println("satish exception occured :" +e);
    steps which i follow to run this applicatons:
    step 1: complie all the applications.
    step 2: create myRMIImpl_Stub.class file by running RMIC
    step 3: start rmiregistry
    step 4: i download a policy file from sun website and i place that file in my source code folder.
    i use 3 types of policy files which are as follows,,,
    type 1:
    grant{
    permission java.net.SocketPermission "localhost:1099", "connect, resolve";
    permission java.net.SocketPermission "localhost:1024-", "connect, resolve";
    permission java.net.SocketPermission "localhost:1024-", "accept, resolve";
    type 2:
    grant codeBase "C:/week_project/rmi server files/" {
    permission java.security.AllPermission;
    note: all my java files(source code) files are in the folder (rmi server files). i copy all policy files in the same folder.
    type 3:
    grant {
         // Allow everything for now
         permission java.security.AllPermission;
    step 5:
    a:) C:\week_project\rmi server files\java -Djava.security.policy=(policy name).policy myRMIServer
    b:) C:\week_project\rmi server files\java -Djava.security.policy=C:\........\(policy name).policy myRMIServer
    when i work with type-1 policy file i got error message as follows
    ERROR:
    Exception occured:java.security.AccessControlException: access denied (java.net.SocketPermission 127.0.0.1:1099 connect,resolve)
    type -2 policy file
    ERROR
    java.security.policy: error adding Entry:
    java.net.MalformedURLException.AccessControlException : access denied(java.net.SocketPermission 127.0.0.1:1099 connect,resolve)
    type-3 policy file
    ERROR
    exception occured; java.rmi.connectexception : connection refused to host :127.0.0.1; nested exception is :
    java.net.connectexception : connection refused : connect
    i am trying to solve this from last week but i can't
    so, please help me
    with regards
    satish

    what ever it is
    hi guys,
    i am trying to run a sample javarmi applications.
    the code as follows:
    file name : myRMIInterface.java
    //package my_rmi_classes;
    public interface myRMIInterface extends java.rmi.Remote {
    public java.util.Date getDate() throws java.rmi.RemoteException;
    }//implementation program
    // package my_rmi_classes;
    import java.rmi.*;
    import java.rmi.server.UnicastRemoteObject;
    public class myRMIImpl extends UnicastRemoteObject implements myRMIInterface
    public myRMIImpl(String name) throws RemoteException
    super();
    try
    Naming.rebind(name,this);
    catch(Exception e)
    System.out.println("Exception occured:"+e);
    public java.util.Date getDate()
    return new java.util.Date();
    }application : myRMIServer.java
    //package my_rmi_classes;
    import java.rmi.*;
    import java.rmi.server.UnicastRemoteObject;
    public class myRMIServer {
    * @param args the command line arguments
    public static void main(String[] argv)
    // TODO code application logic here
    System.setSecurityManager(new RMISecurityManager());
    try
    myRMIImpl implementation = new myRMIImpl("myRMIimplInstance");
    catch(Exception e)
    System.out.println("satish exception occured :" +e);
    }steps which i follow to run this applicatons:
    step 1: complie all the applications.
    step 2: create myRMIImpl_Stub.class file by running RMIC
    step 3: start rmiregistry
    step 4: i download a policy file from sun website and i place that file in my source code folder.
    i use 3 types of policy files which are as follows,,,
    type 1:
    grant{
    permission java.net.SocketPermission "localhost:1099", "connect, resolve";
    permission java.net.SocketPermission "localhost:1024-", "connect, resolve";
    permission java.net.SocketPermission "localhost:1024-", "accept, resolve";
    type 2:
    grant codeBase "C:/week_project/rmi server files/" {
    permission java.security.AllPermission;
    note: all my java files(source code) files are in the folder (rmi server files). i copy all policy files in the same folder.
    type 3:
    grant {
    // Allow everything for now
    permission java.security.AllPermission;
    step 5:
    a:) C:\week_project\rmi server files\java -Djava.security.policy=(policy name).policy myRMIServer
    b:) C:\week_project\rmi server files\java -Djava.security.policy=C:\........\(policy name).policy myRMIServer
    when i work with type-1 policy file i got error message as follows
    ERROR:
    Exception occured:java.security.AccessControlException: access denied (java.net.SocketPermission 127.0.0.1:1099 connect,resolve)
    type -2 policy file
    ERROR
    java.security.policy: error adding Entry:
    java.net.MalformedURLException.AccessControlException : access denied(java.net.SocketPermission 127.0.0.1:1099 connect,resolve)
    type-3 policy file
    ERROR
    exception occured; java.rmi.connectexception : connection refused to host :127.0.0.1; nested exception is :
    java.net.connectexception : connection refused : connect
    i am trying to solve this from last week but i can't
    so, please help me
    with regards
    satish

  • Windows multipoint server 2012 wmsShell error

    I'm using windows multipoint server 2012 premium and i have connected 16 nos of Atrust m320 zero client, it was working fine for 1 month, but now it has some problem. when i switch on my server after windows boot i'm not getting login screen and it is directly
    login to wmsShell user, same time keyboard mouse not detecting and clients are not connecting to server. Please give me some solution.
    click on below link to see the problem
    https://www.youtube.com/watch?v=N36zOBndfPs&feature=youtu.be

    I have the same problem when Microsoft Updates are installed that after the reboot it automatically logs into the WmShell account and displays the My Documents folder of WmShell. 
    I resolved the issue by exiting the Document Folder, doing a CTRL+ALT+DEL, signing out of the WmShell account, and logging back in as Administrator > Local Machine name.
    Once in go to Control Panel > User Accounts and delete all references to wm???????
    Reboot the server and it should come back into normal client mode.

  • Multipoint Server 2012 and Safety Family Plan

    I'm having issues installing Family Safety plan in my server Multipoint 2012 Premiun. I already installed .NET Framework 3.5 using the Server Manager but when I run the installation for Family Safety I get an error (no information about it) and it didn't
    finish. Do you know what I'm missing? Thank you.

    Hello,
    multi posted http://social.technet.microsoft.com/Forums/windowsserver/en-US/faebd9b0-9539-4a6a-87fb-787661f9eeef/family-safety-and-windows-multipoint-server-2012-premiun?forum=winservergen
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://msmvps.com/blogs/mweber/
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.

  • Exchange Server 2013 and Remote Access VPN on a single server running Windows Server 2012?

    Just by way of background, I have been installing and administering network servers, e-mail systems, VPN servers, and the like for many years.  However, my involvement with Exchange and Windows Server has been mostly on the forensics and data recovery
    level, or as a (sophisticated) user.  I have never tried to deploy either from scratch before.  My deployment experiences have been mostly with Linux in recent years, and with small private or personal "servers" running such cutting edge
    software as Windows XP back when it was new.  And even NetWare once.
    When a client asked me if I could set up a server for his business, running Exchange Server (since they really want Outlook with all of its bells and whistles to work, particularly calendars) and providing VPN access for a shared file store, I figured it
    could not be too difficult given that its a small business, with only a few users, and nothing sophisticated in the way of requirements.  For reasons that don't bear explaining here, he was not willing to use a vendor hosting Exchange services or cloud
    storage.  There is no internal network behind the server; it is intended to be a stand-alone server, hanging off a static IP address on the Internet, providing the entirely mobile work-force of about 10 people with Exchange-hosted e-mail for their computers
    and phones, a secure file store, and not much else.  If Exchange didn't need it, I would not need to install Active Directory, for example.  We have no direct need for its services.
    So I did the research and it appears, more by implication than outright assertion, that I should be able to run Windows Server 2012 with Exchange Server 2013 on a server that also hosts Remote Access (VPN only) and does nothing else.  And it appears
    I ought to be able to do it without virtualizing any of it.  However, I have spent the last three or four days fighting one mysterious issue after another.  I had Remote Access VPN working and fairly stable very quickly (although it takes a very
    long time to become available after the server boots), and it has mostly remained reliable throughout although at times while installing Exchange it seems to have dropped out on me.  But I've always been able to get it back after scrounging through the
    logs to find out what is bothering it.  I have occasionally, for a few minutes at a time, had Exchange Server willing to do everything it should do (although not always everything at the same time).  At one point I even received a number of e-mails
    on my BlackBerry that had been sent to my test account on the Exchange Server, and was able to send an e-mail from my BlackBerry to an outside account.
    But then Exchange Server just stopped.  There are messages stuck in the queues, among other issues, but the Exchange Administration Center refuses now to display anything (after I enter my Administrator password, I just get a blank screen, whether on
    the server or remotely).
    So, I am trying to avoid bothering all of you any more than I have to, but let me just begin with the basic question posed in the title: Can I run Exchange Server (and therefore Active Directory and all of its components) and Remote Access (VPN only) on
    a single Windows Server 2012 server?  And if so, do I have to run virtual machines (which will require adding more memory to the server, since I did not plan for it when I purchased it)?  If it can be done, can anyone provide any pointers on what
    the pitfalls are that may be causing my problems?  I am happy to provide whatever additional information anyone might like to help figure it out.
    Thanks!

    An old thread but I ran into this issue and thought I share my solution since I ran into the same issue. Configuring VPN removes the HTTPS 443 binding on the Default Site in IIS for some strange reason; just go and editing the bindings, add HTTPS and things
    should be back to normal.

  • [Forum FAQ] Reporting Service Point cannot be installed on a Site System Server running SQL Server 2012 SP1

    Symptom: When you install Reporting Service Point role on a Site System Server running SQL Server
    2012 SP1, you may encounter an issue that the Reporting Service Point role cannot be installed. The error log “srsrpMSI.log” and “srsrpsetup.log” may throw the error as shown in Figure 1 and Figure 2.
    03:32:03:764]:
    MainEngineThread is returning 1618
    Figure 1: Error -1
    <03/03/14 03:32:03>
    srsrp.msi exited with return code: 1618
    Figure 2: Error -2
    Reason: All the two logs indicate an error return code 1618. From the KB below you may know what
    the return code means.
    ERROR_INSTALL_ALREADY RUNNING 
    1618
    Another installation is already in progress. Complete that installation before proceeding with this install.
    KB link:
    http://support.microsoft.com/kb/290158 “it is related to an Office Suite KB, anyway, the MSI return code is the same meaning”
    You can look into Resource Manager and Event Viewer to find the other currently running MSI installation. You may get a warning in Event Log that means the MSI wants to install a SQL Server
    related Component (Figure 3). The Resource Manager confirms this (Figure 4).
    Event Log:
    Event ID: 1004
    Source: Msinstaller
    Level: Warning
    Detection of product '{A7037EB2-F953-4B12-B843-195F4D988DA1}',
    feature 'SQL_Tools_ANS', component '{0CECE655-2A0F-4593-AF4B-EFC31D622982}' failed.  The resource '' does not exist.
    Figure 3: Event Log
    Figure 4: Resource Manager
    Resolution: the error is exactly what the following KB describes.
    KB Link:
    http://support.microsoft.com/kb/2793634
    After we resolve the SQL Server 2012 issue, the Reporting Service Role is installed successfully.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    This implies that ODP.NET does NOT need to be installed on a client. However, I cannot find OraOPs9.dll on a machine with Client Release 9.2 installed. Should OraOps?.dll automatically come with a Client installation of 9.2 or higher?
    ODP.NET needs to be installed on the client. OraOps9.dll is part of ODP.NET, not the Oracle Client.
    Also, if an application is built with the 10g ODP.NET, can it be run from a machine with OraOps9.dll?
    If an application is built with 10g ODP.NET, it can be run with 9.2 ODP.NET as long as you do not use any 10g APIs. The new features in 10g ODP.NET are included in the doc and the ODP.NET FAQ for your reference.

  • Is it possible to set up parental control in MultiPoint Server 2012?

    Hello everyone!
    Is it possible to set up parental control in MultiPoint Server 2012. I'd like to filter adult web sites.
    Kind regards,
    Pavel

    I found an issue with Multipoint Dashboard that when student select to signout and then select "Cancel" to signout to go back to the session, the Multipoint Dashboard filtering is no longer applied to the session.
    here is the scenario -
     - Student login to the Multipoint server using the end point device as an standard user.
     - The Multipoint Dashboard has the configuration to "limit the website to all desktop". "cnn.com" only
     - The student session, limits the use of the web browser to only to cnn.com - this is working.
     - Studen open an app like notepad - click save --> prompted him to where to save the file.
    do not save the file. leave the "Save as" windows open.
     - Click Start (left bottom corner)
     - Click the account’s name on the top right corner, Click Sign Out
     - It will prompt you with a warning that there is a file open and needs to be saved
     - "Signout anyway" or "Cancel"
     - student select to "Cancel"
     - He is now back to the session
    This will allow the student/account logged in to bypass the web filtering

  • Display Drivers for intel (R) G45 express chipset on windows 8(multipoint server 2012) 64 bit

    HI
    I recently bought windows multipoint server 2012 from Microsoft which comes with windows 8. I am having trouble with installing display drivers from my computer's manufacturer. The display device is  Intel (R) G45 express chipset. Intel only supports
    windows 7 and when I try to troubleshoot it's compatibility,  the driver still does not work. I get an error notifying me that my computer does not meet the minimum requirements. My computer system is 64 bit and the drivers I download are meant
    for 64 bit systems,  I am currently using Microsoft basic display adapter and when I try to automatically update the driver it says that the drivers are up to date 
    why do I get the error that my computer does not meet the minimum requirements?
    and what can I do to get the drivers working on windows 8? 
    PLEASE HELP
    THANK YOU IN ADVANCE

    I had the most up-to-date Intel driver installed, as far as Windows can determine (right click Intel display adapter -> update drivers, search automatically). I was also using that exact download you linked me to.
    I also tried switching my graphics card to dedicated discrete mode in BIOS, which made my device ID change, but it too was not supported. I have since managed to reinstall the old drivers from 2010.
    Is there some place I can go to download a more recent version of the Intel drivers than Windows can find automatically?

  • Does Multipoint Server 2012 Support Remote Connections?

    I'm currently running Server 2008 R2 Foundation, and am considering an upgrade.  I originally thought I'd move to 2012 R2 Essentials, but found that it only allows 2 concurrent users, and RDS is not available (what a joke!).  Anyway, someone suggested
    that I try Multipoint Server 2012, but from all I can dig up, I can't find any reference to VPN or RDS.  I'm a very small (2 person) business located in rural north Georgia, but I not only have local users (two of us), but also two or more clients in
    south Florida connecting to my server via RDS.
    Does anyone know whether or not Multipoint 2012 will support RDS type connections from afar - i.e. not on the local network?  I'd be very grateful for some clear concrete information about that.
    Thank you.
    Capt. Dinosaur

    Hi Livi, thanks for your response.
    "I saw your post on the WMS forums and it might be worth downloading the evaluation and giving it a try if you have the chance.
    http://www.microsoft.com/en-us/download/details.aspx?id=35821"
    Thank you, I do intend to do just that just as soon as I can.
    "That said, as another poster mentioned in that thread, there are still some limitations with regard to not having your domain controller on the same machine as your RDS role. "
    That, of course brings up another question in my mind; can Multipoint be in a Workgroup, so that it's not a domain controller?  I have only one server box, and would like to keep it that way for both financial and spatial reasons.  I simply
    want to upgrade to the latest server technology with the version that fits my "NANO" size business.
    Also, I've yet been able to find CLEAR information about Licensing Multipoint.  I've found lots of places that tell me that I have to use OEM or Open licensing - whatever that means - but no explanation of what licenses are required and MOST IMPORTANTLY
    how much do the bloody licenses cost.  Can anyone enlighten me about that???????????
    Capt. Dinosaur

  • Multipoint Server 2012 - Display Sleep

    I have several WMS 2012 boxes with Atrust m300 zero clients. I am having an issue since upgrading from WMS 2011 that my zero clients displays don't sleep. The direct connected ps/2 stations display will sleep, but all other clients won't.
    http://technet.microsoft.com/en-us/library/dn690048.aspx
    Per this technet article it sounds like I would need to enable the SessionIdleTimeout regkey to disconnect the idle sessions. I have enabled this key, but it does not appear to be doing anything on my multipoint server. 
    I guess my question is does anyone with USB attached zero clients have display sleep working in some fashion?

    Windows Multipoint Server is not a supported platform at this time. See http://www.novell.com/support/kb/doc.php?id=7006589.
    Thanks,
    Earle Wells
    Novell Technical Services
    >>> n7hansen<[email protected]> 6/6/2013 2:16 PM >>>
    We have installed the Client 2 SP3 (IR2) on Windows Multipoint Server
    2012. On startup the error "The domain name is not valid. Please try
    again" appears. If we click past this error the windows login screen
    appears. If you click on the icon of the most recent user the user name
    WmsShell appears along with a populated password field. If you press
    enter the WmsShell account logs in without problems and the multipoint
    server continues to log in and the Novell login screen appears and users
    can log in without any problem.
    The issue we are having is that the WmsShell account should be logging
    in automatically without any intervention. If we uninstall the client
    the Multipoint Server logs in correctly but after installing the client
    again it comes back. The only thing I can find is this TID 7008643. A
    new release of the client seemed to take care of that issue.
    https://www.novell.com/support/kb/doc.php?id=7008643
    Any suggestions would be appreciated.
    n7hansen
    n7hansen's Profile: http://forums.novell.com/member.php?userid=138722
    View this thread: http://forums.novell.com/showthread.php?t=467330

  • Activating/changing Multipoint server 2012 from evaluation to licensed

    Hi
    Could you please help in how to activate or change the Windows Multipoint server 2012 from evaluation to licensed one?
    Below URL is for Windows server 2012, is this the same steps i need to follow?
    http://technet.microsoft.com/en-us/library/jj574204.aspx
    Thanks for your help!!

    according to this you should be able to 
    http://technet.microsoft.com/en-us/library/dn303416.aspx
    Upgrade means
    moving from your existing operating system release to a more recent release, while staying on the same hardware. For example, if your server is running Windows Server 2012, you can upgrade it to Windows Server 2012 R2. You can upgrade from an evaluation version
    of the operating system to a retail version, from an older retail version to a newer version, or, in some cases, from a volume-licensed edition of the operating system to an ordinary retail edition.
    Regards,
    Denis Cooper
    MCITP EA - MCT
    Help keep the forums tidy, if this has helped please mark it as an answer
    My Blog
    LinkedIn:

  • Issue when running acutal Off-cycle payroll in India!

    Dear experts!
    I have an urgent issue when running ACTUAL off-cycle payroll in India as below: "Payroll already performed once in future".
    In testing mode, everything is fine. I have tried to check payroll result in pc_payresult and pu01, and Infotype 3. All of them show the last payroll in 31.07.2011. But now I run off-cycle payroll on 20.08.2011, this error is displayed. So I cannot run actual payroll for them.
    Please help me! I am really appreciated.
    Regards!
    Woody.

    Hello
    Normally this error message reflects an inconsistency in the payroll
    directory cluster, that you can view via RPUDIR00. What you can do to
    restore the consistency is to run the report RPUDIR00 for this pernr
    with the following parameters on the selection screen:
    Payroll for country                           
    Personnel number             
    Compare directory            
    Payroll results structure   
    detailed log                
    Save new directory             X          <  this will write the new directory.  If you want to test first, do not select this parameter.
    Afterwards it should be possible to run payroll for this employee.
    Thanks and Kind Regards
    Ramana

  • Hyperlink in pdf is missing when run from server.

    Hello,
    I create a link for a field in a report (using Hyperlink tab Hyperlink information).  When I export the pdf from Crystal Report, I could see the link when mouse over the field.  But when I run the report from opendocumentfrom server) , the link is missing.  Does Crystal Report support hyperlink in pdf when run from server?  Or do I miss anything?
    Thanks for your help in advance.

    Moving to BusinessObject forum

  • Issue when Run Report with  Hier selection   in the Portal

    Hi  Portal  BI Experts,
    we are finding a strange issue  when Running the Report.
    the following  Variables are in the  Report  Selection screen :
    Company code [optiona]
    Prod.Variance Type [ mandatory]
    Hierarchy Node Variable [optional]
    TheQuery  which I am Running  thro Bex Analyzer  with  the Hier  selection as below , is working  fine. But
    When I  run   thro portal with Hier selection value   with    00/50/G310/702258(0CUST_SALES
    It automatically  display as +00/50/G310/702258(0CUST_SALES    with + symbol. and  thro the error:
    Input "\+00/50/G310/702258(0CUST_SALES);\+00/51/G410/703096(0CUST_SALES)" for Ship-To Party (Sales has invalid format
    If I remove the plus symbol  report runnig fine.
    Your  immediate help highly appreciated.
    Thanks
    Hema
    Edited by: hemav on Mar 21, 2011 2:29 PM

    Hi Jaya,
    This is the Error message  I am facing when I Execute ithe query  report n the Web[Portal]
    Input "\+00/50/G310/702258(0CUST_SALES);\+00/51/G410/703096(0CUST_SALES)" for Ship-To Party (Sales has invalid format
    ie. In the variable screen the selected hier value  automaticvally display with plus symbol
    Actual   Hier  value :   00/50/G310/702258(0CUST_SALES)
    Once close the Hier  selection list window , the Hier value  turned to  +00/50/G310/702258(0CUST_SALES)
    If I give ok with this Plus symbol  it throwing the above error.  By  removing the Plus symbol manually  it is working fine.
    I unable locate the  settings.
    that too when I run the same report  in Bex Analyzer  woking fine , no issues in the Hier  value.
    Thanks ,
    Hema

  • What kind of anti-virus software works with Windows Multipoint Server 2012?

    Is there any certified anti-virus software for Multipoint server 2012?

    You can use ie one of these
    System Center EndPoint Protection
    ESET Antivirus
    McAfee VirusScan Enterprise
    Symantec Protection Suite

Maybe you are looking for

  • ITunes album artwork - how can I stop iTunes downloading the wrong artwork?

    I was delighted to see that in the upgraded iTunes there is a facility to download album artwork using, I presume, much the same methodology as downloading track listings. While my experience of downloading track listings has largely been OK - save f

  • No startup with restored WIN XP on Bootcamp

    Hi: I partitioned a Western Digital HDD on my MacPro with Bootcamp Assistent and restored the image of another (smaller) NTFS Bootcamp partition onto it and expanded the file system using WinClone. However, I cannot start into WIN XP SP3. After the a

  • Photos do not show in Messages - Only show as image filename

    For a long awhile now on Messages has not been handling images sent to me properly. All that shows up on Messages on my MBP (now running Yosemite) when someone sends me a message is the image filename (example: IMG_0456), with a little Preview icon t

  • Is it common for the front camer to stop working?

    The front camera on my iPod randomly stopped working months ago and I've been to busy to get it fixed or whatever, I don't really know what to do, is this something that should be fixed by apple for free? Or don't have to pay for this?

  • Apxchpwd

    Hi Friends, I want to change my apex admin superuser passwd because i forgot it. I run the "apxchpwd.sql" and it ask for the password of ADMIN. My question is, what WORkSPACE and USERNAME should I login to (assuming may password is PASSWD)? is it ADM