Record narration in Powerpoint 2013 with returns to previous slides

Hi,
I am trying to record narration on a Powerpoint slide show  (Powerpoint 2013). However I discovered that I can go only forward with slides. When I return to a previous slide the audio simply overwrites the narration of the first visit to the slide.
I s there any way to have Powerpoint store multiple audio segments and the timing on returning to previous slides ?
Thanks

Hi,
Could you please tell me how do you record narration in PowerPoint 2013? Do you use record slide show from Slide Show?
If yes, it records narration on each slide not by time. This is why you return to a previous slide the audio simply overwrites the narration of the first visit to the slide.
For more reference about record slide show:
http://office.microsoft.com/en-us/powerpoint-help/record-and-add-narration-and-timings-to-a-slide-show-HA010338313.aspx
Or we can try steps mentioned in following article:
http://blogs.office.com/2011/03/02/the-secret-to-converting-your-presentation-into-a-video/
Feel free to post back.
Regards,
Greta Ge
TechNet Community Support
It's recommended to download and install
Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
programs.

Similar Messages

  • Creating a new chart in PowerPoint 2013 with Chart Styles applied

    In PowerPoint 2013 when I manually insert a new chart into a slide, the chart automatically has the Chart Style "Style 1" applied. This has the effect of setting the font sizes of chart labels to 12.
    However, no Chart Styles are applied if I try to add a new chart to PowerPoint 2013 using the following C# code:
    var ppt = new Microsoft.Office.Interop.PowerPoint.Application();
    var presentation = ppt.Presentations.Add();
    var layout = Microsoft.Office.Interop.PowerPoint.PpSlideLayout.ppLayoutChart;
    var slide = presentation.Slides.Add(1, layout);
    var shapes = slide.Shapes;
    shapes.AddChart();
    Font sizes seem to default to 18. Is there any way to create a chart or to set Chart Styles using Interop so that it matches a chart produced manually (i.e. has Chart Styles applied)?
    I am aware of the Chart.ChartStyle property but it only seems to change chart colors and legend placement, not font size. There is no Macro recorder in PowerPoint, so I can't generate VBA code to replicate the action of creating a new chart.

    Hi
    >> there any way to create a chart or to set Chart Styles using Interop so that it matches a chart produced manually (i.e. has Chart Styles applied)?
    You can add using shapes.AddChart2() instead of the last sentence shapes.AddChart(), I have tested in my projects, if I using AddChart(), the label size and the space will be different from manually insert a chart into a slide, but AddChart2() is the same
    with manually operating.
    And This object, member, or enumeration is deprecated and is not intended to be used in your code.
    More details you cab refer to the following link
    https://msdn.microsoft.com/en-us/library/microsoft.office.interop.excel.shapes.addchart.aspx
    Best Regards
    Lan
    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.
    Click
    HERE to participate the survey.

  • PowerPoint 2013 Compatibility

    SmartArt Graphics created in PowerPoint 2013 do not appear in Presenter. The only work around I've come up with is to take a screenshot and then insert that. It's a pain and am hoping that I can adjust some settings

    I'm using PowerPoint 2013 with a Presenter Add-In.  The graphics are created in PowerPoint but when I go to convert into Presenter and upload, they are not visible.

  • Problem with return table(adding extra record)

    Hi,gurus,
      I am facing a probelm with return table, i.e it is adding body record and workarea record also to the data target. so, it is adding the actual record to data target including the workarea record to with the key figure and year values as zeros and spaces. It's quite strange.
    Please help me out, thanks a lot.

    Hi,
       I have an ODS with the keys fields(ZPS_TXMID,ZPS_NODE,ZPS_NODE) and data fields(ZAU_C108,ZAU_C109,0PROJECT). I have to split one record from datasource to 6 records into my ODS. I'm updating ZAU_C109 with a routine with return table. Here is the code, please check it for me:
    <i> data: prj like /BIC/PZPS_TXMID-PROJECT.
    data: ls_icube_value like ICUBE_VALUES.
    clear ls_icube_value.
    select single PROJECT into prj from /BIC/PZPS_TXMID
            where /BIC/ZPS_TXMID = COMM_STRUCTURE-/BIC/ZPS_TXMID.
    ls_icube_value-/BIC/ZPS_TXMID = COMM_STRUCTURE-/BIC/ZPS_TXMID.
    ls_icube_value-/BIC/ZAU_C108 = COMM_STRUCTURE-/BIC/ZAU_C108.
    ls_icube_value-/BIC/ZPS_NODE = '1'.
    ls_icube_value-/BIC/ZPS_SNODE = '0'.
    ls_icube_value-PROJECT = prj.
    ls_icube_value-/BIC/ZAU_C109 = COMM_STRUCTURE-/BIC/ZPS_HJHSJ.
    APPEND ls_icube_value TO RESULT_TABLE.
    ls_icube_value-/BIC/ZPS_NODE = '1'.
    ls_icube_value-/BIC/ZPS_SNODE = '1'.
    ls_icube_value-PROJECT = prj.
    ls_icube_value-/BIC/ZAU_C109 = COMM_STRUCTURE-/BIC/ZPS_HPSJ.
    APPEND ls_icube_value TO RESULT_TABLE.
    ls_icube_value-/BIC/ZPS_NODE = '1'.
    ls_icube_value-/BIC/ZPS_SNODE = '2'.
    ls_icube_value-PROJECT = prj.
    ls_icube_value-/BIC/ZAU_C109 = COMM_STRUCTURE-/BIC/ZAU_C101.
    APPEND ls_icube_value TO RESULT_TABLE.
    ls_icube_value-/BIC/ZPS_NODE = '2'.
    ls_icube_value-/BIC/ZPS_SNODE = '0'.
    ls_icube_value-PROJECT = prj.
    ls_icube_value-/BIC/ZAU_C109 = COMM_STRUCTURE-/BIC/ZPS_TJHSJ.
    APPEND ls_icube_value TO RESULT_TABLE.
    ls_icube_value-/BIC/ZPS_NODE = '2'.
    ls_icube_value-/BIC/ZPS_SNODE = '1'.
    ls_icube_value-PROJECT = prj.
    ls_icube_value-/BIC/ZAU_C109 = COMM_STRUCTURE-/BIC/ZPS_TDSJ.
    APPEND ls_icube_value TO RESULT_TABLE.
    ls_icube_value-/BIC/ZPS_NODE = '2'.
    ls_icube_value-/BIC/ZPS_SNODE = '2'.
    ls_icube_value-PROJECT = prj.
    ls_icube_value-/BIC/ZAU_C109 = COMM_STRUCTURE-/BIC/ZAU_C102.
    APPEND ls_icube_value TO RESULT_TABLE.
    ABORT = 0.</i>
       After loading, I checked the contents of ODS, there are 6 records(0project, ZAU_C108 are blank, other fields are correct) + 1 more record(ZPS_TXMID,0project, ZAU_C108 are correct, other fields are blank), what I expect is only 6 records with all fields being filled properly, no blanks, no extra records. Is it strange? or am I doing sth. wrong?
      Your help is appreciated.

  • Recording narration with keynote

    I've got a big keynote presentation of about 90 slides with plenty of compositions and transitions, and all my narration is written down in comments. I've already given that presentation but now I would like to publish it so that people who couldn't attend can catch-up. The first thing I'd like to do is a video of my slides with my narration on top of it.
    I thought it would be simple but I can't find a simple way to do it.
    So how can I actually record both video and audio output when playing this keynote and produce a video out of it? Of course exporting in flash or quicktime doesn't work because I can't control when slides are changing.
    Macbook Pro 17"   Mac OS X (10.4.9)  

    I highly suggest that you try out Profcast. I have been using it to record narration with my presentations and I am pleased with the results.
    http://profcast.com/public/index.php
    Here is an example that I recently did with profcast:
    http://balticsojourn.com/files/672f9e3eb22699506f46fb1ec92fcea9-7.html
    mini, 1.42 g4   Mac OS X (10.4.2)  

  • Can Keynote 3 record narration for slides (like PowerPoint)?

    Does anyone know if it's possible to record narration for selected slides in Keynote 3? Unfortunately, this much-desired feature was lacking in Keynote 2 (it could only play one audio file through the entire presentation). FYI, PowerPoint has this feature already, but it is then limited by an inability to export to Flash or QuickTime... Thanks!

    Thanks, nanotechmama! On your lead, I looked up the User's Guide and found this additional clarification:
    "Adding Narration and Other Audio
    You can add music—a file or playlist from your iTunes music library, or any other sound file—to a Keynote document. You can add sound as a soundtrack for the entire slideshow, or you can add sound to a single slide.
    If you add a soundtrack, the music starts playing when the slideshow starts. You can specify whether to play the audio once or repeatedly (or you can turn it off ).
    If you add a sound file to an individual slide, the sound plays when the slide appears and stops when you move to the next slide. You could, for example, record narration for each slide as an MP3 file; this technique is especially useful if you plan to export the slideshow as a self-playing QuickTime movie. (For more information, see “PowerPoint” on page 167.)
    Note: To make sure that the audio plays on other computers, “Copy audio and movies into document” must be selected in the expanded Save dialog. This option is on by default."
    So it looks like it might be possible to add a different narration file to each slide. I've therefore ordered a copy of Keynote 3, and I'll confirm in a week or so (once I receive it) whether this is indeed so.

  • Is anyone using Adobe Presenter 10 with PowerPoint 2013?

    I was online with the chat support who was trying to help me solve my Adobe Presenter 10 addin in problem with Powerpoint 2013.  He had me remove the software.  When I went to reinstall, the browser logged me off the chat.   When I went back in, they were gone for the day.   Now I have no presentation which was due to be uploaded last Saturday!   Can anyone help?

    Hi Alpi,
    After uninstalling Office 365 (powerpoint 2013 32bit) and reinstalling it , I was able to get the addin to work.
    Before this I reinstalled Adobe Presenter 10 , 3 times without success.
    I am using OS WIN 7
    So this solved my addin issue.   It did not solve my issue with my presentation missing the audio files.    When I publish the presentation in HTML it opens in Firefox perfectly.    But when I go to send the packaged  OR zip files they are missing the audio files.   No where to be found  but it has sound in Firefox HTML.    In the end I copied the audio files from a folder I found , into the folder to share.  Then zip the file using Windows. 
    I won't know if it worked because the network administrator is not back til tomorrow.
    Thanks for trying to assist me with this.   It has been a long day trying to resolve this issue.   I almost wish I had just redone the lecture in powerpoint and skipped the Adobe Presenter 10.   It may have taken me 2 or 3 hours.  But this is better than the 10 hours it took to deal with this issue.
    Have a good night
    Marybeth

  • When using the record function for narration in Keynote 09 version 5.1.1., the recording continually gets off sync with the slides even if nothing has been altered on any of the slides.

    I am trying to record narration for my slideshow in Keynote 09 version 5.1.1. I put the transitions on automatic and hit the record button, then read the slides as they advanced. The program allows me to record my voice, however, when I play the slideshow back the recording continually becomes more off sync with the slides with each play. Is there a way to fix this?

     Hi,
    One of my ex-colleagues has installed a NI-DAQ 6.5 in our system. [And I do not see any other naitional instruments card in the CPU of the computer, may be he removed it] I deleted the account and all his files in the system. When I am trying to install version8.0, its not getting installed and giving me a message that I should uninstall the previous version by going to Add/Remove programs in the control panel.
    I tried doing that, but the "Change/Remove" button does not seem to work...[There is no response and so unable to install the new version...]
    Any idea how can this problem be solved?
    It is a windowsXP operating system with SP2 installed on a machine with P4 processor.
    Thanks

  • Can I add a PowerPoint presentation with voice narration to my iTunes video folder

    I have a PowerPoint file with voice narrative in .pptx format.  It is 764MB file size.
    Is there a was to export it to movie format (.mov) and place it in my iTunes Video folder?
    Or is there another way to get my .pptx PowerPoint file into my iTunes movie/video folder?

    Hi
    Please describe How You go from PPT to iDVD. Via iMovie ?
    If so - then convert Your .wma file to .aiff (same kHz) and use this in iMovie instead. (no .mp3 either)
    Yours Bengt W

  • How to prevent PowerPoint 2013 from mucking with my laptop display mode?

    I have an EliteBook 8570p in a docking station, with an external monitor and keyboard attached.
    I typically have my display mode as "duplicate", with the same thing  showing on both my laptop screen and external monitor.  I use the external monitor as the main screen. This might be uncommon, but I prefer it this way.  I've
    been working this way for quite a while.
    I very recently started using MS PowerPoint 2013.  Today I discovered an annoying bug (feature?) with this combination.  I was in "slideshow mode" for a pptx I was working on, and I pressed ESC to get back to editing the doc.  What
    happened was that the external monitor just showed my background wallpaper, and the laptop screen showed the normal display, along with my background wallpaper.  I then had to slide over to my laptop keyboard and press Fn-F4 and set it to "Duplicate",
    and that restored my external monitor display.
    I don't like this behavior.  I also noticed that when I go into slideshow mode, the display on the laptop screen is different from what I see on the external monitor. It looks like it's showing an "intelligent" view of the slideshow, with
    a big panel showing the current page, and the next page in a smaller panel. That's interesting, but I don't want it to do that if I'm in "Duplicate" display mode.
    Is there a way to get the "older" behavior from PowerPoint 2013?

    Thanks Milan for the explanation.
    And the mentioned option can be found by going to the "SLID SHOW" tab>"Monitors" section on the ribbon in PowerPoint 2013.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How can I record narration with no video or beyond the end of my video in iMovie?

    I have a question about recording narration in iMovie.
    I wrote a script to read as the narration for a movie I'm making. My thought was I could record the narration first, then add video to match the spoken words.
    I've done this before in Sony Vegas on my PC and it worked out well, better than trying to speak to what was going on in the video after I record the video.
    Unfortunately, if I try to record narration in iMovie without any video being there yet, it won't record. It appears I need to put a video clip on the timeline first.
    If I put a short clip in and try to record narration beyond the end of it, iMovie quits recording at the end of the video clip.
    So I went to quicktime and recorded my narration there and have 10 audio files (since I just don't seem to be able to read this whole script without making mistakes).
    I then tried to add all 10 to my movie and I think it made me add a video clip first, but after I did, iMovie overlayed all 10 audio files on top of each other.
    If I try to drag them over one at a time, I still can't get them to go sequentially unless I add more video to my movie.
    There must be a way to add audio files or create narration without having to create a video file longer than your audio first.  Isn't there?
    I just can't seem to find a way to get the audio files layed out one after another without more video.  Very frustrating.
    At this point, I really want to know how to add audio files beyond the end of my video since I have them all recorded.
    But I'd also like to know how to record narration beyond the end of the video too for future projects.
    Thanks!
    Brad

    You could insert a bunch of placeholders in the timeline before doing the voiceover.
    You can find a range of placeholders (they are actually templates used in iMovie Trailers) in the Maps, Backgrounds & Animatics browser. This is the last browser at the end of the centre toolbar, after the Titles and Transitions browsers. Click on it and scroll down to see all the animatics (aka placholders or templates). Drag a number of these into your project timeline - as many as you think you need to cover your audio.
    When you've finished the voiceover, drag photos directly onto the animatics and select Replace from the pop-up menu. Adjust the timing by using the Inspector (double-click a photo to open the Inspector, then change the duration).
    John
    EDIT: Sorry, beaten by Bengt (again)!
    Message was edited by: John Cogdell

  • Powerpoint 2013 causes IExplore to crash when previewing an embedded youtube video

    Powerpoint 2013 causes IExplore to crash when previewing an embedded youtube video
    As a user with "local administrator" or "Power User"privileges the video previews the video plays, but as a normal user the following error occurs.
    Internet Explorer has stopped working
    A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available.
    Debug or Close Program
    Event Viewer details are as follows:
    Log Name:      Application
    Source:        Application Error
    Date:          28/01/2015 11:22:32
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:     
    Description:
    Faulting application name: IEXPLORE.EXE, version: 11.0.9600.17496, time stamp: 0x546fddcc
    Faulting module name: iertutil.dll, version: 11.0.9600.17496, time stamp: 0x546fee66
    Exception code: 0xc0000005
    Fault offset: 0x000e53a8
    Faulting process id: 0x15ec
    Faulting application start time: 0x01d03aecb5356af2
    Faulting application path: C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE
    Faulting module path: C:\Windows\syswow64\iertutil.dll
    Report Id: f311913d-a6df-11e4-bf49-8019346e8858
    Event Xml:
    < Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2015-01-28T11:22:32.000000000Z" />
        <EventRecordID>30194</EventRecordID>
        <Channel>Application</Channel>
        <Computer>ALMETMP566-W7.midkent.ac.uk</Computer>
        <Security />
      </System>
      <EventData>
        <Data>IEXPLORE.EXE</Data>
        <Data>11.0.9600.17496</Data>
        <Data>546fddcc</Data>
        <Data>iertutil.dll</Data>
        <Data>11.0.9600.17496</Data>
        <Data>546fee66</Data>
        <Data>c0000005</Data>
        <Data>000e53a8</Data>
        <Data>15ec</Data>
        <Data>01d03aecb5356af2</Data>
        <Data>C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE</Data>
        <Data>C:\Windows\syswow64\iertutil.dll</Data>
        <Data>f311913d-a6df-11e4-bf49-8019346e8858</Data>
      </EventData>
    < /Event>
    Process for creating a test file is as follows
    Via youtube and your preferred browser, search for any video file (eg rubik's cube), select a video and start to watch it.  Choose Share, Embed and copy the link information (eg <iframe width="560" height="315" src="//www.youtube.com/embed/MaltgJGz-dU"
    frameborder="0" allowfullscreen></iframe>)
    Close browser and create a new powerpoint 2013 presentation.
    Insert, Video, Online Video
    In the "From a Video Embed Code" box, paste the link information then click the arrow to apply
    Save the file and then Right Click on the file and Preview.
    In advance of the creation/running, I've applied the following KBs to the machine(s)
    kb2817636 & kb2837627
    As i said at the start, members of the Power Uses or Administrators group don't have this issue - but as 99% of our users are "users" and not really an option to make them all members of PU group.
    Same also happens if the computer is removed from the domain.  Admin & power users work, standard users crash IE.
    Uninstall and reinstall of Office 2013 and IE11 has no apparent difference.
    Assistance in this is appreciated.
    Thanks
    Jon

    hi Jon, do you have all available updates installed for your PowerPoint? Install the two KB in the links below, then test again:
    http://blogs.technet.com/b/bgp/archive/2014/04/09/support-for-youtube-videos-in-powerpoint-returns.aspx
    Flynn

  • PowerPoint 2013 - Choosing from only custom templates

    Dears,
    I need to force the Powerpoint 2013 users in my organization to choose ONLY from the corporate templates based on category (Internal, external, generic). Is there a way to provide an option to select the type of template while opening PP 2013,
    using a dialog box or some other way and then embed a watermark or header/footer with details of the creator, into the slides ?
    Thanks,
    Sudhan

    To preview within PowerPoint, we just right-click the video (in the designer layout) and choose "Preview". If we do this under a User account, we receive the error I described above. However, if we try using the same PowerPoint file under an Administrators
    account, performing the same actions, it shows up on the slide fine - it will even play.
    Using the embed code from YouTube (current or old - with and without fixed source links and versioning, etc.) produces the same results. It'll embed the video, but it can't be played in or out of a presentation without throwing an error (for accounts with
    User rights). Again, it will work under an Administrator account.
    And I am aware that at one time there was an issue with PowerPoint and online videos such as those from YouTube. However, since mid-April of this year, there have been a few updates to bring back that support. I believe, now, if the video can play in the
    browser, it can play in PowerPoint. See
    http://blogs.technet.com/b/bgp/archive/2014/04/09/support-for-youtube-videos-in-powerpoint-returns.aspx for more details. And yes, we have those updates (or their superseded ones) installed - as I mentioned before. The problem is an access problem; exception
    code c0000005 generally refers to an access violation exception, and that is definitely proven when we change permission levels from User to Administrator.

  • Cannot install SharePoint 2013 with SP1 on server 2012 R2. IIS configuration error

    Hey Guys,
    I'm experiencing a problem which seems to be common considering the number of posts I've found about it, but none of the provided solutions worked for me.
    I'm simply trying to install SharePoint 2013 with SP1 on a Windows Server Standard 2012 R2.
    I've downloaded from the MS Volume Licensing website the "SharePoint Server 2013 with SP1" ISO file :  SW_DVD5_SharePoint_Server_2013w_SP1_64Bit_English_MLF_X19-36118. So
    this is the slipstreamed version which is supposed to bring compatibility with 2012 R2.
    As I do not have direct access to the Internet I need to perform an offline installation. I also downloaded all prerequisities. When I run prerequisiteinstaller.exe with the necessary arguments, I get the following :
    (Full log file is below)
    I've tried the following :
    - Restarted the server multiple times
    - Manually removing/adding IIS role + restart
    - Running the prerequisiteinstaller.exe from the DVD or from an extracted version
    - Manually installing the prerequisities
    - Installed .Net 3.5 as recommended here (http://social.technet.microsoft.com/Forums/office/en-US/0b597d35-b02d-4236-894d-38efc0c7c6f6/sharepoint-2013-with-sp1-install-on-windows-server-2012-r2?forum=sharepointgeneral)
    None of the worked. So I'm stuck and I must completed the installation of this before the end of the week for an important project !
    Your help would be greatly appreciated.
    this is the complete log file :
    2014-09-09 14:30:26 - Processor architecture is (9)
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - Common Startup
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    2014-09-09 14:30:26 - Trying to remove the startup task if there is any.
    2014-09-09 14:30:26 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2014-09-09 14:30:26 - Successfully deleted the startup task
    2014-09-09 14:30:26 - Analyzing the following command line argument:
    2014-09-09 14:30:26 - /continue
    2014-09-09 14:30:26 - Continuing after restart
    2014-09-09 14:30:26 - Details of the current operating system:
    2014-09-09 14:30:26 - Major version number of the operating system: (6)
    2014-09-09 14:30:26 - Minor version number of the operating system: (2)
    2014-09-09 14:30:26 - Build number of the operating system: (0X23F0=9200)
    2014-09-09 14:30:26 - Major version number of the latest Service Pack: (0)
    2014-09-09 14:30:26 - Minor version number of the latest Service Pack: (0)
    2014-09-09 14:30:26 - Platform ID of the operating system: (2)
    2014-09-09 14:30:26 - Product suites available on the operating system: (0X110=272)
    2014-09-09 14:30:26 - Product type of the operating system: VER_NT_SERVER
    2014-09-09 14:30:26 - Product type: (0)
    2014-09-09 14:30:26 - OS type: (2)
    2014-09-09 14:30:26 - Configuring the application's property sheet...
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Windows Management Framework 3.0
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - PowerShellVersion
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 4.0
    2014-09-09 14:30:26 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft .NET Framework 4.5
    2014-09-09 14:30:26 - Reading the following DWORD value/name...
    2014-09-09 14:30:26 - Install
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-09-09 14:30:26 - The value is (1)
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - Version
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 4.5.51641
    2014-09-09 14:30:26 - A post release .NET 4.5 is installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Windows Identity Foundation (KB974405)
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 -
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 6.1.7600.0
    2014-09-09 14:30:26 - The prerequisite above is already installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-09-09 14:30:26 - Reading version of the following file...
    2014-09-09 14:30:26 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-09-09 14:30:26 - GetFileVersionInfoSize failed (-2147024894)
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - Version
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 10.51.2500.0
    2014-09-09 14:30:26 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Windows Server AppFabric
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - ProductVersion
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Windows Identity Foundation (KB974405)
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 -
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft Information Protection and Control Client
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 -
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft WCF Data Services 5.0
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - Version
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 5.0.51212.0
    2014-09-09 14:30:26 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft WCF Data Services 5.6
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - Version
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.6
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 5.6.61587.0
    2014-09-09 14:30:26 - The prerequisite above is already installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-09-09 14:30:26 - Reading the following DWORD value/name...
    2014-09-09 14:30:26 - IsInstalled
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-09-09 14:30:26 - Beginning download/installation
    2014-09-09 14:30:26 - Created thread for installer
    2014-09-09 14:30:26 - "C:\Windows\system32\dism.exe" /online /enable-feature /featurename:NetFX3 /All /norestart
    2014-09-09 14:30:27 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:28 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:29 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:30 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:31 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:32 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:33 - Install process returned (0)
    2014-09-09 14:30:33 - [In HRESULT format] (0)
    2014-09-09 14:30:33 - "C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe" -ExecutionPolicy Bypass "C:\Users\DADM_T~1\AppData\Local\Temp\PreFB24.tmp.PS1"
    2014-09-09 14:30:33 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:34 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:35 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:36 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:37 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:38 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:39 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:40 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:41 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:42 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:43 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:44 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:45 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:46 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:47 - Install process returned (0)
    2014-09-09 14:30:47 - [In HRESULT format] (0)
    2014-09-09 14:30:47 - "C:\Windows\system32\dism.exe" /online /enable-feature /all /featurename:IIS-ASPNET45 /norestart
    2014-09-09 14:30:47 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:48 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:49 - Install process returned (0)
    2014-09-09 14:30:49 - [In HRESULT format] (0)
    2014-09-09 14:30:49 - "C:\Windows\system32\iisreset.exe" /noforce
    2014-09-09 14:30:49 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:51 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:52 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:53 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:54 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:55 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:56 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:57 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:57 - Install process returned (0X426=1062)
    2014-09-09 14:30:57 - [In HRESULT format] (0X80070426=-2147023834)
    2014-09-09 14:30:57 - Last return code (0X426=1062)
    2014-09-09 14:30:57 - Reading the following DWORD value/name...
    2014-09-09 14:30:57 - Flags
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - PendingFileRenameOperations
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SYSTEM\CurrentControlSet\Control\Session Manager
    2014-09-09 14:30:57 - Reading the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    2014-09-09 14:30:57 - Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    2014-09-09 14:30:57 - Last return code (0X426=1062)
    2014-09-09 14:30:57 - Options for further diagnostics: 1. Look up the return code value 2. Download the prerequisite manually and verify size downloaded by the prerequisite installer. 3. Install the prerequisite manually from the given location without any command line options.
    2014-09-09 14:30:57 - Cannot retry
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Windows Management Framework 3.0
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - PowerShellVersion
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 4.0
    2014-09-09 14:30:57 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft .NET Framework 4.5
    2014-09-09 14:30:57 - Reading the following DWORD value/name...
    2014-09-09 14:30:57 - Install
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-09-09 14:30:57 - The value is (1)
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - Version
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 4.5.51641
    2014-09-09 14:30:57 - A post release .NET 4.5 is installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Windows Identity Foundation (KB974405)
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 -
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 6.1.7600.0
    2014-09-09 14:30:57 - The prerequisite above is already installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-09-09 14:30:57 - Reading version of the following file...
    2014-09-09 14:30:57 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-09-09 14:30:57 - GetFileVersionInfoSize failed (-2147024894)
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - Version
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 10.51.2500.0
    2014-09-09 14:30:57 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Windows Server AppFabric
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - ProductVersion
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Windows Identity Foundation (KB974405)
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 -
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft Information Protection and Control Client
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 -
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft WCF Data Services 5.0
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - Version
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 5.0.51212.0
    2014-09-09 14:30:57 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft WCF Data Services 5.6
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - Version
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.6
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 5.6.61587.0
    2014-09-09 14:30:57 - The prerequisite above is already installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-09-09 14:30:57 - Reading the following DWORD value/name...
    2014-09-09 14:30:57 - IsInstalled
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-09-09 14:32:19 - Opening log file
    2014-09-09 14:32:19 - Opened action for user
    2014-09-09 14:32:19 - C:\Users\DADM_T~1\AppData\Local\Temp\prerequisiteinstaller.2014.09.09-14.30.26.log

    Thank you guys for the quick answer! Muche appreciated
    I've tried all suggested solutions, but no luck :-(
    - tried http://support.microsoft.com/kb/2765260 > no help and by the way the hotfix provided is not applicable for 2012 R2.
    also tried "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regii -enable -i" and got this :
    Microsoft (R) ASP.NET RegIIS version 4.0.30319.33440Administration utility to install and uninstall ASP.NET on the local machine.Copyright (C) Microsoft Corporation.  All rights reserved.Start installing ASP.NET (4.0.30319.33440).This option is not supported on this version of the operating system.  Administrators should instead install/uninstall ASP.NET 4.5 with IIS8 using the "Turn Windows Features On/Off" dialog,  the Server Manager management tool, or the dism.exe command line tool.  For more details please see http://go.microsoft.com/fwlink/?LinkID=216771.Finished installing ASP.NET (4.0.30319.33440).
    http://social.technet.microsoft.com/wiki/contents/articles/14582.sharepoint-2013-install-prerequisites-offline-or-manually-on-windows-server-2012-a-comprehensive-guide.aspx
    > is not for 2012 R2.
    For the automated install script (http://gallery.technet.microsoft.com/office/DownloadInstall-SharePoint-e6df9eb8) Craig mentions that the script are not yet compatible
    "SharePoint 2013 SP1 and Windows Server 2012 R2 support coming soon
     I will be updating this script with support for SharePoint 2013 Service Pack 1 installations along with support for Windows Server 2012 R2 in the near future. Thank you to everyone for the interest in my scripts - it is much appreciated! "

  • Error while installing Visual Studio Express 2013 with Update 4 for Windows Desktop.

    When I try to install Visual Studio Express 2013 with Update 4 for Windows Desktop, I
    get the error :
    Microsoft Visual Studio Express 2013 for Windows Desktop.The form specified for the subject is not one supported or known by the specified trust provider.
    Here is what I get when I use the File Checksum Integrity Verifier (NOTE: I couldn't find the SHA Hash for the .iso I downloaded)
    // File Checksum Integrity Verifier version 2.05.
    8ab9b5ff10da1c33bb3f088331a7c8d8 vs2013.4_dskexp_enu.iso
    Here is some Extra Information:
    MY OS: Windows Technical Preview x86ANOTHER OS I TRIED INSTALLING VB ON: Windows 7 Ultimate x86
    DOWNLOADED ISO FROM: http://www.visualstudio.com/en-us/downloadsLINK: http://download.microsoft.com/download/9/6/4/96442E58-C65C-4122-A956-CCA83EECCD03/vs2013.4_dskexp_ENU.iso
    LOG FILE: http://m.uploadedit.com/b044/1421425243589.txtSHA HASH OF THE RECEIVED ISO: 8ab9b5ff10da1c33bb3f088331a7c8d8
    ====================================================NOTES:
    #I ran the setup as an administrator.
    #I do not know the SHA Hash for the ISO so please check if it matches the SHA Hash of the actual file.#Please don't recommend to use the Web Installer.#I tried both extracting the ISO and Mounting the ISO to run the Setup.
    Thanks. :D

    Solved.   The ISO is corrupt.
    The SHA 1 Hash of the ISO was 57CF28106EA096758AD6AB909F226A3468D95A49
    and the downloaded one returned 8ab9b5ff10da1c33bb3f088331a7c8d8.

Maybe you are looking for

  • My 4th generation iPod nano stopped responding.

    It was working fine ealier today, and now it won't respond. It's frozen on the main screen. I've reset it on iTunes, and on the iPod (menu button & center button).

  • Can I upgrade my solid state hard drive on an air?

    I have a 128 Gig Air. Can I swap out the solid state drive and increase storage to 256 Gigs?

  • ISupport - register a person as a user associated with his/her Person Party

    Hi, iSupport 11.5.10.2 I have a situation in my organisation where I would like to register an individual as an iSupport User associated with his / her Person Party Number. For example: John Doe has been set up in the system as a Person Party, and ha

  • Can't read UDP packets

    Hi everyone. I'm triying to read the UDP packets that a board with a CPU and ethernet module is sending me via ethernet connection. In the board I've just implemented a static IP+UDP packet that only needs to change the data in order to send a temper

  • RBE 3.0 and SolMan

    Hi, We have downloaded data from our ECC 5.0 system (with ZRBE_MAIN) to the RBE 3.0 database and created an ACH using the Configurator. Next step is to run an Extract job downloading data from the ECC system. Question : Is it possbile to move the dow