Powershell web access limited to PowerShell 1.0?

Hello,
I setup PowerShell Web Access and it seems to be limited to PowerShell 1.0. I deployed module designed for PowerShell 2.0 and I'm getting error below when trying to import it. Is it expected?
Windows PowerShell
Copyright (C) 2013 Microsoft Corporation. All rights reserved.
PS C:\Users\g\Documents>
Import-Module AAWebAdministration
Import-Module : The current Windows PowerShell host is: 'ServerRemoteHost' (version 1.0.0.0). The module
'C:\Windows\system32\WindowsPowerShell\v1.0\Modules\AAWebAdministration\AAWebAdministration.psd1' requires a
minimum Windows PowerShell host version of '2.0' to run.
+ CategoryInfo : ResourceUnavailable: (C:\Windows\syst...nistration.psd1:String) [Import-Module], Invalid
OperationException
+ FullyQualifiedErrorId : Modules_InsufficientPowerShellHostVersion,Microsoft.PowerShell.Commands.ImportModuleComm
and
PS C:\Users\g\Documents>

That is just for the ServerRemoteHost version, which doesn't mean that the actual PowerShell version is 1.0. It sounds like the module metadata is incorrect and should be adjusted.
You can go and edit the .psd1 file that is being referenced and set the powershellversion key to 2.0 and set the powershellhostversion to ''.
This should clear up that issue.
Boe Prox
Blog |
Twitter
PoshWSUS |
PoshPAIG | PoshChat |
PoshEventUI
PowerShell Deep Dives Book

Similar Messages

  • Powershell Web Access - Authorization failure

    I've been beating my head against the wall on this one.
    Setup Powershell web Access by doing the following:
    1.   Install-WindowsFeature WindowsPowerShellWebAccess –IncludeManagementTools
    2.   Install-PswaWebApplication –UseTestCertificate
    3.   Add-PswaAuthroizationRule
    –UserName Domain\Username –ComputerName
    * –ConfigurationName MYCONFIG
    I'm a domain administrator and I ran these three cmdlets from an administrator powershell window.
    The PSWA window gives me this error:  
    If I run enter-pssession -computername COMPUTER 
    it works just fine, but not from pswa.  I don't know what is wrong here.  Nothing in the
    event logs either.
    This is from a Server 2012 machine to a Server 2012 machine.
    Anyone have any ideas?

    I did add a restrictive authorization rule.  Step 3 that i performed was to run:
    Add-PswaAuthroizationRule –UserName Domain\Username –ComputerName
    * –ConfigurationName MYCONFIG
    Did I miss something in this?

  • PowerShell Web Access - Creating "Self-Serve" Behaviour

    Hi all,
    I am exploring PowerShell Web Access and I'm looking to set it up to offer self-serve capabilities to Dev/QA.  Basically I want to Dev/QA to only be able to execute scripts (no running cmdlets, etc) and only in particular directories.
    The goal of this is to allow Dev/QA to get access to the scripts I would normally run, but be able to run them when I'm away for whatever reason (while still keeping them out of the rest of the system).
    Can anyone point me in the right direction?
    Thanks.

    I think you can better create Restricted PowerShell EndPoints in PowerShell to allow only the Script to be run (not even core cmdlets)
    Have a look here:
    http://blogs.technet.com/b/heyscriptingguy/archive/2012/07/27/an-introduction-to-powershell-remoting-part-five-constrained-powershell-endpoints.aspx
    Hope this helps
    Knowledge is Power{Shell}.
    This was the ticket.  I set up a PSSessionConfiguration and hooked it up via Add-PswaAuthorizationRule.
    Thanks.

  • PowerShell Web Access - Prefill Computer Name?

    One of the devs asked me if there was some way to prefill the computer name field for the PSWA site (since we use the localhost machine quite often).
    Is there any way to do this?  He mentioned maybe query params?

    If there is a query parameter or query string that can be added to the URL then I am not aware of it. Even so, it can be done.
    You can modify the code in the logon.aspx file but it'll take some work. Start by stopping the website in IIS. Then locate the file at C:\Windows\Web\PowerShellWebAccess\wwwroot\en-US\logon.aspx. You need to add value="computername" to
    the line <input id="targetNodeTextBox" name="computer-name" type="text" class="required" runat="server" clientidmode="Static" />. I added it after the word input and before id="targetNodeTextBox"...
    The issue here is that you will have to take ownership of the file first, add modify and write permissions to a group (that you're in) or user (that's you) on the file, copy the file out of the directory, edit it as mentioned above, save it with a new name
    and close the file, rename the file to logon.aspx, and then copy it back to the directory above. Painful (and
    possibly a security risk?), but that's the only way in which I am aware.
    Be sure to start the website in IIS before reloading your PSWA website.
    Edit: Added a step to the instructions about adding permissions.

  • Web access how to stream to android and ipad`s

    Hello.
    At the moment I can log into my web access server from another pc and click on media files and be able to watch a film by streaming.
    I am unable to do this on my android or ipad is there a step by step guide on how to get this to work?
    I am new to owning a server 2012r2 so be gentle.
    Thank you.

    While PowerShell Web Access (PSWA) does require authorization rules to function, these rules do not specify what cmdlets can be used in a PSRemoting session. The PSWA authorization rules define what user, or group of users, can remotely connect to what computer,
    or group of computers, through the PSWA gateway (the PSWA server).
    What you need to research are session configurations and/or endpoints. These are separate from PSWA, but can be used in conjunction with PSWA (PSWA website > Optional connection settings > Configuration >
    NameOfConfiguration), just as they can in a standard console-based PSRemoting session (Enter-PSSession -ComputerName
    server01 -Configuration NameOfConfiguration -or- Invoke-Command -ComputerName
    server01 -Configuration NameOfConfiguration).
    Start your research with New-PSSessionConfigurationFile and then Register- and Unregister-PSSessionConfiguration. These have been great for our environment, allowing non-admin users access to run very specific cmdlets as an admin, without being an admin
    on the computer.

  • Power Shell Web Access - How to limit the cmdlets and give regular users, access to perform tasks

    It is possible to give to regular/standard users, powershell web access to give only, for example, "get-" cmdlets?
    The ideia is to provide help desk tech users, a minimum level of access on some servers, and it will be usefull to give then, basic and restrcted access to a few cmdlets, performe harmless activities and mybe some level of access, not alloweing to to using
    RDP, but PS, insted

    While PowerShell Web Access (PSWA) does require authorization rules to function, these rules do not specify what cmdlets can be used in a PSRemoting session. The PSWA authorization rules define what user, or group of users, can remotely connect to what computer,
    or group of computers, through the PSWA gateway (the PSWA server).
    What you need to research are session configurations and/or endpoints. These are separate from PSWA, but can be used in conjunction with PSWA (PSWA website > Optional connection settings > Configuration >
    NameOfConfiguration), just as they can in a standard console-based PSRemoting session (Enter-PSSession -ComputerName
    server01 -Configuration NameOfConfiguration -or- Invoke-Command -ComputerName
    server01 -Configuration NameOfConfiguration).
    Start your research with New-PSSessionConfigurationFile and then Register- and Unregister-PSSessionConfiguration. These have been great for our environment, allowing non-admin users access to run very specific cmdlets as an admin, without being an admin
    on the computer.

  • FSRM report limits using PowerShell

    I am following this article:
    http://blogs.technet.com/b/filecab/archive/2014/05/20/set-fsrm-storage-report-limits-using-powershell.aspx
    I did have this working just fine, but after installing Windows Updates today on a 2012 R2 box this functionality breaks the GUI. Now, any time you try to edit a report you are hit with Event ID 0, 'file server resource manager value is not valid' and a
    GUI error of 'Unexpected Error. Value of 1000 is not valid for 'Value'. 'Value' should be between 'Minimum' and 'Maximum'.
    The report still runs, but you cannot view in the GUI until you again use PowerShell to decrease the limits back to default.
    Any ideas on how to fix? (Other than removing the updates) Seems a recent Windows Update has broken this.

    The Windows Update version is the latest available. So if you have a 2012 R2 server and install every available update, that's the level I'm at. It was a recent update that seems to have broken this, I just don't know which one.
    The parameter was already set to 1,000 and was working fine. The default is 100, and any value greater than 100 now produces the GUI error.
    Newly created reports also produce the same error. I stress that the reports do still run with the value of 1,000 set by PowerShell, it's just the GUI that does not recognise the values set by PowerShell.
    Looks like a bug in a recent Windows Update.

  • 2012 R2 Essentials - Anywhere Access will not install. Including Remote Web Access portion.

    After setting up 2012 R2 Essentials, I attempted to go through the dashboard's "Set up Anywhere Access" wizard. I was able to configure a domain name successfully on remotewebaccess.com but when the wizard attempted to enable the "Remote Web
    Access" feature, the wizard flashes a couple of statuses and locks up on verifying and then the entire dashboard crashes. When I go to the event logs, there is only a mention of dashboard.exe having an exception error. I have also delved into the dashboard.log
    file and found the following error where it throws the FATAL crash:
    Dashboard.Forms: !!!!FATAL: Dashboard shutting down due to unhandled exception: The 'Get-WindowsFeature' command was found in the module 'ServerManager', but the module could not be loaded. For more information, run 'Import-Module ServerManager'.
    [11024] 140624.234737.2917: Dashboard.Forms: System.Management.Automation.CommandNotFoundException: The 'Get-WindowsFeature' command was found in the module 'ServerManager', but the module could not be loaded. For more information, run 'Import-Module ServerManager'.
    ---> System.Management.Automation.CmdletInvocationException: Length cannot be less than zero.
    Parameter name: length ---> System.ArgumentOutOfRangeException: Length cannot be less than zero.
    Parameter name: length
    I have launched PowerShell and executed the "Import-Module ServerManager" along with the "Get-WindowsFeature" command and it returns the list of available and installed features. I have also tried rebooting the server and attempting the
    wizard numerous times and all attempts result in the same error above. Does anyone have an idea of what could be causing this? I have searched google, bing, and the technet similar questions but none have a solution that will allow me to use the wizard to
    enable the Remote Web Access feature.

    I had a similar issue, it does appears to be caused by MyMovies 5.
    I removed MM5 but the dashboard would still crash after opening the Anywhere Access tab and when it had been running the 'Updating' status for a bit. going through the dashboard log I found that just under the line about the Get-WindowsFeature error was
    a comment 'atMyMovies.Common... full error as follows:
    [5616] 140701.125213.3686: Dashboard.Forms: !!!!FATAL: Dashboard shutting down due to unhandled exception: The 'Get-WindowsFeature' command was found in the module 'ServerManager', but the module could not be loaded. For more information, run 'Import-Module
    ServerManager'.
    [5616] 140701.125213.3686: Dashboard.Forms: System.Management.Automation.CommandNotFoundException: The 'Get-WindowsFeature' command was found in the module 'ServerManager', but the module could not be loaded. For more information, run 'Import-Module ServerManager'.
    ---> System.Management.Automation.CmdletInvocationException: Could not load file or assembly 'Microsoft.Windows.ServerManager.PowerShell' or one of its dependencies. An argument was out of its legal range. (Exception from HRESULT: 0x80131502) ---> System.IO.FileLoadException:
    Could not load file or assembly 'Microsoft.Windows.ServerManager.PowerShell' or one of its dependencies. An argument was out of its legal range. (Exception from HRESULT: 0x80131502) ---> System.ArgumentOutOfRangeException: Length cannot be less than zero.
    Parameter name: length
       at System.String.Substring(Int32 startIndex, Int32 length)
       at MyMovies.Common.AssemblyResolver(Object sender, ResolveEventArgs args)
       at System.AppDomain.OnAssemblyResolveEvent(RuntimeAssembly assembly, String assemblyFullName)
       --- End of inner exception stack trace ---
       at Microsoft.PowerShell.Commands.ModuleCmdletBase.LoadBinaryModule(PSModuleInfo parentModule, Boolean trySnapInName, String moduleName, String fileName, Assembly assemblyToLoad, String moduleBase, SessionState ss, ImportModuleOptions options, ManifestProcessingFlags
    manifestProcessingFlags, String prefix, Boolean loadTypes, Boolean loadFormats, Boolean& found, String shortModuleName, Boolean disableFormatUpdates)
       at Microsoft.PowerShell.Commands.ModuleCmdletBase.LoadModuleNamedInManifest(PSModuleInfo parentModule, ModuleSpecification moduleSpecification, String moduleBase, Boolean searchModulePath, String prefix, SessionState ss, ImportModuleOptions options,
    ManifestProcessingFlags manifestProcessingFlags, Boolean loadTypesFiles, Boolean loadFormatFiles, Object privateData, Boolean& found, String shortModuleName)
       at Microsoft.PowerShell.Commands.ModuleCmdletBase.LoadModuleManifest(String moduleManifestPath, ExternalScriptInfo scriptInfo, Hashtable data, Hashtable localizedData, ManifestProcessingFlags manifestProcessingFlags, Version version, Version requiredVersion,
    ImportModuleOptions& options, Boolean& containedErrors)
       at Microsoft.PowerShell.Commands.ModuleCmdletBase.LoadModuleManifest(ExternalScriptInfo scriptInfo, ManifestProcessingFlags manifestProcessingFlags, Version version, Version requiredVersion, ImportModuleOptions& options)
       at Microsoft.PowerShell.Commands.ModuleCmdletBase.LoadModule(PSModuleInfo parentModule, String fileName, String moduleBase, String prefix, SessionState ss, Object privateData, ImportModuleOptions& options, ManifestProcessingFlags manifestProcessingFlags,
    Boolean& found, Boolean& moduleFileFound)
       at Microsoft.PowerShell.Commands.ImportModuleCommand.ImportModule_LocallyViaName(ImportModuleOptions importModuleOptions, String name)
       at Microsoft.PowerShell.Commands.ImportModuleCommand.ProcessRecord()
       at System.Management.Automation.CommandProcessor.ProcessRecord()
       --- End of inner exception stack trace ---
       at System.Management.Automation.Runspaces.PipelineBase.Invoke(IEnumerable input)
       at System.Management.Automation.PowerShell.Worker.ConstructPipelineAndDoWork(Runspace rs, Boolean performSyncInvoke)
       at System.Management.Automation.PowerShell.CoreInvokeHelper[TInput,TOutput](PSDataCollection`1 input, PSDataCollection`1 output, PSInvocationSettings settings)
       at System.Management.Automation.PowerShell.CoreInvoke[TInput,TOutput](PSDataCollection`1 input, PSDataCollection`1 output, PSInvocationSettings settings)
       at System.Management.Automation.PowerShell.CoreInvoke[TOutput](IEnumerable input, PSDataCollection`1 output, PSInvocationSettings settings)
       at System.Management.Automation.CommandDiscovery.AutoloadSpecifiedModule(String moduleName, ExecutionContext context, SessionStateEntryVisibility visibility, Exception& exception)
       --- End of inner exception stack trace ---
    There was a couple of line before the fatal error suggesting it could be to do with the remote deskop gateway configuration...
       at Microsoft.WindowsServerSolutions.Common.RemoteDesktopConfig.RemoteDesktopConfigLib.IsFeatureAvailable(String featureName)
       at Microsoft.WindowsServerSolutions.Common.RemoteDesktopConfig.RemoteDesktopConfigLib.CheckTSRelatedRolesAvailable()
       at Microsoft.WindowsServerSolutions.Connectivity.Jobs.TsGatewayDiagnosticsJob.OnRun(DiagnosticsResult result, ConnectivityEnvironment environment)
       at Microsoft.WindowsServerSolutions.Connectivity.DiagnosticsJob.RunAndCatch(DiagnosticsResult result, ConnectivityEnvironment environment)
    So I ended up removing the role using server manager, along with the remote access role, and then rebooting the server. I then added the Remote Access role back in by choosing the 'DirectAccess and VPN (RAS)' option.
    When I then ran the dashboard Anywhere Access setup it worked.
    Other issues that seemed to cause the dashboard to crash was when I released the remotewebaccess.com domain name and then added it back in. I had multiple certificates with the same name which seemed to cause an issue. so I released the domain name again,
    went into the certificates MMC and removed any of the goDaddy certificate. then configured the domain name again and the rest of the wizard ran with no issues.
    Hope some of this helps...

  • Fast web access

    Is it possible to have a fast web access pdf load only a specified number of pages, at least to start with?  Say the top/first ten pages of a larger pdf?
    I have a web site which displays a multi page pdf, which is regularly being added to; new pages go to the top on a regular basis. (It is a legal file - when a new piece of correspondence comes in, it is added to the pdf).  The viewer usually only wants to view the several new pages I have added.  But every time the whole document is downloaded, which in this case is a waste of the client's download limits.
    I do of course enable fast web access and use Acrobat's Reduce File Size... feature.  They are always black and white files.  All of this helps the download speed.
    If the viewer wants to view pages beyond the initial ten, then the request for page 11 could then trigger a request for another 10??
    Any feedback on this issue greatly appreciated.

    I use this forum on a variety of Win7 32 and 64 bit machines and I have not experienced any slowness in loading at all.  I reckon that it takes less than 1 sec to load any page and at my age, that's faster than a blink of my eye.  My broadband connection is a constant 6.6 Mbps using the MkII curved hub with full home network with many devices attatched (PC's, printers, NAS drives + BT vision, Blu-ray BD etc, etc.).  I use IE8 on all machines and F-Secure Internet security.  All machines also run MSoffice 2010 which is soooo good.
    Overall, the new site is fine.
    OLD MAN ( 3 x 20 + 10  and still with it! )

  • Web access and my iBook G4

    Hello everyone
    For the past several weeks I have had problems getting web access through a dialup connection on my iBook. The Mac can dialup and connect to the internet with no problems and has no issues with Mail accessing my IMAP and POP e-mail.
    However, none of the three browsers I've tried (Safari, Opera and Firefox, all in their most recent iterations) seem able to access webpages. I can get RSS feed from Apple but webpages don't load. Web access was previously a fairly speedy and tolerable process. Some time ago I installed some plugins for Safari (PithHelmet and AfterSurf) which I did consider to be the offenders, but I removed these when I installed Safari 3. I've checked the ISP settings (Freewire.co.uk) several times, but this doesn't seem to make a difference. I've been using this ISP for about a year with no problems until recently.
    The iBook has no problems with web access through a wireless network (ie in a wi-fi cafe). I read on another thread that someone was experiencing vaguely similar difficulties having installed updates for Quicktime. My Mac has these installed. I did try a web search for more info on this, but nothing relevant came up (or at least, I didn't spot it).
    So, where to go from here? Apart from getting wireless broadband...
    For reference, my iBook is a late 2004 model with an extra 512MB RAM installed and runs 10.4.10. Generally-speaking it's a fine little computer...apart from this.
    With all good wishes
    Gareth Wells

    If you can send and receive mail in dialup, then your iBook builtin modem should be fine. It functions like a simple pipe, where e-mail and web pages are just different kinds of data that it cannot distinguish between. Ethernet and wireless would be two other simple pipes.
    Port blocking is also unlikely because firewalls do not distinguish between the kinds of data pipes you might be using. So any problem you have with dialup would also show up on ethernet and wireless.
    Elko is speculating that you might have DNS problems with your dialup ISP that may cause URL's to be misinterpreted. POP and IMAP mail access also involves URL's, however, unless you go to the trouble of entering only numeric IP addresses into your Mail preferences.
    So, the answer is that we really have no answer. Under the circumstances, you probably should talk to your ISP. Try a limited free dialup account with someone like NetZero (or the equivalent on your side of the Pond) to see if that will solve the problem. Of course, if you are looking for an excuse to move up to broadband....

  • Outlook Web Access vs ActiveSync

    Hi all,
    Apologies if this question was already asked, but I can't seem to find it if so.
    I work at a largish company who use Outlook Exchange for our corporate mail. One of the main reasons I got my iPhone 3G is so I read my work mail wherever I am without having to ask for a company Blackberry.
    However I may have made a mistake as I didn't realise how worried about security the firm is. I cannot set up ActiveSync for the life of me - it just says wrong password even when it is correct - and this may be because:
    1) The firm does not allow IMAP or POP access to Exchange
    2) I do not think they have ActiveSync activated on teh server and I cannot change this
    However, we do have Outlook Web Access (OWA) which I can access through a normal browser. In fact I can get this working on Safari but I have to enter the username/domain and password every single time which is unworkable. Therefore my question is:
    - Can I access work email through iPhone native email client, perhaps by utilising the Outlook Web Access (or finding a way to still use ActiveSync)?
    Thanks a lot for any help, I'm tearing my hair out here (in a newbie style of way)!!

    Unfortunately not, OWA using some fancy coding that means it will never store your password in your broswer. You have to type it in every time.
    Your only choice is to yell and scream at your IT department until they enable ActiveSync.
    Please note some key words that may help you achieve this goal:
    *Remote Wipe* - This allows, in the event of the phone been stolen, for the phone to be wiped remotely.
    *Limited Exposure via Limited Backdated Emails* - This means that if for any reason the person who stole your phone is smart enough to disable all internet access (WiFi, 3G, EDGE, GPRS) BEFORE turning (or the wipe command is issued) on the headset there will be a limited amount of mail in the box... the options are 1 day, 3 days, 1 week, 2 weeks, 1 month (default), no limit.
    And finally, *Increased Productivety* - You will be able to increase the produtivity of your working by getting mail on your phone.

  • Problem - acs command authorization and web access control

    Hi, I'm trying to add the control of some aironet 1310 bridges with a ACS 3.2 (tacacs+). I wanted to be able to do telnet command authorization restrictions trough shell command authorization sets and be able to give similar restrictive web access at the same time. I have it working if I permit some commands that are sent by the browser as "write memory quiet" and few other ones, but for it to work, I must give them limited users the privilege level 15 and by having the tacacs server authorizing the commands, it work for both, http and telnet. Where my problem begin is when I loose the connection with the ACS server, the user being already authenticated as level 15 user, the device become open to all commands; there is no more restriction applied by the ACS. Do anybody now a workaround.

    It is already at local, that is just that the user already have a level 15 access and I used to control the commands through level settings before. So when I try it, my user that is localy level 5 is already recognized as a level 15 user from when it was authenticated through the ACS. If I could find a way to give web access to the 1310 at priv level 5 and still controlling the command set, it would be ok but as soon as I try to access a page that is not permitted other way than by the view level (i think it's level 1... or 0), I get a username password prompt with that line on the top of it:"level_15_or_view_access" and the only way I can access it is by entering a level 15 un/pass. I attached my 1310 aaa config
    and here are the command set that work at level 15 to do a "shut" or "no shut" of the radio interface by the web interface:
    configure
    permit terminal
    exit
    permit Unmatched Args
    interface
    permit Dot11Radio0
    no
    permit shutdown
    permit cca
    ping
    permit Unmatched Args
    show
    permit Unmatched Args
    shutdown
    permit Unmatched Args
    telnet
    permit Unmatched Args
    write
    permit memory quiet
    Thanks for the help !

  • Remote Web Access using "UPN" or Email address

    Hi there, 
    I noticed this thread talks about the thing I would love to have. 
    http://social.technet.microsoft.com/Forums/en-US/4192a34b-d399-4aa4-8ee2-dc6a327cb952/server-error-in-remote-application-using-upn-to-log-on?forum=smallbusinessserver 
    I understand the SBS is designed for smaller, non-it specific, however most of the places that you do install are also limited so telling the when you use the RWA you use the "username" but when you log into Office365, you use your email address,
    it would be nice to have them all the same. 
    I see that from here you are able to modify the RDWeb. 
    http://msfreaks.wordpress.com/2013/12/29/step-by-step-customizing-rd-web-access-2012-r2/
    But I understand that the Essentials is an out of the box solution, so maybe nobody has wanted to try or to fix. 
    The first post mentions about a "Error" with RWA in 2011 and they still haven't found something for this?  As they did mention about looking into it, however, no solution, so I can't be the only person asking for this feature of consistency,
    as I know there are other out there. 
    Does anyone have any suggestion on how to enable this?   I swear that my Server Essentials 2012 this worked, as I tested it, so not sure what happen in R2.
    Kevin

    Hi Susan, 
    Thanks for the post.   
    Maybe I am the only person out there... I have a few of these in the field, and I hate telling people that you user your "Username" for RWA, but you use your Email address for Office365... 
    Not exactly what I was hoping for, as I'm sure that server 2012 allowed this functionality.  Because it was one of the first things I tested when
    I installed Server 2012-E, mainly because it's
    broke in SBS 2011.   I just wish it was more consistent that's all, especially when you are using Office365. 
    Kevin

  • Excel Web Access(An error has occurred.Please contact your system administrator if this problem persists. )

    I'm using share point 2007 under windows server 2008 R2(one web server, another db server).When I publish a excel(*.xlsx) to report library or view it in web browser with the same error as bellows:
    Excel Web Access
    An error has occurred.
    Please contact your system administrator if this problem persists.
    Please kindly support to guide how to fix it with bellow information in details such as log.Many thanks!
    1. The 12/logs file is as bellows:
    10/10/2014 09:53:55.18  w3wp.exe (0x6528)                        0x5C08 Excel Services               
     Excel Calculation Services     2u7d Medium   ExcelServerSharedWebApplication.Local: An exception was thrown by configdb infrastructure: System.InvalidOperationException: ExcelServerSharedWebApplication.Local: Could
    not get ServerContext.Current, which indicates that either SharePoint or the SSP infrastructure isn't provisioned correctly or that we're running outside of a web context.     at Microsoft.Office.Excel.Server.ExcelServerSharedWebApplication.get_Local(). 
    10/10/2014 09:53:55.18  w3wp.exe (0x6528)                        0x5C08 Excel Services               
     Excel Services Administration  8tqh Critical Excel Services: Unexpected exception while trying to access Shared Services Database;. Error = ExcelServerSharedWebApplication.Local: Could not get ServerContext.Current, which indicates that
    either SharePoint or the SSP infrastructure isn't provisioned correctly or that we're running outside of a web context.. 
    10/10/2014 09:53:55.18  w3wp.exe (0x6528)                        0x5C08 Excel Services               
     Excel Web Access               6nfi Unexpected InternalEwr.OpenWorkbook - An unexpected exception in the ECS Proxy occurred. Message: Microsoft.Office.Excel.Server.ExcelServerSettingException:
    An error has occurred. ---> System.InvalidOperationException: ExcelServerSharedWebApplication.Local: Could not get ServerContext.Current, which indicates that either SharePoint or the SSP infrastructure isn't provisioned correctly or that we're running
    outside of a web context.     at Microsoft.Office.Excel.Server.ExcelServerSharedWebApplication.get_Local()     --- End of inner exception stack trace ---     at Microsoft.Office.Excel.Server.ExcelServerSharedWebApplication.get_Local()    
    at Microsoft.Office.Excel.Server.ExcelServerSettings.get_Settings()     at Microsoft.Office.Excel.Server.ExcelServerSettings.get_EcsList()     at Microsoft.Office... 
    2.the event in event viewer is:
    Log Name:      Security
    Source:        Microsoft-Windows-Security-Auditing
    Date:          2014/10/10 9:49:43
    Event ID:      4625
    Task Category: Logon
    Level:         Information
    Keywords:      Audit Failure
    User:          N/A
    Computer:      ***.net
    Description:
    An account failed to log on.
    Subject:
     Security ID:  NULL SID
     Account Name:  -
     Account Domain:  -
     Logon ID:  0x0
    Logon Type:   3
    Account For Which Logon Failed:
     Security ID:  NULL SID
     Account Name:  ***
     Account Domain:  ***
    Failure Information:
     Failure Reason:  An Error occured during Logon.
     Status:   0xc000006d
     Sub Status:  0x0
    Process Information:
     Caller Process ID: 0x0
     Caller Process Name: -
    Network Information:
     Workstation Name: ***
     Source Network Address: ***
     Source Port:  63664
    Detailed Authentication Information:
     Logon Process:  
     Authentication Package: NTLM
     Transited Services: -
     Package Name (NTLM only): -
     Key Length:  0
    This event is generated when a logon request fails. It is generated on the computer where access was attempted.
    The Subject fields indicate the account on the local system which requested the logon. This is most commonly a service such as the Server service, or a local process such as Winlogon.exe or Services.exe.
    The Logon Type field indicates the kind of logon that was requested. The most common types are 2 (interactive) and 3 (network).
    The Process Information fields indicate which account and process on the system requested the logon.
    The Network Information fields indicate where a remote logon request originated. Workstation name is not always available and may be left blank in some cases.
    The authentication information fields provide detailed information about this specific logon request.
     - Transited services indicate which intermediate services have participated in this logon request.
     - Package name indicates which sub-protocol was used among the NTLM protocols.
     - Key length indicates the length of the generated session key. This will be 0 if no session key was requested.
    Event Xml:
    <Event xmlns="">
      <System>
        <Provider Name="Microsoft-Windows-Security-Auditing" Guid="{54849625-5478-4994-A5BA-3E3B0328C30D}" />
        <EventID>4625</EventID>
        <Version>0</Version>
        <Level>0</Level>
        <Task>12544</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8010000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-10T01:49:43.563436300Z" />
        <EventRecordID>37602685</EventRecordID>
        <Correlation />
        <Execution ProcessID="532" ThreadID="26096" />
        <Channel>Security</Channel>
        <Computer>***.net</Computer>
        <Security />
      </System>
      <EventData>
        <Data Name="SubjectUserSid">S-1-0-0</Data>
        <Data Name="SubjectUserName">-</Data>
        <Data Name="SubjectDomainName">-</Data>
        <Data Name="SubjectLogonId">0x0</Data>
        <Data Name="TargetUserSid">S-1-0-0</Data>
        <Data Name="TargetUserName">***</Data>
        <Data Name="TargetDomainName">***</Data>
        <Data Name="Status">0xc000006d</Data>
        <Data Name="FailureReason">%%2304</Data>
        <Data Name="SubStatus">0x0</Data>
        <Data Name="LogonType">3</Data>
        <Data Name="LogonProcessName">
        </Data>
        <Data Name="AuthenticationPackageName">NTLM</Data>
        <Data Name="WorkstationName">***</Data>
        <Data Name="TransmittedServices">-</Data>
        <Data Name="LmPackageName">-</Data>
        <Data Name="KeyLength">0</Data>
        <Data Name="ProcessId">0x0</Data>
        <Data Name="ProcessName">-</Data>
        <Data Name="IpAddress">***</Data>
        <Data Name="IpPort">63664</Data>
      </EventData>
    </Event>

    Hi Tracy,
    Have you changed something on your SharePoint 2007 environment recently before this issue occurred?
    This issue may be related to Alternate Access Mappings settings like the following similar post, if you have configured AAM, you can check if this issue happened to some URLs, if it's the case, please add the problematic URLs as a Publish URLs for the default
    zone for your web application, and also add these URLs as trusted locations, then check results again.
    If above doesn't work, please enable ULS log on verbose level to get more useful log errors which time are corresponding to the errors occur. 
    https://social.technet.microsoft.com/Forums/en-US/c9ab4818-65c9-444d-be50-1bfed1f1509b/excel-web-access-web-part-works-on-intranet-but-not-internet?forum=sharepointgenerallegacy
    http://blog.bugrapostaci.com/2011/09/08/how-to-enable-verbose-log-mode-on-moss-2007/
    Thanks
    Daniel Yang
    TechNet Community Support

  • Can no longer connect to a Microsoft Outlook Web Access site

    Hi,
    I hope you can help.
    I used to be able to access a Microsoft Outlook Web Access site. However recently I am unable to do so. It has a self signed certificate, which I used to choose to accept, and then the browser waits and waits and waits.
    I have tried Safari, Firefox, Camino, Flock, Opera, even Internet Explorer. They all behave the same way.
    I am not sure when it stopped working. I only log on infrequently. So I do not know if it stopped working after a security update or an OS upgrade.
    My Mac is up to date with software updates. I have performed the usual things, repaired permissions etc.
    The funny thing is I can connect using Netscape Comunicator under Classic. I have also borrowed a friend's MacBook running leopard, and that works too.
    I am wondering if a setting somewhere has become corrputed or inadvertently set incorrectly.
    Thank you in anticipation.
    Ted

    Hi Bryan,
    Thanks for your input.
    Unfortunately I cannot get any of the OS X browsers I have tried to get beyond the accepting the site's certificate. All just stall waiting on the Outlook Web Access site. Safari 3.1, Camino, Flock, Firefox (2.0.0.12 and 3 beta 4), Netscape (7.1 and 9), Microsoft's Internet Explorer (thinking that might be more integrated with its Outlook Web Access package).
    I have even deleted the certificates from my Keychain (for Safari) or within the other browsers' preferences.
    Last night I even re-applied the 10.4.11 combo updater and then checked for software updates to confirm my system was up to date, but again without success when attempting to reach the Outlook Web Access site.
    Thanks anyway.
    Ted

Maybe you are looking for

  • Complaints

    January 17th I purchased a deep freeze for my mom. It was suppose to be delivered on January 23rd. The money was taken out of my bank and everything. I called today the 23rd to see where is was at, and at first it showed to be scheduled between 1:30

  • Jax-ws: dynamic proxy-suppress weblogic's default ws-policy handling

    hi all, i am writing my own jax-ws client (dynamic proxy) to call a web service, secured by usernametoken profile. the wsdl of the web service do include the ws-policy information. sample client side code: URL url = new URL("path_to_wsdl_file"); QNam

  • HT1657 I am unable to play movie, I touch play, the screen goes black but nothing happens???

    unable to get movie to start??

  • Auto Create Track in Cycle Record NOT disengaging??

    I was using Auto Create Track in Cycle Record, in the song settings recording menu, for multiple audio voice overs. Now that I want to record without this function, it is not deactivating when I disengage the selection in the song settings recordings

  • Thumbnail size

    Hi, Is there a way to make the thumbnails larger beyond the slider max size. My eyes ain't so good, and it would be nice to have them larger. Cheers, Michael