"Warning : VMName is not supported in the Windows Azure Emulator in role 'WorkerRole1'"

I have a WorkerRole and I am trying to use the vmName attribute is the cscfg file;
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<ServiceConfiguration xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration" osFamily="2" osVersion="*" serviceName="AzureDeploymentProject">
<Role name="WorkerRole1" vmName="vma">
<Instances count="2"/>
When I run it up with the following ;
"C:\Program Files\Microsoft SDKs\Windows Azure\Emulator\csrun.exe" /run:"C:\Users\john\workspace-azure\AzureRunMeOutside\deploy\WindowsAzurePackage.cspkg";"C:\Users\john\workspace-azure\AzureRunMeOutside\deploy\ServiceConfiguration.cscfg" /usefullemulator
I get the following error;
"Warning : VMName is not supported in the Windows Azure Emulator in role 'WorkerRole1'."
Does this mean that the ComputeEmulator does not support use of the vmName attribute, or am I doing something wrong.

Hi Jambor.
Thanks for the reply.
I am using Compute Emulator 2.3:
c:\Users\john\workspace-azure\AzureRunMeOutside\emulatorTools>"C:\Program Files\Microsoft SDKs\Windows Azure\Emulator\cs
run.exe"
Windows(R) Azure(TM) Desktop Execution Tool version 2.3.0.0
for Microsoft(R) .NET Framework 4.0
Copyright © Microsoft Corporation. All rights reserved.
Use "csrun /?" for command-line syntax.
c:\Users\john\workspace-azure\AzureRunMeOutside\emulatorTools>
and SDK 2.3 and I still get this warning. Am I using the correct namespace/version for the configuration?
xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration"
Where is the vmName registered, and how can I get access to it?
If I use the following, the DNS name is not registered in my standard DNS ( I am using Windows 7 Pro SP1 x64 and the machine is outside a Windows Domain, using a corporate DNS server ). Is there some 'Compute Emulator' DNS that I need to lookup, or do I
have to set the DNS part of the Role Endpoints to point to my local DNS server? In the cloud Azure provides DNS services Azure
Name Resolution (DNS), is there any Compute Emulator equivalent?
private void printOutInterestingInfo()
Tracer.WriteLine("Hostname is " + Dns.GetHostName(), "Information");
foreach (var endpoint in RoleEnvironment.CurrentRoleInstance.InstanceEndpoints)
string variable = endpoint.Key;
string value = endpoint.Value.IPEndpoint.Port.ToString();
string ipAdress = endpoint.Value.IPEndpoint.Address.ToString();
try
IPHostEntry hostEntry = Dns.GetHostEntry(ipAdress);
string machineName = hostEntry.HostName;
Tracer.WriteLine("\tEndpoint "+variable+": Machine name: " + machineName, "Information");
catch(Exception e)
Tracer.WriteLine("\tEndpoint "+variable+": Machine name is not available for ipAdress: "+e, "Information");
Tracer.WriteLine("\tEndpoint "+variable+": IP Address: " + ipAdress, "Information");
Tracer.WriteLine("\tEndpoint " + variable + ": Port: " + endpoint.Value.IPEndpoint.Port, "Information");
foreach (var role in RoleEnvironment.Roles)
foreach (RoleInstance roleInstance in role.Value.Instances)
Tracer.WriteLine("Role: " + roleInstance.Role.Name, "Information");
Tracer.WriteLine("\tInstance: " + roleInstance.Id, "Information");
foreach (RoleInstanceEndpoint roleInstEndpoint in roleInstance.InstanceEndpoints.Values)
Tracer.WriteLine("\t\tInstance endpoint IP address and port: " + roleInstEndpoint.IPEndpoint, "Information");
Information: MU: 2014-09-02 10:36:42Z Hostname is mu
A first chance exception of type 'System.Net.Sockets.SocketException' occurred in System.dll
Information: MU: 2014-09-02 10:36:46Z Endpoint Debugging: Machine name is not available for ipAdress: System.Net.Sockets.SocketException (0x80004005): No such host is known
at System.Net.Dns.InternalGetHostByAddress(IPAddress address, Boolean includeIPv6)
at System.Net.Dns.GetHostEntry(String hostNameOrAddress)
at WorkerRole.RunMe.printOutInterestingInfo() in c:\Users\john\git\AzureRunMe\WorkerRole\RunMe.cs:line 355
Information: MU: 2014-09-02 10:36:46Z Endpoint Debugging: IP Address: 127.255.0.0
Information: MU: 2014-09-02 10:36:46Z Endpoint Debugging: Port: 8091
A first chance exception of type 'System.Net.Sockets.SocketException' occurred in System.dll
Information: MU: 2014-09-02 10:36:51Z Endpoint http: Machine name is not available for ipAdress: System.Net.Sockets.SocketException (0x80004005): No such host is known
at System.Net.Dns.InternalGetHostByAddress(IPAddress address, Boolean includeIPv6)
at System.Net.Dns.GetHostEntry(String hostNameOrAddress)
at WorkerRole.RunMe.printOutInterestingInfo() in c:\Users\john\git\AzureRunMe\WorkerRole\RunMe.cs:line 355
Information: MU: 2014-09-02 10:36:51Z Endpoint http: IP Address: 127.255.0.0
Information: MU: 2014-09-02 10:36:51Z Endpoint http: Port: 81
A first chance exception of type 'System.Net.Sockets.SocketException' occurred in System.dll
Information: MU: 2014-09-02 10:36:55Z Endpoint http-alt: Machine name is not available for ipAdress: System.Net.Sockets.SocketException (0x80004005): No such host is known
at System.Net.Dns.InternalGetHostByAddress(IPAddress address, Boolean includeIPv6)
at System.Net.Dns.GetHostEntry(String hostNameOrAddress)
at WorkerRole.RunMe.printOutInterestingInfo() in c:\Users\john\git\AzureRunMe\WorkerRole\RunMe.cs:line 355
Information: MU: 2014-09-02 10:36:55Z Endpoint http-alt: IP Address: 127.255.0.0
Information: MU: 2014-09-02 10:36:55Z Endpoint http-alt: Port: 8081
The thread 0x2504 has exited with code 259 (0x103).
The thread 0x1728 has exited with code 259 (0x103).
Information: MU: 2014-09-02 10:37:09Z Endpoint telnet: IP Address: 127.255.0.0
Information: MU: 2014-09-02 10:37:09Z Endpoint telnet: Port: 24
Information: MU: 2014-09-02 10:37:09Z Role: WorkerRole
Information: MU: 2014-09-02 10:37:09Z Instance: deployment23(267).AzureRunMe.WorkerRole_IN_0
Information: MU: 2014-09-02 10:37:09Z Instance endpoint IP address and port: 127.255.0.0:8091
Information: MU: 2014-09-02 10:37:09Z Instance endpoint IP address and port: 127.255.0.0:81
Information: MU: 2014-09-02 10:37:09Z Instance endpoint IP address and port: 127.255.0.0:8081
Information: MU: 2014-09-02 10:37:09Z Instance endpoint IP address and port: 127.255.0.0:24
outputs;

Similar Messages

  • I am trying to install windows on my mac via bootcamp, and it says I need to download Windows Support Software. I tried, but it says "Download can not continue. The Windows Support Software is not available.

    I am running OSX 10.6.8 Snow lepard I am trying to install windows on my intel imac 20in late 2006  via bootcamp, and it says I need to download Windows Support Software. I tried, but it says "Download can not continue. The Windows Support Software is not available. I bought the Imac secend hand and did not get the install dvd's with it What can I do?

    You don't need to download the Windows support software, because in Snow Leopard, they are only available as a download for the Late 2010 MacBook Air.
    Instead, you have to buy Mac OS X Snow Leopard. The Snow Leopard disc contains the Windows drivers for your Mac, so you have to install them after finishing the Windows installation

  • Help! Some features of Mac OS X Mavericks are not supported for the disk "Macintosh HD"

    I'm on a MacBook 13" mid 2010, OS X 10.7.5, I want to upgrade to OS X Mavericks. I have searched around for a few days, I find people with the same problem but can't really get the solution for it. I prefer not to reinstall OS X, I want to upgrade. I don't have boot camp or something just a 250 GB HD.
    Well, while I'm trying to upgrade from the download from Apps Store, I open the installer, press continue then accepts the Terms.. then select Macintosh HD and click install, then an warning message shows up "Some features of Mac OS X Mavericks are not supported for the disk "Macintosh HD"
    As I've read the article that is included in the waring message i did try to install anyway because it say that I would be fine, but when i did try to install the installer starts and after like 3 minutes a window appears, Install Failed.
    I've even try to make a installer on USB, both with the command in terminal and with Diskmaker, but it does not help.
    It seems impossible to upgrade. Please Help me.

    First, see the heading "What to do if the installer warns that no Recovery System can be created" in this support article. If you use Boot Camp, back up and delete the Windows partition using Boot Camp Assistant. Try the installation again.

  • WARNING: DSP 3 NOT supported under Quad-Core G5 Systems!

    This is from my posting at the DSP forum and a warning to all...
    Alright, are you ready for this one? I just contacted Apple Support about running DSP 3 on my newly purchased Quad-core G5.
    Those of us with a Quad-core G5 system are SCREWED when it comes to using DSP 3. The Apple guy told me that DSP 3 is not supported under the Quad systems (because "the Quad systems didn't exist at the time that DSP 3 was around" but wait, didn't DSP 4 come out BEFORE the Quad-core systems, too?). You have to use DSP 4 if you have a Quad-core G5.
    I explained my outrage to the guy (very unsympathetic) that Apple does not post this information on their website and does not inform their Apple Store employees about the issue (I had mentioned to several employees of my intentions to run DSP 3 on the system when I was buying it).
    The guy said that no one's complaining about this issue because "everyone gets the latest and greatest software to run on the newest machines" and "that's just the nature of technology" Yeah, right. I hate to say it, but I have Windows 98 apps from a single proc that run fine on Windows XP on a dual proc system.
    Anyway, spread the word and give Apple some more money by upgrading to DSP 4, so that they can keep nickel and diming us. The guy mentioned that if anyone wants to complain, that they can complain to the Final Cut Pro discussions site since apparently, that's the place where Apple actually reads posts.

    Heya,
    Unsupported it may be, but does it run ok? I could
    see it having worse performance than on a single-proc
    machine, but it shouldn;t have any actual problems.
    The guy said that no one's complaining about this
    issue because "everyone gets the latest and greatest
    software to run on the newest machines" and "that's
    Well, given that you have bought their first machine
    which supports > 2 concurrent threads [e.g. one system
    thread and one app thread], I'd say he's partly right.
    Anyone forking out the money for a quad will be [partly]
    wasting it if they do not run applications that are
    written to be fully multithreaded, i.e. written with
    the quad in mind.
    This is probably especially true on the Apple platform
    as the programmers will assume that the user is on
    one of the handful of machines available at the time.
    Being inherently lazy, no programmer is going to add the
    complexity of supporting n threads if only single-proc
    machines are being sold [yeah,ok, there were dual-procs,
    but that really means a two-thread system, which is
    normally the case anyways ... one for GUI and one for
    processing].
    to say it, but I have Windows 98 apps from a single
    proc that run fine on Windows XP on a dual proc
    system.
    Given the nature of Windows 98[/95/ME] and the
    applications written for it, I am very frightened
    for your system integrity
    --Mike

  • Error Message: This type of file is not supported, or the required codec is not installed?

    I am trying to get media from my computer, and I only receive this error message :
    This type of file is not supported, or the required codec is not installed?
    What should I do? I have a window 8 laptop. My video files are from my itouch/ipod. I am using Premiere Elements 7.
    I have used this software with success before. HELP would greatly be appreciated!

    darlingdarleen
    Did both laptop 1 and 2 have QuickTime (latest version or any version) installed on the computers with Premiere Elements 7 when you got this "this type of file......" message?
    If you go to the opened Premiere Elements 7 projects involved and look at Share/Personal Computer/QuickTime, do you find that QuickTime Presets are shown and that you find export settings choices under the Advanced Button/Video Tab and Audio Tab?
    Look at the file name of the video. Do you see any irregularies in the name of the file, dots and such?
    If you record new iPod footage, open a new Premiere Elements project, and import that iPod footage, do you still get the error message? Putting aside, iTouch, what model iPod are these videos coming from?
    Thanks.
    ATR

  • Error message: this computer is not supported by the system recovery media.

    I replaced a bad samasung hard drive in my Pavilion dv6z 3200 with a Seagate Momentus XT 750 GB 7200RPM SATA 6Gb/s 32 MB Cache 2.5 Inch Solid State Hybrid Drive ST750LX003 and when trying to restore Windows 7 64 bit OS get the error message "this computer is not supported by the system recovery media"

    Is the new hdd at least as large a capacity as the original? Can be larger capacity, but sometimes smaller will cause error.
    Enter BIOS by tapping F10 key. Is all system info intact/complete?
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Selective XML Index feature is not supported for the current database version , SQL Server Extended Events , Optimizing Reading from XML column datatype

    Team , Thanks for looking into this  ..
    As a last resort on  optimizing my stored procedure ( Below ) i wanted to create a Selective XML index  ( Normal XML indexes doesn't seem to be improving performance as needed ) but i keep getting this error within my stored proc . Selective XML
    Index feature is not supported for the current database version.. How ever
    EXECUTE sys.sp_db_selective_xml_index; return 1 , stating Selective XML Indexes are enabled on my current database .
    Is there ANY alternative way i can optimize below stored proc ?
    Thanks in advance for your response(s) !
    /****** Object: StoredProcedure [dbo].[MN_Process_DDLSchema_Changes] Script Date: 3/11/2015 3:10:42 PM ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    -- EXEC [dbo].[MN_Process_DDLSchema_Changes]
    ALTER PROCEDURE [dbo].[MN_Process_DDLSchema_Changes]
    AS
    BEGIN
    SET NOCOUNT ON --Does'nt have impact ( May be this wont on SQL Server Extended events session's being created on Server(s) , DB's )
    SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
    select getdate() as getdate_0
    DECLARE @XML XML , @Prev_Insertion_time DATETIME
    -- Staging Previous Load time for filtering purpose ( Performance optimize while on insert )
    SET @Prev_Insertion_time = (SELECT MAX(EE_Time_Stamp) FROM dbo.MN_DDLSchema_Changes_log ) -- Perf Optimize
    -- PRINT '1'
    CREATE TABLE #Temp
    EventName VARCHAR(100),
    Time_Stamp_EE DATETIME,
    ObjectName VARCHAR(100),
    ObjectType VARCHAR(100),
    DbName VARCHAR(100),
    ddl_Phase VARCHAR(50),
    ClientAppName VARCHAR(2000),
    ClientHostName VARCHAR(100),
    server_instance_name VARCHAR(100),
    ServerPrincipalName VARCHAR(100),
    nt_username varchar(100),
    SqlText NVARCHAR(MAX)
    CREATE TABLE #XML_Hold
    ID INT NOT NULL IDENTITY(1,1) PRIMARY KEY , -- PK necessity for Indexing on XML Col
    BufferXml XML
    select getdate() as getdate_01
    INSERT INTO #XML_Hold (BufferXml)
    SELECT
    CAST(target_data AS XML) AS BufferXml -- Buffer Storage from SQL Extended Event(s) , Looks like there is a limitation with xml size ?? Need to re-search .
    FROM sys.dm_xe_session_targets xet
    INNER JOIN sys.dm_xe_sessions xes
    ON xes.address = xet.event_session_address
    WHERE xes.name = 'Capture DDL Schema Changes' --Ryelugu : 03/05/2015 Session being created withing SQL Server Extended Events
    --RETURN
    --SELECT * FROM #XML_Hold
    select getdate() as getdate_1
    -- 03/10/2015 RYelugu : Error while creating XML Index : Selective XML Index feature is not supported for the current database version
    CREATE SELECTIVE XML INDEX SXI_TimeStamp ON #XML_Hold(BufferXml)
    FOR
    PathTimeStamp ='/RingBufferTarget/event/timestamp' AS XQUERY 'node()'
    --RETURN
    --CREATE PRIMARY XML INDEX [IX_XML_Hold] ON #XML_Hold(BufferXml) -- Ryelugu 03/09/2015 - Primary Index
    --SELECT GETDATE() AS GETDATE_2
    -- RYelugu 03/10/2015 -Creating secondary XML index doesnt make significant improvement at Query Optimizer , Instead creation takes more time , Only primary should be good here
    --CREATE XML INDEX [IX_XML_Hold_values] ON #XML_Hold(BufferXml) -- Ryelugu 03/09/2015 - Primary Index , --There should exists a Primary for a secondary creation
    --USING XML INDEX [IX_XML_Hold]
    ---- FOR VALUE
    -- --FOR PROPERTY
    -- FOR PATH
    --SELECT GETDATE() AS GETDATE_3
    --PRINT '2'
    -- RETURN
    SELECT GETDATE() GETDATE_3
    INSERT INTO #Temp
    EventName ,
    Time_Stamp_EE ,
    ObjectName ,
    ObjectType,
    DbName ,
    ddl_Phase ,
    ClientAppName ,
    ClientHostName,
    server_instance_name,
    nt_username,
    ServerPrincipalName ,
    SqlText
    SELECT
    p.q.value('@name[1]','varchar(100)') AS eventname,
    p.q.value('@timestamp[1]','datetime') AS timestampvalue,
    p.q.value('(./data[@name="object_name"]/value)[1]','varchar(100)') AS objectname,
    p.q.value('(./data[@name="object_type"]/text)[1]','varchar(100)') AS ObjectType,
    p.q.value('(./action[@name="database_name"]/value)[1]','varchar(100)') AS databasename,
    p.q.value('(./data[@name="ddl_phase"]/text)[1]','varchar(100)') AS ddl_phase,
    p.q.value('(./action[@name="client_app_name"]/value)[1]','varchar(100)') AS clientappname,
    p.q.value('(./action[@name="client_hostname"]/value)[1]','varchar(100)') AS clienthostname,
    p.q.value('(./action[@name="server_instance_name"]/value)[1]','varchar(100)') AS server_instance_name,
    p.q.value('(./action[@name="nt_username"]/value)[1]','varchar(100)') AS nt_username,
    p.q.value('(./action[@name="server_principal_name"]/value)[1]','varchar(100)') AS serverprincipalname,
    p.q.value('(./action[@name="sql_text"]/value)[1]','Nvarchar(max)') AS sqltext
    FROM #XML_Hold
    CROSS APPLY BufferXml.nodes('/RingBufferTarget/event')p(q)
    WHERE -- Ryelugu 03/05/2015 - Perf Optimize - Filtering the Buffered XML so as not to lookup at previoulsy loaded records into stage table
    p.q.value('@timestamp[1]','datetime') >= ISNULL(@Prev_Insertion_time ,p.q.value('@timestamp[1]','datetime'))
    AND p.q.value('(./data[@name="ddl_phase"]/text)[1]','varchar(100)') ='Commit' --Ryelugu 03/06/2015 - Every Event records a begin version and a commit version into Buffer ( XML ) we need the committed version
    AND p.q.value('(./data[@name="object_type"]/text)[1]','varchar(100)') <> 'STATISTICS' --Ryelugu 03/06/2015 - May be SQL Server Internally Creates Statistics for #Temp tables , we do not want Creation of STATISTICS Statement to be logged
    AND p.q.value('(./data[@name="object_name"]/value)[1]','varchar(100)') NOT LIKE '%#%' -- Any stored proc which creates a temp table within it Extended Event does capture this creation statement SQL as well , we dont need it though
    AND p.q.value('(./action[@name="client_app_name"]/value)[1]','varchar(100)') <> 'Replication Monitor' --Ryelugu : 03/09/2015 We do not want any records being caprutred by Replication Monitor ??
    SELECT GETDATE() GETDATE_4
    -- SELECT * FROM #TEMP
    -- SELECT COUNT(*) FROM #TEMP
    -- SELECT GETDATE()
    -- RETURN
    -- PRINT '3'
    --RETURN
    INSERT INTO [dbo].[MN_DDLSchema_Changes_log]
    [UserName]
    ,[DbName]
    ,[ObjectName]
    ,[client_app_name]
    ,[ClientHostName]
    ,[ServerName]
    ,[SQL_TEXT]
    ,[EE_Time_Stamp]
    ,[Event_Name]
    SELECT
    CASE WHEN T.nt_username IS NULL OR LEN(T.nt_username) = 0 THEN t.ServerPrincipalName
    ELSE T.nt_username
    END
    ,T.DbName
    ,T.objectname
    ,T.clientappname
    ,t.ClientHostName
    ,T.server_instance_name
    ,T.sqltext
    ,T.Time_Stamp_EE
    ,T.eventname
    FROM
    #TEMP T
    /** -- RYelugu 03/06/2015 - Filters are now being applied directly while retrieving records from BUFFER or on XML
    -- Ryelugu 03/15/2015 - More filters are likely to be added on further testing
    WHERE ddl_Phase ='Commit'
    AND ObjectType <> 'STATISTICS' --Ryelugu 03/06/2015 - May be SQL Server Internally Creates Statistics for #Temp tables , we do not want Creation of STATISTICS Statement to be logged
    AND ObjectName NOT LIKE '%#%' -- Any stored proc which creates a temp table within it Extended Event does capture this creation statement SQL as well , we dont need it though
    AND T.Time_Stamp_EE >= @Prev_Insertion_time --Ryelugu 03/05/2015 - Performance Optimize
    AND NOT EXISTS ( SELECT 1 FROM [dbo].[MN_DDLSchema_Changes_log] MN
    WHERE MN.[ServerName] = T.server_instance_name -- Ryelugu Server Name needes to be added on to to xml ( Events in session )
    AND MN.[DbName] = T.DbName
    AND MN.[Event_Name] = T.EventName
    AND MN.[ObjectName]= T.ObjectName
    AND MN.[EE_Time_Stamp] = T.Time_Stamp_EE
    AND MN.[SQL_TEXT] =T.SqlText -- Ryelugu 03/05/2015 This is a comparision Metric as well , But needs to decide on
    -- Peformance Factor here , Will take advise from Lance if comparision on varchar(max) is a vital idea
    --SELECT GETDATE()
    --PRINT '4'
    --RETURN
    SELECT
    top 100
    [EE_Time_Stamp]
    ,[ServerName]
    ,[DbName]
    ,[Event_Name]
    ,[ObjectName]
    ,[UserName]
    ,[SQL_TEXT]
    ,[client_app_name]
    ,[Created_Date]
    ,[ClientHostName]
    FROM
    [dbo].[MN_DDLSchema_Changes_log]
    ORDER BY [EE_Time_Stamp] desc
    -- select getdate()
    -- ** DELETE EVENTS after logging into Physical table
    -- NEED TO Identify if this @XML can be updated into physical system table such that previously loaded events are left untoched
    -- SET @XML.modify('delete /event/class/.[@timestamp="2015-03-06T13:01:19.020Z"]')
    -- SELECT @XML
    SELECT GETDATE() GETDATE_5
    END
    GO
    Rajkumar Yelugu

    @@Version : ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Microsoft SQL Server 2012 - 11.0.5058.0 (X64)
        May 14 2014 18:34:29
        Copyright (c) Microsoft Corporation
        Developer Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor)
    (1 row(s) affected)
    Compatibility level is set to 110 .
    One of the limitation states - XML columns with a depth of more than 128 nested nodes
    How do i verify this ? Thanks .
    Rajkumar Yelugu

  • How to solve "this type of file is not supported, or the required codec is not installed"?

    Hi all,
    I've just started using a new computer with WIndows 8.1 within the last week and have loaded my Adobe Premiere Elements 11.0 software into it.
    In trying to view and edit a video I created on my old computer, I got "Media Pending" and "Media Offline" notices as soon as I began. The source files are located on an external drive with a permanent letter designation. I began the process of reconnecting my Project Assets files with the source files this morning, but have now encountered a new roadblock. Each time I try, I get the message "this type of file is not supported, or the required codec is not installed." It offers no information or options other than to click "OK," which is not very helpful.
    All the source files are located in one folder on my external drive. I have been able to reconnect the JPEGs and the mp3 source files but not the AVI video files.
    Here are three screenshots. The first is the "Media Offline" message, the second is the message I receive when I try to reconnect my Project Assets to the source files and the third is a screenshot of the codecs installed on the new computer.
    Here is my new computer information:
    Model: Del Inspiron 3847
    Intel Core i5-4460
    CPU @ 3.20 GHz  3.20 GHz
    RAM 8 GB
    System type: 64-bit, x64-based processor
    I hope someone can guide me. What do I need to do to solve this problem?
    Thank you.
    Message was edited by: Janie Christensen Ficara

    StreetSongs
    Thank your for the information supplied.
    But, what are the properties of this .avi file that you seek?
    Video Compression
    Audio Compression
    Frame Size
    Frame Rate
    Interlaced or Progressive
    Pixel Aspect Ratio
    Right now of prime interest is the video compression that is being wrapped by that AVI wrapper/container.
    AVCHD.avi
    MotionJPEG.avi
    XviD.avi
    DviX.avi
    other
    There are instances were a particular video compression or a particular container/wrapper format is each supported by Premiere Elements, but
    not a combo of those particular two. But, in this instance, I suspect this to be a MotionJPEG video codec issue, but your details will
    point us to the actual situation, and we will plan troubleshooting strategy from there.
    ATR

  • I have tried to view videos created in premiere elements 10 and I get the following message: "this file type is not supported, or the required codec is  not installed.  When it opens there is a red screen in the monitor panel with Korean writing which als

    I have tried to view videos created in premiere elements 10 and I get the following message: "this file type is not supported, or the required codec is  not installed.  When it opens there is a red screen in the monitor panel with Korean writing which also appears in the place of each clip in the video.  I tried uninstalling and reinstalling premiere elements 10, but that did not have any effect on the video.  Do you have any suggestions?  I researched codec, but do not understand them at all.

    gloucester
    In case you did not find it, the following is a copy/paste of the Announcement on Premiere Elements 19/NVIDIA GeForce
    that appears at the top of this forum.
    Premiere Elements 10 NVIDIA Video Card Driver Roll Back
    If you are a Premiere Elements 10 user whose Windows computer uses a NVIDIA GeForce video card and you are experiencing
    Premiere Elements 10 display and/or unexplained program behavior, then your first line of troubleshooting needs to be rolling
    back the video card driver version instead of assuring that it is up to date.
    Since October 2013 to the present, there have been a growing number of reports about display and unexplained workflow
    glitches specific to the Premiere Elements 10 user whose Windows computer has a NVIDIA GeForce video card. If this applies
    to you, then the “user to user” remedy is to roll back the NVIDIA GeForce video card driver as far as is necessary to get rid of
    the problems. The typical driver roll back has gone back as far as March – July 2013 in order to get a working Premiere
    Elements 10. Neither NVIDIA nor Adobe has taken any corrective action in this regard to date, and none is expected moving forward.
    Since October 2013, the following thread has tried to keep up with the Premiere Elements 10 NVIDIA reports
    http://forums.adobe.com/thread/1317675
    Older NVIDIA GeForce drivers can be found
    http://www.nvidia.com/Download/Find.aspx?lang=en-us
    A February 2014 overview of the situation as well as how to use the older NVIDIA GeForce drivers for the driver roll back can be found
    http://atr935.blogspot.com/2014/02/pe10-nvidia-video-card-roll-back.html
    ATR

  • Sound has stopped working; failed to play test tone; format not supported by the device (Vista x64 Ultimate)

    I can no longer hear any sound from my speakers/headphones. This happened suddenly yesterday without any hardware changes or noticeable software updates.
    -- The sound is not muted and the volume is set to full.
    -- In the device manager, my SigmaTel HD Audio device has no warnings or errors.
    -- I can't find any related messages in the Event Viewer.
    -- The primary audio device is selected as the default for playback. The mixer shows my media player as being mixed properly to the device.
    -- In the sound control panel, under Playback > Speakers/Headphones > Properties > Advanced:
     - I get the error message "failed to play test tone" when I try to Test my Default Format (dvd quality)
     - I get the error message "format not supported by the device" when I try to change my Default Format
    -- Note that unlike others who have similar problems, I'm not joined to a domain
    I've tried
    *  rebooting
    *  uninstalling and reinstalling the driver for the sound card
    *  "disable all enhancements" in the sound control panel
    (http://social.msdn.microsoft.com/forums/en-US/windowspro-audiodevelopment/thread/b09e43ba-3ffa-4a45-9593-8eee686f124a/)
    *  looking in the registry for some registry key (not found)
    (http://www.consumingexperience.com/2009/04/failed-to-play-test-tone-no-sound-on.html)
    Computer details
    Dell XPS M1530
    Vista Ultimate x64 SP1 with current updates
    SigmaTel driver version 6.10.0.5866
    **Update**
    I followed the following steps:
        * using regedit, go to HKLM\System\CurrentControlSet\Control\WMI\AutoLogger\Audio and change the “Start” value from 0 to 1.
        * Reboot the machine
        * Try to play an audio file.
        * Post a link to the generated log file which you can find in: %WINDIR%\system32\LogFiles\Audio
    but don't know where to post the resulting AudioSrv.Evm.001 file. It's also not human readable and I can't find what utility parses it for reading.
    **Another update**
    Still can't read the EVM. logparser 2.2 can't parse it.
    Found this thread which interested me but isn't applicable to x64 (I think):
    http://social.msdn.microsoft.com/Forums/en-US/mediafoundationdevelopment/thread/94cdc662-e974-43de-8feb-6eb156924347
    **YAU**
    Dell confirms it's an OS issue after troubleshooting with me for a couple of hours (wow)
    Is there a way to look at this EVM file _without_ installing the Windows Driver Kit??

    Hi,
    Thanks for posting in Microsoft TechNet Windows Vista Forum.
    Upon your description, I see that you have done a lot of research and tests. Unfortunately, none of these troubleshooting works.
    Based on my experience, this issue related to "failed to play test tone" can be related to several reasons. It also includes hardware defect. I am confusing why Dell confirms that the issue is related to Operating System. Could you let me know what operation Dell had troubleshot with you?
    Meanwhile, here I just provide more troubleshooting except what you performed. If it doesn't work, I may also need to recommend that you contact Dell for support.
    1. Microsoft has released a Hotfix to troubleshoot related to "Failed to play test tone".
    http://support.microsoft.com/kb/930883
    2. Make sure that these services are started.
    Windows Audio
    Multimedia Class Scheduler
    Remote Procedure Call
    Windows Audio Endpoint Builder
    3. I noticed that this issue occurred not long ago, I may need to suggest that you perform a System Restore to the previous restore point when the computer without any problem.
    System Restore
    ==============
    1)     Please click on Start and choose All Programs, Accessories, System Tools, and then Windows Backup.
    2)     Click Restore on the left pane.
    3)     Choose Basic Restore.
    4)     Follow the wizard and click Next.
    5)     If you would like to restore everything in the backup, we can check the box “Restore everything in this backup” on the top of the window.
    6)     We can also browse and choose certain files and folders to restore. Then, click Next.
    7)     Then choose the folder to save the recovered files and click Next.
    8)     When we see a “Restore is complete!” message, click Finish.
    Meanwhile, as I know, I'm afraid that there is no other way to look at EVM file except Windows Driver Kit. Maybe there are some third-party software that out of my mind can look at EVM files, you may need to perform more research on Internet.
    Hope this helps. Thanks.

  • Xtreme Gamer is "not Supported by the Application" Problem. He

    My SoundBlaster XFi Xtreme Gamer has suddenly stopping being detected by my creative software, such as Volume Panel. The drivers are installed, and when I hover my mouse pointer over the volume panel is still shows "SB X-Fi Audo [E000]" which is the sound card, but when I doubled click to open the volume panel it says that "The current selected audio device is not supported by the application. Do you want to select another audio device now?". When I click "Yes", it doesn't show anything on list besides "Windows Default Audio". This happened out of no wheres, with no changes at all to my computer. Volume Panel was working yesterday, but when I woke up today it wasn't. I have no idea what could be causing this, or what caused it... I did update the drivers about a week ago, but it was all working fine since, until today.
    I haven't installed or uninstalled anything since it was working properly.
    I tried reinstalling drivers and software, and it did not fix anything. I also uninstalled everything including drivers from computer, and used my original installation CD to install everything over again. Every installed fine, but then for some reason it would not install the drivers. Windows was detecting the device, but when I went to install the hardware manually, it would ask for CD to find some files to install... it said this twice, I located the files it needed, and each time it would complete the process it would instantly reboot computer without notice. When the computer was booted up, it would ask then ask again for the Creative CD to install the detected hardware. So I for awhile I could not install the drivers, but for some reason out of no wheres it finally installed when I used the update installation file I downloaded from Creative.com, even though I had tried the same thing a few times, it for some reason installed drivers. But now it is all installed again, my software seems imcomplete and will still not work with the sound device. What seems to be the problem here? Only thing I can think of now is the installation for some reason became corrupted. Only way I can think of fixing it is reformatting my whole computer, but as of right now I don't feel like spending a whole day doing so.
    Is there anything that you can think of to fix this problem? I have had the sound card for about a year now. As of right now, I am still using headphones in the soundcard, but it doesn't sound good at all as I can't change anything in software. I also noticed that is no longer has as much installed as it would if I used my original CD. It doesn't have an option to switch sound modes anymore. It also doesn't now have "X-Fi Soundblaster" in "Add/Remove Programs" list. All it has in Add/Remove is "Creative Audo Console".
    I uninstalled everything I could and deleted left over files in the Creative directory, so I deleted the whole folder after.
    Only other thing I can think of is something in the registery is messed up, and causing the sound card not to be recognized. I also have WinXP SP2.

    I spent yet another hour or two trying to fix it, and nothing changed.
    I put it into a different PCI slot, and made no difference.
    PCI slot doesn't seem to be the problem, I am thinking it is something within the registry itself.
    I also put in the CD and there was no option to remove drivers, so I just went ahead and tried overwriting them, but that actually made things worse. My computer kept rebooting over and over when it hit the Windows Boot Up logo, and had to go into safe mode and do a system restore to get it back to normal.
    It also keeps asking for the CD when windows loads and it detects the soundcard.
    It will ask to locate acouple files, I do what it it says, but just as it is finishing installing the drivers it reboots the system.... when windows is loaded again, it will ask the same thing over, and will keep giving same results.
    There isn't anything to completely remove all the creative files and folders including the 00's of registry keys. Maybe Driver Sweeper or Driver Cleaner Pro might help? ill try them, but as of now im not bothering with the soundcard.... ill just reformat. I just hope it ain't the card itself, because I am a month over the one year warranty, and the azzholes from creative said there was nothing they can do about it.
    That alone made me want to turn to a different brand next time with better support. Creative has some of the worst support I know of.
    They tend to leave people hanging with their defecti've hardware. What I don't get is, that the card still installs the drivers at times, and it will still work but the software won't.
    I have been using it this whole time, but seems to freeze up my Guildwars alot.
    It still sounds good, way better than Onboard, just not as good as before because there were no options for change mode, or couldn't access the equalizer.
    Anyone know of any programs that will completely remove everything for the Xtreme Gamer Creative Software? Including everything in registry.
    Also, is it possible that there might be a Windows Service that might have an effect on the problem? I tried enabling a few things, then try rebootin and reinstalling, but didn't seem to help.
    But then again, I am not sure which services would cause the problem.
    Definately something happened with the last Creative Driver update, only took a week afterwards for something to go wrong.

  • Adobe Premiere Elements 12: This type of file is not supported, or the required codec is not installed

    Hallo! I use Adobe Premiere Elements 12 on my computer (PC, windows 7). When I try do re-open my projects on Adobe Premiere Elements I get the message: This type of file is not supported, or the required codec is not installed. The file type of my saved projects is: Adobe Premiere Elements Project (.prel). The same happens when i try to re-open the auto save files. This is very annoying because I losse all my earlier work. I would be really grateful for help. Best regards, Stefan

    With the QT Player installation, you should have Apple's H.264 CODEC.
    Maybe this ARTICLE will give you some tips on the GoPro footage.
    Good luck,
    Hunt

  • Does Photoshop CC not support touch on Windows 8.1 tablet?

    Does Photoshop CC not support touch on Windows 8.1 tablet? Stylus nor finger working on canvas. Have all the updates from Windows and Adobe.

    Photoshop does not have touch support. however some touch devices drivers have features the can be set to Photoshop Functions. For example
    Tablets that have drivers that use Wintab API for pen support can be used with Photoshop Brush Pen support.  Tablets that use Microsoft Ink API for pen support can not be used with Photoshop for Adobe does not have support for Microsoft INK API for Adobe states the INK  API lack features used by Photoshop Brush engine.

  • This type of file is not supported, or the required codec is not installed.

    About two months ago, I was able to edit these files and create videos from them. Now I get the following message: This type of file is not supported, or the required codec is not installed.
    Aside from regular Windows updates, nothing has been added or removed from my PC.
    I’m using fully patched Windows 7
    Premiere Elements 8.0
    Canon T2I Hi def movies are .MOV

    I can't believe that tech challenged moi is replying to the codec issue.  I bought a new computer with Windows 7.  I won't go into the tech issues with a Windows update....   Anyway I downloaded Photoshop Elements 8 and figured out how to import my photos and videos to Photoshop on the new comptuter.  Photos were fine but videos wouldn't play.  I got the messages about Apple's Quicktime required and then the "required codec is not installed".  I went "What is a "codec"!
    I downloaded Quicktime which went smoothly but I still had the "required codec not installed" message to deal with.  I researched and found that it referred to compressed/decompressed files(?)  Next I googled "Windows 7 codec download" (not even sure if there was one).  There was!   I clicked on the first result and downloaded the codec.  The info stated that this codec should read 99.9% of video files.  Went back to Photoshop and clicked on the blue video thumbnail.  It worked!!!  The video played just as it did on the old computer.
    Hope this helps someone else.  Now why would Windows 7 not include this codec in the first place.  I never had to download one before on other computers.  Only Quicktime needed downloading.  Oh, well.
    Maggie

  • SP1 to R2 Upgrade - The installed Version of SQL Server is not supported for the operational database

    Hello, 
    Am trying to upgrade a SCOM SP1 environment to SCOM R2( 3 MGT servers, 1 GW and 2 Web console boxes )
    The prerequisites are failing and it is stating the following ; 
    Operational Database SQL Version Check - The installed Version of SQL Server is not supported for the operational database
    Data Warehouse  SQL Version Check - The installed Version of SQL Server is not supported for the data warehouse
    The SQL servers are running SQL 2012 SP1 64 Enterprise, which is compatible.
    All other pre-upgrade tasks have been done. 
    Help appreciated! 

    I'm having the exact same issue, I believe. I think that Tubble has problem with SCOM 2012. Not 2007.
    I've checked the compatibility list for both SCOM 2012 SP1 and R2. All newer Windows Server and SQL versions are supported. We're running the SQL 2012 SP1 x64 Standard edition on a Windows Server 2012 Standard.
    I even tried to move the database from SQL 2012 to an older SQL 2008 R2, but that's not supported either. Only upgrading. Not downgrading.
    So, I started checking the opsMgrSetupWizard.log file for clues. And the error message was there as well. But the reason why it says not supported is that it can't get the info about the OS version, so I guess it assumes the OS version is to low. The RPC
    service can not be reached.
    [10:29:11]: Error: :GetRemoteOSVersion(): Threw Exception.Type: System.Runtime.InteropServices.COMException, Exception Error Code: 0x800706BA, Exception.Message: The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)
    [10:29:11]: Error: :StackTrace: at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)
    at System.Management.ManagementScope.InitializeGuts(Object o)
    at System.Management.ManagementScope.Initialize()
    at System.Management.ManagementObjectSearcher.Initialize()
    at System.Management.ManagementObjectSearcher.Get()
    at Microsoft.EnterpriseManagement.OperationsManager.Setup.Common.SetupValidationHelpers.GetRemoteOSVersion(String remoteComputer)
    [10:29:11]: Debug: :IsSQLOnAValidComputer: remote OS version string was null or empty.
    [10:29:11]: Error: :Error:IsValidSQLVersionCheck: SqlServer OS version is too low.
    [10:29:11]: Debug: :**************************************************
    [10:29:11]: Error: :<![CDATA[CheckPrerequisites: Logic Type:and IsValidOMDBSQLVersionCheck: 2]]>
    [10:29:11]: Error: :
    [10:29:11]: Error: :CheckPrerequisites: OMDBSqlVersionCheckTitle: Failed
    [10:29:11]: Error: :
    [10:29:11]: Debug: :**************************************************
    [10:29:33]: Error: :GetRemoteOSVersion(): Threw Exception.Type: System.Runtime.InteropServices.COMException, Exception Error Code: 0x800706BA, Exception.Message: The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)
    [10:29:33]: Error: :StackTrace: at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)
    at System.Management.ManagementScope.InitializeGuts(Object o)
    at System.Management.ManagementScope.Initialize()
    at System.Management.ManagementObjectSearcher.Initialize()
    at System.Management.ManagementObjectSearcher.Get()
    at Microsoft.EnterpriseManagement.OperationsManager.Setup.Common.SetupValidationHelpers.GetRemoteOSVersion(String remoteComputer)
    [10:29:33]: Debug: :IsSQLOnAValidComputer: remote OS version string was null or empty.
    [10:29:33]: Error: :Error:IsValidSQLVersionCheck: SqlServer OS version is too low.
    [10:29:33]: Debug: :**************************************************
    So, in our case this was just a FW that was blocking some high ports between management server and SQL. I believe TCP port 135 also needs to be open.
    Let's hope this fixes your issue as well, Tubble.
    Have a great day!

Maybe you are looking for

  • Scan multiple pages into a single PDF document?

    How can i scan multiple pages into a single multipage PDF file? I've seen similar questions posted, but I haven't found any good answers. The only advice i saw was to scan each page as a separate PDF document, then merge them into a single PDF using

  • Some things I missed in the update

    good day I wonder if there will be a contact form with attachment in an update and login password

  • Crystal Viewer report hangs

    Hello, I am having a problem deploying a Crystal report to run under IIS/aspx using the CrystalReportViewer. I rdp to the windows 2008 server, start crystal reports and the report works under Crystal on the server fine. Running the same crystal repor

  • Behaviour of Service Broker during clustered SQL Server failover

    Hi,  I have 3 instances of SQL Server 2005 hosted on a 3-node cluster, using Polyserve clustering.  Each instance is nominally hosted on its own node in the cluster. I have configured Service Broker to route messages from INST-A (on NODE-1) to INST-C

  • Possible to do a DL PAL / NTSC DVD?

    Hi, we just finishing our DVD which is a PAL project and just comes out to fit a single DVD. Is it possible to make a DualLayer DVD with a PAL project on the first half and a NTSC project on the second to increase the commercial sale possibilities fo