Web Service with IIS Web server feasible?

Hi all,
we have come up with the following architecture and would like to
know whether we have mis-interpret anything. We would also like
to know whether this architecture is feasbile or not.
     java client web page browser requesting for the WSDL
     application / of our web service.
          |
          |
     (Internet)
          |
          |
     Firewall 1 (only allow port 80 traffic)
          |
          |
     Microsoft IIS Web Server with iisproxy.dll installed.          
     (hostname : d3dpc1 port number : 80)
          |
          |
     Firewall 2 (only allow port 8100 traffic)
          |
          |
     WebLogic 7.1 Server with a web service deployed.      
     (hostname : d3dpc2 port number : 8100)
Assumed that we have constructed a certain web service through
the weblogic workshop and the web service page can be reached behind
the Firewall 2 via the following URL:
http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws
Next, we'd like to access the same web service outside the Firewall 1.
On our IS web server, we make use of the IIS plugin and wrote an
iisproxy.ini as follows:
WebLogicHost=d3dpc2
WebLogicPort=8100
ConnectTimeoutSecs=20
ConnectRetrySecs=2
WLForwardPath=/weblogic
PathTrim=/weblogic
we insalled the IIS plugin accoring to the document
"Using Web Server Plug-ins with WebLogic Server", starting
with page 3-3, running through steps 1-7, 9-10.
As a result, through the web page browser on the
client machine outside the Firewall 1, we can
obtain the WSDL through the following URL
http://d3dpc1:80/weblogic/treasuryWebService/FileOperation/FileUpload.jws?WSDL
At the bottom of the attached WSDL, we found that it appears as
<service name="FileUpload">
- <port name="FileUploadSoap" binding="s0:FileUploadSoap">
<soap:address location="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws"
/>
</port>
- <port name="FileUploadHttpGet" binding="s0:FileUploadHttpGet">
<http:address location="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws"
/>
</port>
- <port name="FileUploadHttpPost" binding="s0:FileUploadHttpPost">
<http:address location="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws"
/>
</port>
</service>
It presents to us the address is "http://d3dpc2:8100...."
which is behind two of our Firewalls, which is, in turn,
cannot be directly accessed by our client applications.
As a result, if we run a java client applications to our web service by
making use of
http://d3dpc1:80/weblogic/treasuryWebService/FileOperation/FileUpload.jws?WSDL,
we may obtain the WSDL but the subsequent method calls to our web service
may be blocked. Are we mis-interpreting anything? Is it feasible
for us to setup an IIS web service in between our client applications
to our web service like that?
We are pleased to provide further information, like our simple
web service code, if not sufficient. Please offer help!
Kenneth
[FileUpload.wsdl]

Hi Kenneth,
You need to modify the file weblogic-jws-config.xml in your workshop project
folder before you genereate the WSDL file.
The <hostname> and <http-port> entity below will point to your webserver
address, in this case it would be: <hostname>d3dpc1</hostname> and
<port>80</port>
Here is an example of the XML file:
<config>
<protocol>http</protocol>
<hostname>d3dpc1</hostname>
<http-port>80</http-port>
<https-port>443</https-port>
<jws>
</jws>
</config>
Thanks,
Ninou Sarwono
"Kenneth Yue" <[email protected]> wrote in message
news:[email protected]...
>
>
Hi all,
sorry for the messy format. I don't why the texts
are present like this. Please kindly press the reply
link and in the reply window, you will see a
better format of my text. Sorry for any inconvenience
caused.
thanks
cheers,
Kenneth
"Kenneth Yue" <[email protected]> wrote:
Hi all,
we have come up with the following architecture and would like to
know whether we have mis-interpret anything. We would also like
to know whether this architecture is feasbile or not.
java client web page browser requesting for the WSDL
application / of our web service.
|
|
(Internet)
|
|
Firewall 1 (only allow port 80 traffic)
|
|
Microsoft IIS Web Server with iisproxy.dll installed.
(hostname : d3dpc1 port number : 80)
|
|
Firewall 2 (only allow port 8100 traffic)
|
|
WebLogic 7.1 Server with a web service deployed.
(hostname : d3dpc2 port number : 8100)
Assumed that we have constructed a certain web service through
the weblogic workshop and the web service page can be reached behind
the Firewall 2 via the following URL:
http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws
Next, we'd like to access the same web service outside the Firewall 1.
On our IS web server, we make use of the IIS plugin and wrote an
iisproxy.ini as follows:
WebLogicHost=d3dpc2
WebLogicPort=8100
ConnectTimeoutSecs=20
ConnectRetrySecs=2
WLForwardPath=/weblogic
PathTrim=/weblogic
we insalled the IIS plugin accoring to the document
"Using Web Server Plug-ins with WebLogic Server", starting
with page 3-3, running through steps 1-7, 9-10.
As a result, through the web page browser on the
client machine outside the Firewall 1, we can
obtain the WSDL through the following URL
http://d3dpc1:80/weblogic/treasuryWebService/FileOperation/FileUpload.jws?W
SDL
>>
At the bottom of the attached WSDL, we found that it appears as
<service name="FileUpload">
- <port name="FileUploadSoap" binding="s0:FileUploadSoap">
<soap:addresslocation="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws
/>
</port>
- <port name="FileUploadHttpGet" binding="s0:FileUploadHttpGet">
<http:addresslocation="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws
/>
</port>
- <port name="FileUploadHttpPost" binding="s0:FileUploadHttpPost">
<http:addresslocation="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws
/>
</port>
</service>
It presents to us the address is "http://d3dpc2:8100...."
which is behind two of our Firewalls, which is, in turn,
cannot be directly accessed by our client applications.
As a result, if we run a java client applications to our web service
by
making use of
http://d3dpc1:80/weblogic/treasuryWebService/FileOperation/FileUpload.jws?W
SDL,
we may obtain the WSDL but the subsequent method calls to our web service
may be blocked. Are we mis-interpreting anything? Is it feasible
for us to setup an IIS web service in between our client applications
to our web service like that?
We are pleased to provide further information, like our simple
web service code, if not sufficient. Please offer help!
Kenneth

Similar Messages

  • Installing Forms&Report  Services with Oracle Application Server 10g Rel 3

    Can I Install Forms & Report Services with Oracle Application Server 10g Release 3 some how?
    I am thinking of installing Forms & Reports Services in separate home with Oracle Application Server 10g Rel 3.
    Does any body has any different idea so that they both can run more smoothly together.
    Thanks
    Raj
    www.oraclebrains.com

    They WILL NOT RUN TOGETHER. We have discussed this many times before. They must be in separate homes.
    Check the search function for this forum to find the previous discussions.

  • Possible to write non HTTP WEB services with an Application Server?

    Is it possible to write services with the backend of an application server in JavaEE 5? Like a server listening for mails? Where does one find information about that? Books only discuss web (html/http) services that you can build in an AS...

    Hi Dugu,
    Can you give the link to the specific article and the version of JDeveloper you are using to help you further?
    One thing to keep in mind is that the accessors must be public - using package access (no modifier) is not going to work.
    Hope this helps,
    Eric

  • Unable to open Presentation services with IIS 6.0

    Hi,
    I have installed OBIEE on a Windows 2003 server with IIS 6.0. When I try to open SAW.DLL with the following command: http://servername/analytics, I get this error
    Unable to contact server.
    Failed to find config file c:\OracleBIData\web\config\isapiconfig.xml using environment variable SADATADIR -- exiting!
    Error Codes: EV72PGLJ:IV6PEHWU:
    Unable to query filesystem statistics for c:\OracleBIData\web.
    Access is denied".
    The contents of the isapiconfig.xml file are below
    <?xml version="1.0" encoding="utf-8"?>
    <WebConfig>
    <ServerInstance>
    <ServerConnectInfo address="localhost" port="9710"/>
    </ServerInstance>
    </WebConfig>
    I can however run Presentation services with OC4J.
    I am not sure why this error occurs with IIS.
    Has anyone come across this error? I'd appreciate your help.
    Thanks
    rkingmdu

    right click - my computer - properties - advanced - enviornment variables - system variables.
    see if variable SADATADIR exists with value of drive:\OracleBIData and SAROOTDIR with drive:\OracleBI

  • Trouble with IIS-6 Server

    I'm in desparate need of some help. Up until now I've done
    "basic" web pages and uploaded html web pages to FTP sites with no
    problem. I am currently working on Catalog web site and am using
    ASP Javascript. I was told those were compatible with IIS servers.
    I uploaded the pages to a testing server and I am getting a HTTP
    404 error/Page Not Found in my browser (Safari).
    I am using ECart with Dreamweaver to create my shopping cart.
    Anyone have any suggestions. Am I using the wrong
    extension?

    Hi
    A 404 error means the page is not at the location that you
    have
    provided. You need to check exactly where your page is on the
    server, if
    indeed it is on the server.
    Cheers jojo
    Adobe Community Expert for Dreamweaver 8
    http://www.webade.co.uk
    http://www.ukcsstraining.co.uk/
    Extending Knowledge, Daily.
    http://www.communityMX.com/
    Free 10 day trial
    http://www.communitymx.com/joincmx.cfm

  • Archival services with Flash Media Server

    I work for a broadcasting company and we do live telecast of
    various events, mostly related to professional sports. We currently
    have a Windows Media Encoder 9 setup with Windows Media Server,
    etc. I have a custom written application that archives all of our
    broadcasts. This was accomplished with the M$ media SDKs. Archival
    means we record each one of our daily live feeds for review and
    archival purposes (game footage for coaches, stuff like that).
    We are currently looking at h.264 capable setups, or
    something equivalent. We have been playing around with Adobe's
    encoders, media server, and all that. We are impressed with the
    quality. Switching to this right now has some logistical
    complications, mostly related to an operational requirement based
    on our current business model. Simply switching to h.264 overnight
    isn't going to be possible; we will need to prepare.
    So, with that in mind, I have a question relative to SDKs and
    Flash. My current application (the archiver) can archive up to 120
    events simultaneously on a single, reasonably fast machine on a
    fast network. I have to be able to record at least 60 on a given
    night, the 120 was discovered during testing and its faltering is
    relative to network collisions and getting ethernet up to 40%
    utilization more than not having enough CPU to process the streams.
    I would need something similar for Adobe. I have the spec (at least
    the public domain version) for the tunnelling protocol so reverse
    engineering this isn't going to be a big deal. What I'm mosly
    interested in is an SDK with functionality that allows me to record
    a lot of streams in software for archival purposes. This SDK has to
    be smart enough to deal with Disk I/O VERY intelligently because
    clearly anything more than 8-12 realtime stream records to a disk
    in a linear fashion is going to overload the hard drive.
    Before anyone starts spouting off about DRM and piracy, we
    are recording the broadcasts we own. This is for archival and this
    archival process has to be automated (the app isn't JUST a
    recorder, there's a whole process shielded from the operators of
    this thing for defining stream locations, where to save the files,
    and all that). I realize all this code that automates this process
    for our company would still need to be written. What I'm interested
    in specifically are readers and writers for flash streams,
    especially relative to network reading and disk writing
    (intelligent disk writing; I've written custom implementations of
    MMS, HTTP, etc that mash the hard drive).
    In a nutshell, is there an equivalent SDK for Adobe's
    technology as the Windows Media Format SDK is for WMV files? This
    is currently the only hurdle in implementing Adobe's h264
    technology in lieu of our current setup (which is 100's of encoders
    and locations at the current time, all over North America.
    Thank you for your time.

    Take a look at On2's Flix SDK for Live. That uses the VP6 and
    any day now, the h264 codec for FLV.

  • Web Services with Sun App Server

    We are load testing a simple web service running in SJSAS 8.0 Standard. With 1 or 2 users concurrent it seems OK, but once we move up to 5 concurrent users calling the WS, the domain in SJSAS crashes.
    Does anyone have experience or information regarding the app server and load with web services? Are there some config options that we can tweak? Are there any numbers out there about how many simultaneous connections the server can handle?
    A final note, things seem fine if we are just serving a simple web page from the server, its only when we try to call a WS that we run into these performance issues.
    Thanks.

    Are you connecting to any external resource using JNDI by any chance? If you're using Unix, check the number of file descriptors being opened on the Sun App server. "new dirContext(env)" creates OS file descriptors each time it's invoked (calling the web service for example).
    use
    $ps -ax
    get the process number of sjas and try issuing a:
    lsof -p <sjas_process_number> |wc -l
    and keep invoking the web service. If this number keeps increasing then you've an "fd" leak (perhaps not closing the dirContext). Linux for example has a default max file limit of 1024 under "root" user and when depleted, sjas will hang.
    Could this be the problem?
    Cheers
    Steve

  • Web services with Jdeveloper using weblogic as server

    Hi,
    I try to test creating PL/SQL web services by using a connection hosted by weblogic server instead of OC4J. The problem is what I try to publish a package of the database in the second stage when it asks for the connection to use, in the list I don't found the connection I create to weblogic . It presents as choice only connections used the server OC4J.
    I do not Know if it is possible to publish a package as web service by using weblogic server connection, and how to do it.
    can anyone help me please .
    Nawal

    Web services can only be published to BEA if you install Apache SOAP on BEA and use the Apache SOAP option of JDeveloper. The J2EE Web Services implementation framework is specific to Oracle9iAS.
    The PL/SQL Web Services server implementation is based on the J2EE Web Services option and as a result is not really portable to BEA.
    To publish a PL/SQL Web service on BEA with JDeveloper you would have to write the Java wrapper code to invoke the stored procedure using standard JDBC and then publish that Java class as a Web service using Apache SOAP. Then if you had Apache SOAP installed on BEA you would be set.
    Portability of Web services implementations is a big feature coming with JAX-RPC - currently what most vendors have is interoperability between implementations because of things like SOAPBuilders and WS-I. When JAX-RPC becomes part of J2EE 1.4 roughly in June and vendors start putting out implementations on it you should get closer to portability.
    In the meantime, the easiest way to get portability is to use the same SOAP server on both servers - Apache SOAP is a good example.
    Hope this helps.
    Mike

  • Web server refuses connections - Service exited with abnormal code: 1

    I have upgraded to yosemite 10.10.1, my web server refuses to allow connections and I get - Service exited with abnormal code: 1, in the log file. I have reloaded server software and I have rebooted and power restarted my Mac Mini many times

    Fixed this stupid iTunes issue with the following procedure. YMMV
    - Open the Activity Monitor (LaunchPad, Other, Activity Monitor)
    - Force Quit the iTunes Helper app (I had multiply ones running, so quit them all)
    - Install the iTunes .pkg from the Apple website.
    - Force Quit the iTunes Helper again after install
    - Shut Down the MacBook
    - Start again (watch for the progress bar, that’s the fix for permissions working)
    - Start iTunes
    You mileage may vary, but it worked for me.

  • Can Acrobat 9 pro be installed to XP with web server(IIS) without any license issue?

    It seems not to permit to install into window server, but how about the window XP had web server installed?

    Thanks for your reply. As I mentioned in my post, when I went to Control Panel to uninstall Acrobat 11.0, it wasn't listed among currently installed apps. However, after going back and looking through the Installed On dates in Control Panel, I realized that for some reason, it's called Adobe PFD Creation Add-on XI, rather than Acrobat 11.0. Interestingly, the program folder name in Windows Explorer still uses Acrobat 11.0.
    Fortunately for me, I always have disc versions of my software. So I was able to re-install Acrobat 9.0 once I got rid of Adobe PDF Creation Add-on XI. I really wish that Adobe made clearer what extras they are installing with these trial versions :-(
    Thanks again.

  • SharePoint 2013 preinstaller error - The tool was unable to install Application Server Role, Web Server (IIS) Role.

    I have been banging my head over and over searching for the fix and nothing has worked. Google used to be my friend. I am having doubts.
    Windows 2012 Server with IIS installed during the server creation using VMware Vshpere. Here is the log from the SP prep tool.
    2014-06-23 10:13:12 - Processor architecture is (9)
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - Common Startup
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    2014-06-23 10:13:12 - Trying to remove the startup task if there is any.
    2014-06-23 10:13:12 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2014-06-23 10:13:12 - Error: Startup task doesn't exist. This is not a continuation after a restart.
    2014-06-23 10:13:12 - Locating the following command line arguments file:
    2014-06-23 10:13:12 - C:\sp2013\PrerequisiteInstaller.Arguments.txt
    2014-06-23 10:13:12 - Error: This file does not exist
    2014-06-23 10:13:12 - Details of the current operating system:
    2014-06-23 10:13:12 - Major version number of the operating system:  (6)
    2014-06-23 10:13:12 - Minor version number of the operating system:  (2)
    2014-06-23 10:13:12 - Build number of the operating system:  (0X23F0=9200)
    2014-06-23 10:13:12 - Major version number of the latest Service Pack:  (0)
    2014-06-23 10:13:12 - Minor version number of the latest Service Pack:  (0)
    2014-06-23 10:13:12 - Platform ID of the operating system:  (2)
    2014-06-23 10:13:12 - Product suites available on the operating system:  (0X110=272)
    2014-06-23 10:13:12 - Product type of the operating system: VER_NT_SERVER
    2014-06-23 10:13:12 - Product type:  (7)
    2014-06-23 10:13:12 - OS type:  (0)
    2014-06-23 10:13:12 - Configuring the application's property sheet...
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Windows Management Framework 3.0
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - PowerShellVersion
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 4.0
    2014-06-23 10:13:12 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft .NET Framework 4.5
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - Install
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - Version
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 4.5.51641
    2014-06-23 10:13:12 - A post release .NET 4.5 is installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Windows Identity Foundation (KB974405)
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 -
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 6.1.7600.0
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-06-23 10:13:12 - Reading version of the following file...
    2014-06-23 10:13:12 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-06-23 10:13:12 - The version is...
    2014-06-23 10:13:12 - 1.0.3010.0
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - Version
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 10.51.2500.0
    2014-06-23 10:13:12 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Windows Server AppFabric
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - ProductVersion
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 1.1.2106.32
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - ProductVersion
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 1.1.2106.32
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - ProductVersion
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 1.1.2106.32
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - DCC
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - CacheClient is Installed.
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - DCS
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - CacheService is Installed.
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - DCA
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - CacheAdmin is Installed.
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Windows Identity Foundation (KB974405)
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 -
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 2.0.1230.0
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft Information Protection and Control Client
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 -
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 1.0.959.0
    2014-06-23 10:13:12 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft WCF Data Services 5.0
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - Version
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 5.0.51212.0
    2014-06-23 10:13:12 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - IsInstalled
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:19 - Beginning download/installation
    2014-06-23 10:13:19 - Created thread for installer
    2014-06-23 10:13:20 - "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\ADMINI~1\AppData\Local\Temp\2\PreA98B.tmp.XML"
    2014-06-23 10:13:20 - Error: Unable to install (2)
    2014-06-23 10:13:20 - Error: [In HRESULT format] (-2147024894)
    2014-06-23 10:13:20 - Last return code (2)
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - Flags
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - PendingFileRenameOperations
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SYSTEM\CurrentControlSet\Control\Session Manager
    2014-06-23 10:13:20 - Reading the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    2014-06-23 10:13:20 - Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    2014-06-23 10:13:20 - Last return code (2)
    2014-06-23 10:13:20 - 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-06-23 10:13:20 - Cannot retry
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Windows Management Framework 3.0
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - PowerShellVersion
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 4.0
    2014-06-23 10:13:20 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft .NET Framework 4.5
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - Install
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - Version
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 4.5.51641
    2014-06-23 10:13:20 - A post release .NET 4.5 is installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Windows Identity Foundation (KB974405)
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 -
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 6.1.7600.0
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-06-23 10:13:20 - Reading version of the following file...
    2014-06-23 10:13:20 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-06-23 10:13:20 - The version is...
    2014-06-23 10:13:20 - 1.0.3010.0
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - Version
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 10.51.2500.0
    2014-06-23 10:13:20 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Windows Server AppFabric
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - ProductVersion
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 1.1.2106.32
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - ProductVersion
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 1.1.2106.32
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - ProductVersion
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 1.1.2106.32
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - DCC
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - CacheClient is Installed.
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - DCS
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - CacheService is Installed.
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - DCA
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - CacheAdmin is Installed.
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Windows Identity Foundation (KB974405)
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 -
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 2.0.1230.0
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft Information Protection and Control Client
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 -
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 1.0.959.0
    2014-06-23 10:13:20 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft WCF Data Services 5.0
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - Version
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 5.0.51212.0
    2014-06-23 10:13:20 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - IsInstalled
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:16:23 - Opening log file
    2014-06-23 10:16:23 - Opened action for user
    2014-06-23 10:16:23 - C:\Users\ADMINI~1\AppData\Local\Temp\2\prerequisiteinstaller.2014.06.23-10.13.12.log

    It looks like you may have extracted the files to C:\sp2013. Can you try installing from a mounted ISO instead? Can you also validate that this is Server 2012 and not 2012 R2?
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Prerequisiteinstaller.exe error - unable to install Application Server Role, Web Server (IIS) Role

    Windows Server 2012 R2 running on Hyper-V VM.  File services, App server & IIS roles installed
    SQL Server 2012 installed
    Tried:
    kb 2765260 method 1 which is kb 2771431 which ends with "not applicable to computer"
    kb 2765260 method 2 with no effect (this was power shell commands for PC's connected to the internet)
    One post suggested "aspnet_regii - enable -i" but my OS doesn't have aspnet_regii on it (not sure what that implies)
    One post suggested ServerManagerCmd.exe needed to be installed which sounds true as shown below (but where do I find this exe?)
    There are some errors in the log file,  I only included the portions where the errors are listed.  The initial lines are at the top of the log file, then I skipped to the section where the other errors were.  I can include the whole log if
    it becomes necessary.
    9:47:11 Processor architecture is (9)
    9:47:11 Reading the following string value/name...
    9:47:11 Common Startup
    9:47:11 from the following registry location...
    9:47:11 SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    9:47:11 The value is...
    9:47:11 C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    9:47:11 Trying to remove the startup task if there is any.
    9:47:11 C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    9:47:11 Error: Startup task doesn't exist. This is not a continuation after a restart.
    9:47:11 Locating the following command line arguments file:
    9:47:11 E:\PrerequisiteInstaller.Arguments.txt
    9:47:11 Error: This file does not exist
    9:47:11 Details of the current operating system:
    9:47:11 Check whether the following prerequisite is installed:
    9:47:11 Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    9:47:11 Reading the following DWORD value/name...
    9:47:11 IsInstalled
    9:47:11 from the following registry location...
    9:47:11 SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    9:47:17 Beginning download/installation
    9:47:17 Created thread for installer
    9:47:17 "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\ADMINI~1\AppData\Local\Temp\1\PreE0DB.tmp.XML"
    9:47:17 Error: Unable to install (2)
    9:47:17 Error: [In HRESULT format] (-2147024894)
    9:47:17 Last return code (2)
    9:47:17 Reading the following DWORD value/name...
    9:47:17 Flags
    9:47:17 from the following registry location...
    9:47:17 SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    9:47:17 Reading the following string value/name...
    9:47:17 PendingFileRenameOperations
    9:47:17 from the following registry location...
    9:47:17 SYSTEM\CurrentControlSet\Control\Session Manager
    9:47:17 Reading the following registry location...
    9:47:17 SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    9:47:17 Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    9:47:17 Last return code (2)
    9:47:17 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.
    9:47:17 Cannot retry
    I'm presuming the first 2 errors are OK and just indicate optional startup modes for prerequisiteinstaller.exe
    The 2nd set of errors seems more serious.  I don't see ServerManagerCmd.exe on my PC that's listed in the error
    I don't understand the last error which I'm supposing triggered the listed error even though there are other errors in the log.
    Many of the existing posts don't match the configuration I'm using, and the ones that do match didn't seem to provide a usable answer.  Any help is appreciated.  Do these problems exist using Sever 2012 Standard?  I will try that, but would
    like to resolve the issue here with R2.
    Thanks.
    Best Regards,
    Alan

    ServerManagerCMD.exe is a deprecated utility and (as far as I know) is only found on Server 2008 versions, so I'm surprised it's needed for the preinstaller.  Are you trying to install SharePoint 2010?
    Running this page through Google Translate should give you an clearer idea on getting this installed.
    http://blog.hand-net.com/sharepoint/2010-06-10-error-lors-de-linstallation-des-office-web-apps-2010-sur-windows-7.htm
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • How to set up a FTP and web server and integrate with DMM 5.2

    Hi All ...
    I need to set up a external server only for content publishing to reduce the overhead of the DMM server .
    can anyone guide me on how to set up the external server and intergrate it with the DMM 5.2
    Thanks

    semuthu,
    Notes from the Release Notes:
    Compatibility Limitations with Microsoft Internet Information Server (IIS)
    DMPs that use firmware release 5.2 are compatible with only one version of Microsoft Internet Information Server.
    That supported version is IIS 6.0 for Windows 2003 Enterprise. If you do not have the supported IIS version but
    want your DMPs to retrieve assets from a webserver, we recommend that you use Apache instead of IIS.
    I would suggest using Apache instead of IIS for the webserver service. IIS can be used as FTP if needed.
    There are plenty of Documents on the Web about setting up Apache and FTP for servers.
    Using Apache with Microsoft Windows
    http://httpd.apache.org/docs/2.0/platform/windows.html
    Quick HOWTO : Ch20 : The Apache Web Server
    http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch20_:_The_Apache_Web_Server
    Once the Webserver is setup and operational. You simply store your media content on the Webserver
    and then have your DMS assets in the media library use an external URL address for its location.
    If you want to use external server for other features in the DMM, you can can see how to configure
    here:
    http://www.cisco.com/en/US/partner/docs/video/digital_media_systems/5_x/5_1/dmm/user/guide/dsm+etv.html#wp1073210
    Goto the section right below ACNS & WAAS..
    If this answers your question, Please take time to mark this
    discussion answered & rate the response.
    Thank You!
    T.

  • Application Server Role, Web Server (IIS) Role: configuration error - There is a pending restart of the computer

    when I run prerequisiteinstaller.exe in sharepoint 2013 on windows server 2008 R2 with sp1, got this error, below is the log information:
    2014-02-28 12:01:02 - Processor architecture is (9)
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - Common Startup
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    2014-02-28 12:01:02 - The value is... 
    2014-02-28 12:01:02 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    2014-02-28 12:01:02 - Trying to remove the startup task if there is any.
    2014-02-28 12:01:02 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2014-02-28 12:01:02 - Successfully deleted the startup task
    2014-02-28 12:01:02 - Analyzing the following command line argument:
    2014-02-28 12:01:02 - /continue
    2014-02-28 12:01:02 - Continuing after restart
    2014-02-28 12:01:02 - Details of the current operating system: 
    2014-02-28 12:01:02 - Major version number of the operating system:  (6)
    2014-02-28 12:01:02 - Minor version number of the operating system:  (1)
    2014-02-28 12:01:02 - Build number of the operating system:  (0X1DB1=7601)
    2014-02-28 12:01:02 - Major version number of the latest Service Pack:  (1)
    2014-02-28 12:01:02 - Minor version number of the latest Service Pack:  (0)
    2014-02-28 12:01:02 - Platform ID of the operating system:  (2)
    2014-02-28 12:01:02 - Product suites available on the operating system:  (0X112=274)
    2014-02-28 12:01:02 - Product type of the operating system: VER_NT_SERVER
    2014-02-28 12:01:02 - Product type:  (10)
    2014-02-28 12:01:02 - OS type:  (0)
    2014-02-28 12:01:02 - Configuring the application's property sheet...
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Windows Management Framework 3.0
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - PowerShellVersion
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-02-28 12:01:02 - The value is... 
    2014-02-28 12:01:02 - 3.0
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - CTPVersion
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-02-28 12:01:02 - Could not find or unable to read CTPVersion key
    2014-02-28 12:01:02 - The prerequisite above is already installed
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Microsoft .NET Framework 4.5
    2014-02-28 12:01:02 - Reading the following DWORD value/name...
    2014-02-28 12:01:02 - Install
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-02-28 12:01:02 - The value is (1)
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - Version
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-02-28 12:01:02 - The value is... 
    2014-02-28 12:01:02 - 4.5.50938
    2014-02-28 12:01:02 - A post release .NET 4.5 is installed
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Windows Identity Foundation (KB974405)
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - 
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-02-28 12:01:02 - Reading version of the following file...
    2014-02-28 12:01:02 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-02-28 12:01:02 - GetFileVersionInfoSize failed (-2147024894)
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - Version
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Windows Server AppFabric
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - ProductVersion
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Windows Identity Foundation (KB974405)
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - 
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Microsoft Information Protection and Control Client
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - 
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Microsoft WCF Data Services 5.0
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - Version
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-02-28 12:01:02 - Reading the following DWORD value/name...
    2014-02-28 12:01:02 - IsInstalled
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-02-28 12:01:02 - Beginning download/installation
    2014-02-28 12:01:02 - Created thread for installer
    2014-02-28 12:01:02 - "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\svc_SPFarm_SH\AppData\Local\Temp\2\PreA588.tmp.XML"
    2014-02-28 12:01:03 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:04 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:05 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:06 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:07 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:08 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:09 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:10 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:11 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:12 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:13 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:14 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:15 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:16 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:17 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:18 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:19 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:20 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:21 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:22 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:23 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:24 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:25 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:26 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:27 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:28 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:29 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:30 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:31 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:32 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:33 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:34 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:35 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:36 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:37 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:38 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:39 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:40 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:41 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:42 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:43 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:44 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:45 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:46 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:47 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:48 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:49 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:50 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:51 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:52 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:53 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:54 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:55 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:56 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:57 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:58 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:59 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:00 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:01 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:02 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:03 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:04 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:05 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:06 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:07 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:08 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:09 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:10 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:11 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:12 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:13 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:14 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:15 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:16 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:17 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:18 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:19 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:20 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:21 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:22 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:23 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:24 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:25 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:25 - Install process returned (0X3E9=1001)
    2014-02-28 12:02:25 - [In HRESULT format] (0X800703E9=-2147023895)
    2014-02-28 12:02:25 - Last return code (0X3E9=1001)
    2014-02-28 12:02:25 - Reading the following DWORD value/name...
    2014-02-28 12:02:25 - Flags
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - PendingFileRenameOperations
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SYSTEM\CurrentControlSet\Control\Session Manager
    2014-02-28 12:02:25 - Reading the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    2014-02-28 12:02:25 - Error: A pending restart blocks the installation
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - Common Startup
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    2014-02-28 12:02:25 - The value is... 
    2014-02-28 12:02:25 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    2014-02-28 12:02:25 - Trying to create the startup task.
    2014-02-28 12:02:25 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Windows Management Framework 3.0
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - PowerShellVersion
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-02-28 12:02:25 - The value is... 
    2014-02-28 12:02:25 - 3.0
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - CTPVersion
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-02-28 12:02:25 - Could not find or unable to read CTPVersion key
    2014-02-28 12:02:25 - The prerequisite above is already installed
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Microsoft .NET Framework 4.5
    2014-02-28 12:02:25 - Reading the following DWORD value/name...
    2014-02-28 12:02:25 - Install
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-02-28 12:02:25 - The value is (1)
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - Version
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-02-28 12:02:25 - The value is... 
    2014-02-28 12:02:25 - 4.5.50938
    2014-02-28 12:02:25 - A post release .NET 4.5 is installed
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Windows Identity Foundation (KB974405)
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - 
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-02-28 12:02:25 - Reading version of the following file...
    2014-02-28 12:02:25 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-02-28 12:02:25 - GetFileVersionInfoSize failed (-2147024894)
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - Version
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Windows Server AppFabric
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - ProductVersion
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Windows Identity Foundation (KB974405)
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - 
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Microsoft Information Protection and Control Client
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - 
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Microsoft WCF Data Services 5.0
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - Version
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-02-28 12:02:25 - Reading the following DWORD value/name...
    2014-02-28 12:02:25 - IsInstalled
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-02-28 12:14:24 - Opening log file
    2014-02-28 12:14:24 - Opened action for user
    2014-02-28 12:14:24 - C:\Users\svc_SPFarm_SH\AppData\Local\Temp\2\prerequisiteinstaller.2014.02.28-12.01.02.log
    any ideas? thanks.
    Awen

    Hi Awen,
    Please open Server Manager > Roles > see if Web Server (IIS) has been installed.
    If installed, I’d recommend you refer to Abdel’s method in the link below. He encountered the same issue when install SharePoint 2013 on Windows Server 2008 R2 and fixed the problem. For your reference:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/9e620ab9-e594-4ff4-92a3-6c0ab311d586/preinstaller-failing-at-install-application-server-role-web-server-iis-role?forum=sharepointadmin 
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • Preinstaller failing at install Application Server Role, Web Server (IIS) Role

    Hi, 
     I am trying to install SharePoint 2013 on Windows 2008 R2. I have database MS SQL Server 2012 on the same machine itself. My SharePoint Preinstaller fails at installing Application server and Web server roles.. Even though the roles get created, they
    don't complete because ASP.Net activation fails. Here is my log:
    2013-04-08 16:12:08 - Processor architecture is (9)
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 - Common Startup
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    2013-04-08 16:12:08 - The value is...
    2013-04-08 16:12:08 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    2013-04-08 16:12:08 - Trying to remove the startup task if there is any.
    2013-04-08 16:12:08 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2013-04-08 16:12:08 - Error: Startup task doesn't exist. This is not a continuation after a restart.
    2013-04-08 16:12:08 - Locating the following command line arguments file:
    2013-04-08 16:12:08 - E:\PrerequisiteInstaller.Arguments.txt
    2013-04-08 16:12:08 - Error: This file does not exist
    2013-04-08 16:12:08 - Details of the current operating system:
    2013-04-08 16:12:08 - Major version number of the operating system: (6)
    2013-04-08 16:12:08 - Minor version number of the operating system: (1)
    2013-04-08 16:12:08 - Build number of the operating system: (0X1DB1=7601)
    2013-04-08 16:12:08 - Major version number of the latest Service Pack: (1)
    2013-04-08 16:12:08 - Minor version number of the latest Service Pack: (0)
    2013-04-08 16:12:08 - Platform ID of the operating system: (2)
    2013-04-08 16:12:08 - Product suites available on the operating system: (0X112=274)
    2013-04-08 16:12:08 - Product type of the operating system: VER_NT_SERVER
    2013-04-08 16:12:08 - Product type: (10)
    2013-04-08 16:12:08 - OS type: (0)
    2013-04-08 16:12:08 - Configuring the application's property sheet...
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Windows Management Framework 3.0
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 - PowerShellVersion
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2013-04-08 16:12:08 - The value is...
    2013-04-08 16:12:08 - 3.0
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 - CTPVersion
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2013-04-08 16:12:08 - Could not find or unable to read CTPVersion key
    2013-04-08 16:12:08 - The prerequisite above is already installed
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Microsoft .NET Framework 4.5
    2013-04-08 16:12:08 - Reading the following DWORD value/name...
    2013-04-08 16:12:08 - Install
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Windows Identity Foundation (KB974405)
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 -
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2013-04-08 16:12:08 - The value is...
    2013-04-08 16:12:08 - 6.1.7600.0
    2013-04-08 16:12:08 - The prerequisite above is already installed
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2013-04-08 16:12:08 - Reading version of the following file...
    2013-04-08 16:12:08 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2013-04-08 16:12:08 - The version is...
    2013-04-08 16:12:08 - 1.0.3010.0
    2013-04-08 16:12:08 - The prerequisite above is already installed
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 - Version
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2013-04-08 16:12:08 - The value is...
    2013-04-08 16:12:08 - 10.51.2500.0
    2013-04-08 16:12:08 - A higher version of the prerequisite above is already installed
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Windows Server AppFabric
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 - ProductVersion
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\AppFabric\V1.0
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Windows Identity Foundation (KB974405)
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 -
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Microsoft Information Protection and Control Client
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 -
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2013-04-08 16:12:08 - The value is...
    2013-04-08 16:12:08 - 1.0.621.117
    2013-04-08 16:12:08 - A higher version of the prerequisite above is already installed
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Microsoft WCF Data Services 5.0
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 - Version
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2013-04-08 16:12:08 - Reading the following DWORD value/name...
    2013-04-08 16:12:08 - IsInstalled
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2013-04-08 16:12:08 - The value is (1)
    2013-04-08 16:12:08 - The prerequisite above is already installed
    2013-04-08 16:12:14 - Beginning download/installation
    2013-04-08 16:12:14 - Created thread for installer
    2013-04-08 16:12:14 - Beginning download of Microsoft .NET Framework 4.5
    2013-04-08 16:12:14 - http://go.microsoft.com/fwlink/?LinkID=250950
    2013-04-08 16:12:15 - Size of download of "Microsoft .NET Framework 4.5" in bytes is "1005568"
    2013-04-08 16:12:15 - Download of "Microsoft .NET Framework 4.5" completed successfully
    2013-04-08 16:12:15 - Installing Microsoft .NET Framework 4.5
    2013-04-08 16:12:15 - "C:\Users\SPAdmin\AppData\Local\Temp\NETB7E9.tmp.exe" /q /norestart
    2013-04-08 16:15:27 - Install process returned (0)
    2013-04-08 16:15:27 - [In HRESULT format] (0)
    2013-04-08 16:15:27 - "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\SPAdmin\AppData\Local\Temp\PreAAB0.tmp.XML"
    2013-04-08 16:15:28 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:29 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:30 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:31 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:32 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:33 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:34 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:35 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:36 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:37 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:38 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:39 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:40 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:41 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:42 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:43 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:44 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:45 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:46 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:47 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:48 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:49 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:50 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:51 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:52 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:53 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:54 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:55 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:56 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:57 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:58 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:59 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:00 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:01 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:02 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:03 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:04 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:05 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:06 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:07 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:08 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:09 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:10 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:11 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:12 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:14 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:15 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:16 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:17 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:18 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:19 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:20 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:21 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:22 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:23 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:24 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:25 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:26 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:27 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:28 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:29 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:30 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:31 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:32 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:33 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:34 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:35 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:36 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:37 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:38 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:39 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:40 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:41 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:42 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:43 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:44 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:45 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:46 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:47 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:48 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:49 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:50 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:50 - Install process returned (0)
    2013-04-08 16:16:50 - [In HRESULT format] (0)
    2013-04-08 16:16:50 - "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe" -i
    2013-04-08 16:16:51 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:52 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:53 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:54 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:55 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:56 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:57 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:57 - Install process returned (0)
    2013-04-08 16:16:57 - [In HRESULT format] (0)
    2013-04-08 16:16:57 - "C:\Windows\system32\cscript.exe" "C:\Windows\system32\iisext.vbs" /enext "ASP.NET v4.0.30319"
    2013-04-08 16:16:58 - Install process returned (-2146646015)
    2013-04-08 16:16:58 - [In HRESULT format] (-2146646015)
    2013-04-08 16:16:58 - Error when enabling ASP.NET v4.0.30319
    2013-04-08 16:16:58 - Last return code (-2146646015)
    2013-04-08 16:16:58 - Reading the following DWORD value/name...
    2013-04-08 16:16:58 - Flags
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 - PendingFileRenameOperations
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SYSTEM\CurrentControlSet\Control\Session Manager
    2013-04-08 16:16:58 - Reading the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    2013-04-08 16:16:58 - Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    2013-04-08 16:16:58 - Last return code (-2146646015)
    2013-04-08 16:16:58 - 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.
    2013-04-08 16:16:58 - Cannot retry
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Windows Management Framework 3.0
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 - PowerShellVersion
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2013-04-08 16:16:58 - The value is...
    2013-04-08 16:16:58 - 3.0
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 - CTPVersion
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2013-04-08 16:16:58 - Could not find or unable to read CTPVersion key
    2013-04-08 16:16:58 - The prerequisite above is already installed
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Microsoft .NET Framework 4.5
    2013-04-08 16:16:58 - Reading the following DWORD value/name...
    2013-04-08 16:16:58 - Install
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2013-04-08 16:16:58 - The value is (1)
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 - Version
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2013-04-08 16:16:58 - The value is...
    2013-04-08 16:16:58 - 4.5.50709
    2013-04-08 16:16:58 - The release version of .NET 4.5 is installed.
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Windows Identity Foundation (KB974405)
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 -
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2013-04-08 16:16:58 - The value is...
    2013-04-08 16:16:58 - 6.1.7600.0
    2013-04-08 16:16:58 - The prerequisite above is already installed
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2013-04-08 16:16:58 - Reading version of the following file...
    2013-04-08 16:16:58 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2013-04-08 16:16:58 - The version is...
    2013-04-08 16:16:58 - 1.0.3010.0
    2013-04-08 16:16:58 - The prerequisite above is already installed
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 - Version
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2013-04-08 16:16:58 - The value is...
    2013-04-08 16:16:58 - 10.51.2500.0
    2013-04-08 16:16:58 - A higher version of the prerequisite above is already installed
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Windows Server AppFabric
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 - ProductVersion
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\AppFabric\V1.0
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Windows Identity Foundation (KB974405)
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 -
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Microsoft Information Protection and Control Client
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 -
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2013-04-08 16:16:58 - The value is...
    2013-04-08 16:16:58 - 1.0.621.117
    2013-04-08 16:16:58 - A higher version of the prerequisite above is already installed
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Microsoft WCF Data Services 5.0
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 - Version
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2013-04-08 16:16:58 - Reading the following DWORD value/name...
    2013-04-08 16:16:58 - IsInstalled
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2013-04-08 16:16:58 - The value is (1)
    2013-04-08 16:16:58 - The prerequisite above is already installed
    2013-04-08 16:17:07 - Opening log file
    2013-04-08 16:17:07 - Opened action for user
    2013-04-08 16:17:07 - C:\Users\SPAdmin\AppData\Local\Temp\prerequisiteinstaller.2013.04.08-16.12.08.log
    2013-04-08 16:17:56 - Return code (-2146646015)
    2013-04-08 16:17:56 - It is recommended that you keep your Windows operating system up to date on http://windowsupdate.microsoft.com
    I tried solutions for all previous posts that I could find. Can anybody help me out?
    Thanks 
    Abdel

    Please help!!!  I am going on 9 days now trying to install SharePoint 2013 onto a VM.  I have tried Hyper-V and VMWare and am getting the same result with both.
    Running Windows 8.1  with 16 GBs of RAM.
    The pre-req installer will not install anything!!  And I get this error:
    The tool was unable to install Application
    Server Role, Web Server (IIS) Role
    So I installed the Web Server IIS Role and restart...   still no luck
    Then I ran this command: 
    C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -i -enable
    And get this message: "This option is not supported on this version of the operating system. Admins should instead install/uninstall ASP.NET 4.5 with IIS8 using the "Turn Windows Features On/Off dialog....
    9 days of cussing and pulling my hair out...  please someone help..  I just want to run the Pre-Req installer and install SharePoint on a VM Machine. 
    Any help would be appreciated!!  Thanks in advance!
    I just want to confirm that I'm facing exactly the same problem.
    Currently, Microsoft SharePoint Server 2013 is not supported for installation on computers running the Windows Server 2012 R2 operating
    system. 
    http://support.microsoft.com/kb/2891274/

Maybe you are looking for