SharePoint PowerShell script to open Excel.Application on Windows server 2008 R2

Hi
I am building a PowerShell script to open an Excel file store on SharePoint document library.  Sound simple enough but I just couldn't get over an error and hopefully someone can help give an answer here.
I have found many sample codes to use.  All of the sample codes show that a new object must be created for Excel application
like ($Excel = New-Object -comobject Excel.Application) before that excel file can be read.
When I run this comand on a SharePoint server (Windows 2008 R2) either inside the script or by itself I keep getting the following error:
 New-Object : Cannot load COM type Excel.Application.
+ $excel = New-Object <<<<  -Com Excel.Application
    + CategoryInfo          : InvalidType: (:) [New-Object], PSArgumentException
For the test,  I ran this comand on a Windows 7 with MS Office applications installed,  then it ran fine.
Is that because I don't have Office application (Excel) installed on the server to run this or some services need to be turned on?
From the sample codes, look like I should be able to run it on the Server with SharePoint installed.
Thanks for any advice or solution to resolve my issue.
Swanl

So I'm assuming this won't return anything either?
Get-WMIObject Win32_ClassicCOMClassSetting | ? {$_.VersionIndependentProgId -like 'excel.application'}
You need Office/Excel installed on the server because you're accessing those .DLLs for the automation functionality, but depending on what you're trying to do you may be able to use one of the office viewers:
http://www.microsoft.com/en-us/download/details.aspx?id=10 although I'm not sure how much of the com (if any) is exposed in a viewer install.  if Office is not possible due to
budget reasons, I believe there are several 3rd party providers who can produce a com object that will handle Excel formats.

Similar Messages

  • Powershell 2.0 already enabled on my Windows Server 2008 R2 SP1

    I have installed the Powershell ISE feature. 
    Is Powershell 2.0 already enabled on my Windows Server 2008 R2 SP1?
    In DISM /Online /Get-Features none of these pre SP1 exist in  SP1.
    DISM/Online/Enable-Feature/FeatureName:NetFx2-ServerCore
    DISM/Online/Enable-Feature/FeatureName:NetFx2-ServerCore-WOW64
    DISM/Online/Enable-Feature/FeatureName:MicrosoftWindowsPowerShell
     In  SP1 features NetFx3 exists but no MicrosoftWindowsPowerShell.
    How do I enable PowerShell 2.0?

    Hi Philpsophiae,
    By default, Windows PowerShell is not installed on a computer that is running Windows Server 2008 R2 Core. You can use the following methods to install Windows PowerShell on a computer that is running Windows Server 2008 R2 Core.
    How to install Windows PowerShell on a computer that is running Windows Server 2008 R2 Core
    Please feel free to let us know if these methods above are not helpful to you.
    Best Regards,
    Anna Wang

  • Need to open a case for Windows Server 2008

    Hi,
    I'm new to this forum and my first impression is that it is "not friendly" :(
    I'm looking for a section where to post a Windows Server issue, but there is not a topic for that. Where could I post it?
    Thanks
    Max

    When you state that the forum is not friendly I hope you mean the layout etc, as I think that people who give up their own time to help others are most friendly.
    You could try the Windows Server section?
    Kind regards, Kev

  • PowerShell Script running Excel won't run on Windows Server 2008 R2

    I have a script that creates a report of a single example of each warning or error in the Windows Event log, for each server in a list of servers,with the number of times that error has occurred in the last week on each server. It creates this report in
    Excel. I have this script running automated through Task Scheduler for one client on Windows 7 and it's working perfectly. I have another client that I am attempting to run this script automated on a server running Windows Server 2008 R2. I can manually run
    the script and everything works, but if I try to schedule the script everything works except for the Excel PowerShell commands. I've have tried:
    Created the Desktop folders for config\systemprofile in System32 and in SysWOW64.
    Configured permissions in DCOM for Microsoft Excel Application.
    Configured folder permissions for config\systemprofile.
    Verified PowerShell is working.
    Unchecked the option in the task to only run while logged on.
    Does anyone have any idea why this is happening and how I can fix it? Thanks!
    Sincerely,
    Christopher Beard

    You might have to launch the application once as the system account so that it can set up the Excel environment, I've had the same problem when  trying to update Excel files from an admin Powershell console using my admin account.  Use psexec with
    a -s option to run it as system account locally while logged on to the target server:
    psexec -s "c:\program files (x86)\microsoft office\office14\excel.exe"
    Then you'll most likely be prompted to input initials - which is what I suspect is preventing your code from running properly.
    There may be some other more elegant way to handle this, but you'd be better off asking that question in one of the forums devoted to Office products.
    I hope this post has helped!

  • Opening Excel Workbook Fails when run from Scheduled Task on Windows Server 2008 Rw

    Hi,
    I have a little vbs script that instantiates the Excel.Application object and then opens a work book to perform some tasks on it. The script runs fine when run from the command line. When I attempt to run it as a scheduled task (it is supposed to update
    data that is pulled from a SQL Server at regular intervals), it fails with the following error:
    Microsoft Office Excel cannot access the file 'c:\test\SampleWorkbook.xlsm'. There are several possible reasons: .....
    The file does exist. The path reported in the error is correct. The account under which the task is running is the same account I use to run it from the command line. User Account Control is not enabled, and the task is set up to run with highest privileges.
    When I run the same script through the Task Scheduler from a Windows Server 2003 machine, it works without issue.
    I was just wondering if somebody on this forum has run into a similar issue in connection with Windows Server 2008 R2 and figured out what the magic trick is to make it work. I'm sure it is rights related, but I haven't quite figured out what which rights
    are missing.
    Thanks in advance for any advice you may have.

    This is truly killing me ... trying to get it working on Windows Server 2012 without success.
    I desperately need to automate running Excel macros in a "headless" environment, that is non-interactive, non-GUI, etc.
    I can get it to work using Excel.Application COM, either via VBScript or Powershell, successfully on many other Windows systems  in our environment - Windows Server 2008 R2, Windows 7 (32-bit), etc.,  -BUT-
    The two servers we built out for running our automation process are Windows Server 2012 (SE) - and it just refuses to run on the 2012 servers - it gives the messages below from VBScript and PowerShell, respectively- 
    I have tried uninstalling and re-installing several different versions of Microsoft Excel (2007 Standard, 2010 Standard, 2010 Professional Plus, 32-bit vs. 64-bit, etc.), but it makes no difference.
    Would be extremely grateful if any one out there has had any success in running Excel automation on Server 2012 in a non-interactive environment that they could share.
    ( I have tried adding the "%windir%\syswow64\config\systemprofile\desktop"
    folder, which did fix the issue for me when testing on Windows Server 2008 R2, but sadly did not resolve it on Windows Server 2012 )
    [VBScript error msg]
    Z:\TestExcelMacro.vbs(35, 1) Microsoft Office Excel: Microsoft Office Excel cannot
    access the file 'Z:\TestExcelMacro.xlsm'. There are several possible reasons:
    • The file name or path does not exist.
    • The file is being used by another program.
    • The workbook you are trying to save has the same name as a currently open work
    [Powershell error msg]
    Exception calling "Add" with "0" argument(s): "Microsoft Office Excel cannot open or save any more documents because th
    ere is not enough available memory or disk space.
     To make more memory available, close workbooks or programs you no longer need.
     To free disk space, delete files you no longer need from the disk you are saving to."
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : ComMethodTargetInvocation
    You cannot call a method on a null-valued expression.
        + CategoryInfo          : InvalidOperation: (:) [], RuntimeException
        + FullyQualifiedErrorId : InvokeMethodOnNull

  • Unable to open Office files on SharePoint 2010 sites on Windows Server 2008 R2

    Setup: Windows SharePoint Server 2010 sp1 on Windows Server 2008 R2 (hosted on VMWare VSphere ESXi 5.1)
    Secured using Domain SSL from GlobalSign.
    Client OS: Windows 7 Professional 32bit & Windows XP SP3 32 bit
    Browsers: IE10, IE9,IE8
    Office: Office 2010, Office 2010 sp2 (both 32bit), Office 2007
    Problem Description: Only recently, users started having issues with opening Office files (Word, Excel) on SharePoint sites. When you click on an Office file e.g. Word Document, it comes up with the option to select "Ready only" or "Edit"
    and choosing either options and re-entering the login credentials results in the
    application hanging. If you leave it for a while (about 5 minutes) sometimes the file opens and other times it gives the error "Could not open https://portal.com/XXX/XXX/Document.docx". Even when it opens, it's extremely
    sluggish and can't do anything other than end it via Task Manager. Same with excel files. 
    This happens to all the users all different OS and browsers.
    On XP Pro SP3 w/ IE8, when you click on the file, the login prompt keeps popping back up repeatedly and if you click cancel, the file loads up anyway but no way of saving back onto the SharePoint site.
    IMPORTANT: One exception is when logged in as a Site Collection Administrator, it
    works like a dream bizarrely!!!! Opens, Edits and saves back fine on the SharePoint site.
    Have tried following:
    1. Repaired Office 2010 Pro; Uninstalled/Re-installed Office 2010 Pro
    2. Reset Browser, unticked automatically detect proxy settings.
    3. Emptied OfficeOfflineCache on Client
    4. Removed WebDAV from the SharePoint server
    5. Added Antivirus folder exclusion (We use SEP 11) on the SharePoint Server
    Note: PDF files opens fine for all users.
    I would immensely appreciate if anybody has got any advice/pointers/suggestions. Desperately out of ideas at the moment.
    regards,
    Compter Sez No!

    Hi,
    According to your description, When you try to open a Microsoft Office document from a SharePoint 2010 site in a client application, the document opens slowly and you are prompted to enter your credentials multiple times.
    This issue may be because of SharePoint Web Front End (WFE) server(s) has Antivirus software installed and the exceptions are not set correctly.
    I recommend to remove the antivirus software or set the correct permissions for the antivirus software to resolve the issue.
    To configure the antivirus exceptions, please follow the guidelines in the below articles:
    KB943620:
    Folders to exclude when you perform a file-level antivirus scan on a server operating system.
    KB952167:
    Certain folders may have to be excluded from antivirus scanning when you use a file-level antivirus program in SharePoint.
    KB943556:
    Recommended file and folder exclusions for Microsoft Forefront Client Security or Forefront Endpoint Protection 2010.
    Best regards.
    Thanks

  • Is there a way to open Excell file from the server and display in the UI and save it back on to the

    Hello there,
    Is there a way to open Excell file from the server and display in the UI and save it back on to the server? (like showing xell file as a datagrid - add rows, columns etc.)

    Hi Mike,
    Welcome you to the forum.
    You may try:
    SELECT * FROM MyDBNameHere.dbo.OUSR T0
    Thanks,
    Gordon

  • Windows Server 2008 R2: Script create multi users with Windows Powershell

    Dear All,
    I have windows server 2008 R2 Active Directory Domain Service. I want to create multi users by using Windows PowerShell.
    Could you guide?
    BR,
    Khemarin Set
    [email protected]

    Dear Awinish,
    Your link very my solution. but i'm very basic with Powershell and I never have experience with it.
    This is the link original script that you are provide:
    function Select-FileDialog 
    param([string]$Title,[string]$Directory,[string]$Filter="CSV Files (*.csv)|*.csv")
    [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") | Out-Null
    $objForm = New-Object System.Windows.Forms.OpenFileDialog
    $objForm.InitialDirectory = $Directory
    $objForm.Filter = $Filter
    $objForm.Title = $Title
    $objForm.ShowHelp = $true
    $Show = $objForm.ShowDialog()
    If ($Show -eq "OK")
    Return $objForm.FileName
    Else
    Exit
    $FileName = Select-FileDialog -Title "Import an CSV file" -Directory "C:"
    $ExchangeUsersOU = "OU=ExchangeUsers" # I don understand, I have all users are store in all-users ou
    $domain = [System.DirectoryServices.ActiveDirectory.Forest]::GetCurrentForest()
    $DomainDN = (([System.DirectoryServices.ActiveDirectory.Forest]::GetCurrentForest()).Domains | ? {$_.Name -eq $domain}).GetDirectoryEntry().distinguishedName
    $final = "LDAP://$DomainDN"
    $DomainPath = [ADSI]"$final"
    $cOU = $DomainPath.Create("OrganizationalUnit",$ExchangeUsersOU)
    $cOU.SetInfo()
    $UserInformation = Import-Csv $FileName
    $OUPath = "LDAP://$ExchangeUsersOU,$DomainDN" # I don understand
    $UserPath = [ADSI]"$OUPath"
    Write-Host "---------------------------------------------------------------"
    Write-Host "Creating LAB Users"
    Write-Host ""
    Write-Host "---------------------------------------------------------------"
    Foreach ($User in $UserInformation){
    $CN = $User.samAccountName
    $SN = $User.Surname
    $Given = $User.givenName
    $samAccountName = $User.samAccountName
    $Display = $User.DisplayName
    $LABUser = $UserPath.Create("User","CN=$CN")
    Write-Host "Creating User: $User.samAccountName"
    $LABUser.Put("samAccountName",$samAccountName)
    $LABUser.Put("sn",$SN)
    $LABUser.Put("givenName",$Given)
    $LABUser.Put("displayName",$Display)
    $LABUser.Put("mail","$samAccountName@$domain")
    $LABUser.Put("description", "Lab User - created via Script")
    $LABUser.Put("userPrincipalName","$samAccountName@$domain")
    $LABUser.SetInfo()
    $Pwrd = $User.Password
    $LABUser.psbase.invoke("setPassword",$Pwrd)
    $LABUser.psbase.invokeSet("AccountDisabled",$False)
    $LABUser.psbase.CommitChanges()
    Write-Host "Script Completed"
    If posible, could you help to correct script as: I have domain name: hello.net. All user are store in all-users ou.
    BR,
    Khemarin Set
    [email protected]

  • Problem installing sharepoint foundation 2013 on windows server 2008 r2

    anybody has experience installing sharepoint 2013 on windows server 2008 r2? I failed to install it even if I have all the latest patches installed and the sql server 2012 express installed.  it keeps failing to install the prerequisites.
    • Microsoft .NET Framework 4.5: equivalent products already installed (no action taken)
    • Windows Management Framework 3.0: was already installed (no action taken)
    • Application Server Role, Web Server (IIS) Role: configuration error
    • Microsoft SQL Server 2008 R2 SP1 Native Client: Installation skipped
    • Windows Identity Foundation (KB974405): Installation skipped
    • Microsoft Sync Framework Runtime v1.0 SP1 (x64): Installation skipped
    • Windows Server AppFabric: Installation skipped
    • Microsoft Identity Extensions: Installation skipped
    • Microsoft Information Protection and Control Client: Installation skipped
    • Microsoft WCF Data Services 5.0: Installation skipped
    • Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763): Installation skipped
    log file:
    2014-04-30 17:32:32 - Processor architecture is (9)
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - Common Startup
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    2014-04-30 17:32:32 - The value is... 
    2014-04-30 17:32:32 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    2014-04-30 17:32:32 - Trying to remove the startup task if there is any.
    2014-04-30 17:32:32 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2014-04-30 17:32:32 - Error: Startup task doesn't exist. This is not a continuation after a restart.
    2014-04-30 17:32:32 - Locating the following command line arguments file:
    2014-04-30 17:32:32 - C:\Program Files (x86)\MSECache\SharePoint2010\PrerequisiteInstaller.Arguments.txt
    2014-04-30 17:32:32 - Error: This file does not exist
    2014-04-30 17:32:32 - Details of the current operating system: 
    2014-04-30 17:32:32 - Major version number of the operating system:  (6)
    2014-04-30 17:32:32 - Minor version number of the operating system:  (1)
    2014-04-30 17:32:32 - Build number of the operating system:  (0X1DB1=7601)
    2014-04-30 17:32:32 - Major version number of the latest Service Pack:  (1)
    2014-04-30 17:32:32 - Minor version number of the latest Service Pack:  (0)
    2014-04-30 17:32:32 - Platform ID of the operating system:  (2)
    2014-04-30 17:32:32 - Product suites available on the operating system:  (0X10=16)
    2014-04-30 17:32:32 - Product type of the operating system: VER_NT_DOMAIN_CONROLLER
    2014-04-30 17:32:32 - Product type:  (0X21=33)
    2014-04-30 17:32:32 - OS type:  (0)
    2014-04-30 17:32:32 - Configuring the application's property sheet...
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Windows Management Framework 3.0
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - PowerShellVersion
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-04-30 17:32:32 - The value is... 
    2014-04-30 17:32:32 - 3.0
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - CTPVersion
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-04-30 17:32:32 - Could not find or unable to read CTPVersion key
    2014-04-30 17:32:32 - The prerequisite above is already installed
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Microsoft .NET Framework 4.5
    2014-04-30 17:32:32 - Reading the following DWORD value/name...
    2014-04-30 17:32:32 - Install
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-04-30 17:32:32 - The value is (1)
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - Version
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-04-30 17:32:32 - The value is... 
    2014-04-30 17:32:32 - 4.5.50938
    2014-04-30 17:32:32 - A post release .NET 4.5 is installed
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Windows Identity Foundation (KB974405)
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - 
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-04-30 17:32:32 - Reading version of the following file...
    2014-04-30 17:32:32 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-04-30 17:32:32 - GetFileVersionInfoSize failed (-2147024894)
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - Version
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Windows Server AppFabric
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - ProductVersion
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Windows Identity Foundation (KB974405)
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - 
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Microsoft Information Protection and Control Client
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - 
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Microsoft WCF Data Services 5.0
    2014-04-30 17:32:32 - Reading the following string value/name...
    2014-04-30 17:32:32 - Version
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-04-30 17:32:32 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:32 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-04-30 17:32:32 - Reading the following DWORD value/name...
    2014-04-30 17:32:32 - IsInstalled
    2014-04-30 17:32:32 - from the following registry location...
    2014-04-30 17:32:32 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-04-30 17:32:38 - Beginning download/installation
    2014-04-30 17:32:38 - Created thread for installer
    2014-04-30 17:32:38 - "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\ADMINI~1\AppData\Local\Temp\1\Pre2AD9.tmp.XML"
    2014-04-30 17:32:38 - Install process returned (0X3EB=1003)
    2014-04-30 17:32:38 - [In HRESULT format] (0X800703EB=-2147023893)
    2014-04-30 17:32:38 - "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe" -i
    2014-04-30 17:32:39 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:40 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:41 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:42 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:43 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:44 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:45 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:46 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:47 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:48 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:49 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:50 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:51 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:52 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:53 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:53 - Install process returned (0)
    2014-04-30 17:32:53 - [In HRESULT format] (0)
    2014-04-30 17:32:53 - "C:\Windows\system32\cscript.exe" "C:\Windows\system32\iisext.vbs" /enext "ASP.NET v4.0.30319"
    2014-04-30 17:32:54 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:55 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:56 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-04-30 17:32:57 - Install process returned (-2146646015)
    2014-04-30 17:32:57 - [In HRESULT format] (-2146646015)
    2014-04-30 17:32:57 - Error when enabling ASP.NET v4.0.30319
    2014-04-30 17:32:57 - Last return code (-2146646015)
    2014-04-30 17:32:57 - Reading the following DWORD value/name...
    2014-04-30 17:32:57 - Flags
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - PendingFileRenameOperations
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SYSTEM\CurrentControlSet\Control\Session Manager
    2014-04-30 17:32:57 - Reading the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    2014-04-30 17:32:57 - Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    2014-04-30 17:32:57 - Last return code (-2146646015)
    2014-04-30 17:32:57 - Options for further diagnostics: 1. Look up the return code value 2. Download the prerequisite manually and verify size downloaded by the prerequisite installer. 3. Install the prerequisite manually from the given location without any
    command line options.
    2014-04-30 17:32:57 - Cannot retry
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Windows Management Framework 3.0
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - PowerShellVersion
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-04-30 17:32:57 - The value is... 
    2014-04-30 17:32:57 - 3.0
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - CTPVersion
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-04-30 17:32:57 - Could not find or unable to read CTPVersion key
    2014-04-30 17:32:57 - The prerequisite above is already installed
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Microsoft .NET Framework 4.5
    2014-04-30 17:32:57 - Reading the following DWORD value/name...
    2014-04-30 17:32:57 - Install
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-04-30 17:32:57 - The value is (1)
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - Version
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-04-30 17:32:57 - The value is... 
    2014-04-30 17:32:57 - 4.5.50938
    2014-04-30 17:32:57 - A post release .NET 4.5 is installed
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Windows Identity Foundation (KB974405)
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - 
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-04-30 17:32:57 - Reading version of the following file...
    2014-04-30 17:32:57 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-04-30 17:32:57 - GetFileVersionInfoSize failed (-2147024894)
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - Version
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Windows Server AppFabric
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - ProductVersion
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Windows Identity Foundation (KB974405)
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - 
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Microsoft Information Protection and Control Client
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - 
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Microsoft WCF Data Services 5.0
    2014-04-30 17:32:57 - Reading the following string value/name...
    2014-04-30 17:32:57 - Version
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-04-30 17:32:57 - Check whether the following prerequisite is installed:
    2014-04-30 17:32:57 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-04-30 17:32:57 - Reading the following DWORD value/name...
    2014-04-30 17:32:57 - IsInstalled
    2014-04-30 17:32:57 - from the following registry location...
    2014-04-30 17:32:57 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-04-30 17:33:21 - Opening log file
    2014-04-30 17:33:21 - Opened action for user
    2014-04-30 17:33:21 - C:\Users\ADMINI~1\AppData\Local\Temp\1\prerequisiteinstaller.2014.04.30-17.32.32.log

    2014-06-20 08:18:39 - Processor architecture is (9)
    2014-06-20 08:18:39 - Reading the following string value/name...
    2014-06-20 08:18:39 - Common Startup
    2014-06-20 08:18:39 - from the following registry location...
    2014-06-20 08:18:39 - SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    2014-06-20 08:18:39 - The value is... 
    2014-06-20 08:18:39 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    2014-06-20 08:18:39 - Trying to remove the startup task if there is any.
    2014-06-20 08:18:39 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2014-06-20 08:18:39 - Error: Startup task doesn't exist. This is not a continuation after a restart.
    2014-06-20 08:18:39 - Locating the following command line arguments file:
    2014-06-20 08:18:39 - C:\Program Files (x86)\MSECache\SharePoint2010\PrerequisiteInstaller.Arguments.txt
    2014-06-20 08:18:39 - Error: This file does not exist
    2014-06-20 08:18:39 - Details of the current operating system: 
    2014-06-20 08:18:39 - Major version number of the operating system:  (6)
    2014-06-20 08:18:39 - Minor version number of the operating system:  (1)
    2014-06-20 08:18:39 - Build number of the operating system:  (0X1DB1=7601)
    2014-06-20 08:18:39 - Major version number of the latest Service Pack:  (1)
    2014-06-20 08:18:39 - Minor version number of the latest Service Pack:  (0)
    2014-06-20 08:18:39 - Platform ID of the operating system:  (2)
    2014-06-20 08:18:39 - Product suites available on the operating system:  (0X10=16)
    2014-06-20 08:18:39 - Product type of the operating system: VER_NT_DOMAIN_CONROLLER
    2014-06-20 08:18:39 - Product type:  (0X21=33)
    2014-06-20 08:18:39 - OS type:  (0)
    2014-06-20 08:18:39 - Configuring the application's property sheet...
    2014-06-20 08:18:39 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:39 - Windows Management Framework 3.0
    2014-06-20 08:18:39 - Reading the following string value/name...
    2014-06-20 08:18:39 - PowerShellVersion
    2014-06-20 08:18:39 - from the following registry location...
    2014-06-20 08:18:39 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-06-20 08:18:39 - The value is... 
    2014-06-20 08:18:39 - 4.0
    2014-06-20 08:18:39 - A higher version of the prerequisite above is already installed
    2014-06-20 08:18:39 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:39 - Microsoft .NET Framework 4.5
    2014-06-20 08:18:39 - Reading the following DWORD value/name...
    2014-06-20 08:18:39 - Install
    2014-06-20 08:18:39 - from the following registry location...
    2014-06-20 08:18:39 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-20 08:18:39 - The value is (1)
    2014-06-20 08:18:39 - Reading the following string value/name...
    2014-06-20 08:18:39 - Version
    2014-06-20 08:18:39 - from the following registry location...
    2014-06-20 08:18:39 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-20 08:18:39 - The value is... 
    2014-06-20 08:18:39 - 4.5.50938
    2014-06-20 08:18:39 - A post release .NET 4.5 is installed
    2014-06-20 08:18:39 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:39 - Windows Identity Foundation (KB974405)
    2014-06-20 08:18:39 - Reading the following string value/name...
    2014-06-20 08:18:39 - 
    2014-06-20 08:18:39 - from the following registry location...
    2014-06-20 08:18:39 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-06-20 08:18:39 - The value is... 
    2014-06-20 08:18:39 - 6.1.7600.0
    2014-06-20 08:18:39 - The prerequisite above is already installed
    2014-06-20 08:18:39 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:39 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-06-20 08:18:39 - Reading version of the following file...
    2014-06-20 08:18:39 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-06-20 08:18:39 - The version is...
    2014-06-20 08:18:39 - 1.0.1215.0
    2014-06-20 08:18:39 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:39 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-06-20 08:18:39 - Reading the following string value/name...
    2014-06-20 08:18:39 - Version
    2014-06-20 08:18:39 - from the following registry location...
    2014-06-20 08:18:39 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-06-20 08:18:39 - The value is... 
    2014-06-20 08:18:39 - 10.0.1600.22
    2014-06-20 08:18:39 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:39 - Windows Server AppFabric
    2014-06-20 08:18:39 - Reading the following string value/name...
    2014-06-20 08:18:40 - ProductVersion
    2014-06-20 08:18:40 - from the following registry location...
    2014-06-20 08:18:40 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-20 08:18:40 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:40 - Windows Identity Foundation (KB974405)
    2014-06-20 08:18:40 - Reading the following string value/name...
    2014-06-20 08:18:40 - 
    2014-06-20 08:18:40 - from the following registry location...
    2014-06-20 08:18:40 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-06-20 08:18:40 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:40 - Microsoft Information Protection and Control Client
    2014-06-20 08:18:40 - Reading the following string value/name...
    2014-06-20 08:18:40 - 
    2014-06-20 08:18:40 - from the following registry location...
    2014-06-20 08:18:40 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-06-20 08:18:40 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:40 - Microsoft WCF Data Services 5.0
    2014-06-20 08:18:40 - Reading the following string value/name...
    2014-06-20 08:18:40 - Version
    2014-06-20 08:18:40 - from the following registry location...
    2014-06-20 08:18:40 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-06-20 08:18:40 - Check whether the following prerequisite is installed:
    2014-06-20 08:18:40 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-06-20 08:18:40 - Reading the following DWORD value/name...
    2014-06-20 08:18:40 - IsInstalled
    2014-06-20 08:18:40 - from the following registry location...
    2014-06-20 08:18:40 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-06-20 08:18:44 - Beginning download/installation
    2014-06-20 08:18:44 - Created thread for installer
    2014-06-20 08:18:44 - "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\ADMINI~1\AppData\Local\Temp\2\Pre6515.tmp.XML"
    2014-06-20 08:18:45 - Install process returned (0X3EB=1003)
    2014-06-20 08:18:45 - [In HRESULT format] (0X800703EB=-2147023893)
    2014-06-20 08:18:45 - "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe" -i
    2014-06-20 08:18:45 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:46 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:47 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:48 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:49 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:50 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:51 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:52 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:53 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:54 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:55 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:56 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:57 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:58 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:18:59 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:19:00 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:19:01 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:19:02 - Install process returned (0)
    2014-06-20 08:19:02 - [In HRESULT format] (0)
    2014-06-20 08:19:02 - "C:\Windows\system32\cscript.exe" "C:\Windows\system32\iisext.vbs" /enext "ASP.NET v4.0.30319"
    2014-06-20 08:19:02 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:19:03 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-06-20 08:19:04 - Install process returned (-2146646015)
    2014-06-20 08:19:04 - [In HRESULT format] (-2146646015)
    2014-06-20 08:19:04 - Error when enabling ASP.NET v4.0.30319
    2014-06-20 08:19:04 - Last return code (-2146646015)
    2014-06-20 08:19:04 - Reading the following DWORD value/name...
    2014-06-20 08:19:04 - Flags
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - PendingFileRenameOperations
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SYSTEM\CurrentControlSet\Control\Session Manager
    2014-06-20 08:19:04 - Reading the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    2014-06-20 08:19:04 - Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    2014-06-20 08:19:04 - Last return code (-2146646015)
    2014-06-20 08:19:04 - 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-20 08:19:04 - Cannot retry
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Windows Management Framework 3.0
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - PowerShellVersion
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-06-20 08:19:04 - The value is... 
    2014-06-20 08:19:04 - 4.0
    2014-06-20 08:19:04 - A higher version of the prerequisite above is already installed
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Microsoft .NET Framework 4.5
    2014-06-20 08:19:04 - Reading the following DWORD value/name...
    2014-06-20 08:19:04 - Install
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-20 08:19:04 - The value is (1)
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - Version
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-20 08:19:04 - The value is... 
    2014-06-20 08:19:04 - 4.5.50938
    2014-06-20 08:19:04 - A post release .NET 4.5 is installed
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Windows Identity Foundation (KB974405)
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - 
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-06-20 08:19:04 - The value is... 
    2014-06-20 08:19:04 - 6.1.7600.0
    2014-06-20 08:19:04 - The prerequisite above is already installed
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-06-20 08:19:04 - Reading version of the following file...
    2014-06-20 08:19:04 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-06-20 08:19:04 - The version is...
    2014-06-20 08:19:04 - 1.0.1215.0
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - Version
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-06-20 08:19:04 - The value is... 
    2014-06-20 08:19:04 - 10.0.1600.22
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Windows Server AppFabric
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - ProductVersion
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Windows Identity Foundation (KB974405)
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - 
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Microsoft Information Protection and Control Client
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - 
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Microsoft WCF Data Services 5.0
    2014-06-20 08:19:04 - Reading the following string value/name...
    2014-06-20 08:19:04 - Version
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-06-20 08:19:04 - Check whether the following prerequisite is installed:
    2014-06-20 08:19:04 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-06-20 08:19:04 - Reading the following DWORD value/name...
    2014-06-20 08:19:04 - IsInstalled
    2014-06-20 08:19:04 - from the following registry location...
    2014-06-20 08:19:04 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-06-20 08:19:45 - Opening log file
    2014-06-20 08:19:45 - Opened action for user
    2014-06-20 08:19:45 - C:\Users\ADMINI~1\AppData\Local\Temp\2\prerequisiteinstaller.2014.06.20-08.18.39.log

  • Microsoft Excel cannot access the file "-". There are several possible reasons. Windows Server 2008 R2 with Microsoft Office 2010

    I have a problem with starting the Excel Application under a particular user (service account).
    I try to schedule this C# script through an application X (not Windows Task Scheduler. And this
    application will always use a service account to run services on the server). If I run the C# script in
    command prompt under the same user, it runs. Under the application X, which uses the exact same
    user, to initiate the C# script, it fails to open the Excel application (not sufficient permission?).
    This script calls application.Workbooks.Open(<ExcelFileName>,0,false,Type.missing....). At this line
    of code, it gives the following error:
    Microsoft Excel cannot access the file "...". There are several possible reasons:
    -The file name or path does not exist.
    -The file is being used by another program.
    -The workbook you are trying to save has the same name as a currently open workbook.
    I tried all the methods that I found online as follow:
    Create directory "C:\Windows\SysWOW64\config\systemprofile\Desktop" (for 64 bit Windows) or "C:\Windows\System32\config\systemprofile\Desktop" (for 32 bit Windows).
    Changed the DCOM config for the Microsoft Excel application to include this user for Local/Remote Launch and Access.
    Enabled all macros in Excel application and set the Trust Center.
    Add the user to have full control on all folders that contain the Excel file.
    Under DCOM
    config, Microsoft Excel Application, if I modify the Identity tab to check on "This User" and enter the username/password to let Excel always run under that user. Then the application runs perfectly. However, other users can't run the excel application
    on their own with the following error: "Cannot use object linking and embedding". If I check "Use the launching user", then Excel can't be launched. No errors in the logs or events anywhere to check.
    Yet, still the same error. I think it's permission but I am not sure where and what to do for this to work.
    Now, normally, when I run this excel report, I can double-click on the file and it'd automatically run,
    save the new parameters into the current file and generate a new excel file (with date attached to the
    file name). That means there is a change (save) to the original file.
    Environment: Windows Server 2008 R2 and running Microsoft Excel 2010.
    I appreciate all your help!

    I am wondering if this has anything to do with having the user log into Excel.
    In point #5 above: Under DCOM config, Microsoft Excel Application, if I modify the Identity tab to check on "This User" and enter the username/password to let Excel always run under that user. Then the application runs perfectly. However, other
    users can't run the excel application on their own with the following error: "Cannot use object linking and embedding". If I check "Use the launching user", then Excel can't be launched. No errors in the logs or events anywhere to check.
    Because running with the launching user proposes an user to run the Excel application. However, I do not think there is any where that we can pass in the password for this user to Excel. However, this Excel has all the permissions to Excel application as
    well as the folders that have the Excel files.
    Please help!
    Thank you!

  • Client application freezes permanently when one user logoff and another user take that session on windows server 2008 r2

    Hi,
    we have windows server 2008 r2 and In our application there are three server and on e client application.
    My client application freezes on a specific scenario.
    Steps taken to hang are following:-
    1. start client application
    2. open an module named by XYZ
    3. login to remote machine with another session./ Another user login from their computer.
    4. connect with the session which have client application opened.
    5. Whenever the session is forcibly taken client application becomes unresponsive.

    Hello,
    The Windows Desktop Perfmon and Diagnostic tools forum is to discuss performance monitor (perfmon), resource monitor (resmon), and task manager, focusing on HOW-TO, Errors/Problems, and usage scenarios.
    Since your post is off-topic, I am moving it to the
    off topic forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Sharepoint 2007 and SQL 2008 SP3 on Windows Server 2008 Enterprise SP2 (64-bit)

    Is there any documentation we can check if SQL 2008 SP3 is compatible with Sharepoint 2007 SP2 or SP3? Both Sharepoint and SQL servers are running on separate Virtual machines (Windows Server 2008 Enterprise SP2(64-bit)). Currently DB is running on
    SQL server 2008 SP2, and we would like to have SP3 loaded on it, but want to find if there is any compatibility issue?
    Thanks in advance!
    mh

    I'm not aware of any known issues with SQL Server 2008 SP3 and SharePoint 2007. I did a quick check and saw one person reporting an issue with their Central Admin site after applying the SQL Server update, but that's it.
    With that being said, I would strongly encourage you to test out the application of that SQL Server service pack in a non-production environment well before you apply it in production. There is always a chance that your environment has something set up in
    it that would cause an unexpected issue, and the best way to get an idea of whether or not an issue exists is by doing it somewhere else first before you do it in prod.
    John
    MCITP and MCTS: SharePoint, Virtualization, Project Server 2007
    My books on Amazon: The SharePoint 2010 Disaster Recovery Guide and
    The SharePoint 2007 Disaster Recovery Guide.
    My blog: My Central Admin.

  • Script stops automatically on windows server 2008, IE8 is not launched or it doesn't navigate

    QTP 11.0 - Script stops automatically on windows server 2008, IE8 and works fine on other standalone machines having Windows 7. Pls advise. It is very weird, it suddenly stops launching IE8. Sometimes it launches IE8 but des not navigate from one step to another. I have scheduled it using a vbscript though windows scheduler.  I tired to uninstall QTP, then reinstall, it works fine for first run but stops again.

    To Wendy23,
    Just for clarity, the Windows Server 2008 OS that I ran ROBOCOPY and XCOPY on was the non-R2 version. Microsoft might have fixed this issue in R2.
    You'll probably need to logon as local Administrator or use an account belonging to the local Administrators group.
    Also, open the Command Prompt using "Run as Administrator" (right-click on Command Prompt), then run the XCOPY and ROBOCOPY commands from within this prompt.
    To answer G.Write, the storage is local hard disks.
    Thanks, was a long time ago, I was having a problem with robocopy not copying permissions on a SAN, and was wondering if the SAN was the problem, but your method worked fine for me, thanks.

  • Powershell Windows Server 2008 R2 - SP 2007

    Hi
    I am working with Windows server 2008 R2, which has windows powershell, but I want to set up/use SP PowerShell
    any ideas how I go about doing this?

    See this similar thread - How
    to install Sharepoint powershell to MOSS 2007
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Windows Server 2008 r2 File service and Storage File opened by "another user"

    When I was using Windows server 2003 it show files opened by "user's name" but after changing to windows server 2008 r2 it only shows File opened by "another user" this is a hug problem in our organization which has around 200 staff's
    sharing files, and dont know who has opened file,
    We administrator can see and close opened file from "Manage opened files" but we want users also to see who has opened current file they are using instead of showing opened by another user displaying the user's name of the file opened.
    Can anyone help me with this problem,
    Thank you in Advance,

    Hi,
    I tried on a Windows 2008 R2 system and here is the result. 
    Here "2" is a standard domain user so it could be displayed correctly. 
    I would like to know if the issue specifically occurs on Office files? If so it could be an Office issue instead of system related. You can try one of the following 2 files:
    Excel 2007 - http://support.microsoft.com/kb/2598133
    Excel 2010 - http://support.microsoft.com/kb/2598143
    If you have any feedback on our support, please send to [email protected]

Maybe you are looking for

  • Dynamic SQL and Bulk Bind... Interesting Problem !!!

    Hi Forum !! I've got a very interesting problem involving Dynamic SQL and Bulk Bind. I really Hope you guys have some suggestions for me... Table A contains a column named TX_FORMULA. There are many strings holding expressions like '.3 * 2 + 1.5' or

  • Return Order - Excise Invoice

    Dear SD Gurus, This scenario is related to Return Order - Excise Invoice.  In return order first we will create return Order (with Ref. to Billing Document) - Return Delivery- Billing. Now I require clarification on Excise Invoice returns.  How to ca

  • Share or Backup Project to External Drive

    Ok, I've figured out a solution, and it probably isn't the best.  I couldn't really find answers around, so I thought I'd post this to either; a) help or b) get better ideas. It should be noted that FCPX crashed a couple of times while I tested this

  • Problem while instantiating

    I simply wrote this 2 lines of code: import flash.display.DisplayObject; var testIt:DisplayObject = new DisplayObject(); And I receive this weird error: ArgumentError: Error #2012: DisplayObject$ class cannot be instantiated. Any idea? Thanks in adva

  • Canon 6D RAW file converter

    I am a PS CS5 user and recently purchased the new Canon 6D.  I have downloaded the RAW files from my camera, but PS won't read them (Canon software will).  I was given the sugestion to convert them from RAW to DNG with the Adobe convertor so I can us