Create web application in powershell using existing app pool

Hi all,
I am trying to create a web application with this script:
https://gallery.technet.microsoft.com/office/Create-SharePoint-2013-1d7c3337
The problem is that I want to use an existing app pool, but when I do I get this error:
Aborting: Application Pool SharePoint - Applications already exists on the server and is not a SharePoint Application Pool
Obviously this is wrong, since I use this app pool for most of my web apps.
So how does one go about creating a web app in powershell with an already existing app pool?
-Michael
mic

try these links:
http://sharepoint.stackexchange.com/questions/81297/creating-a-webapp-via-powershell-is-mapping-the-site-to-wrong-apppool
http://blogs.technet.com/b/fromthefield/archive/2014/03/26/create-a-sharepoint-application-pool-using-powershell.aspx
http://blogs.msdn.com/b/rcormier/archive/2012/09/01/how-to-create-sharepoint-web-applications-with-powershell.aspx
Please mark answer as correct if it is correct else vote for it if you find it useful Happy SharePointing

Similar Messages

  • Not able to create web application using central admin UI

    We are trying to create web application using central admin UI. but its throwing error.
    Then we tried to create it using powershell but it getting too much time(around 3 hrs) to provision web app on wfe.
    We have around 60 application and farm is virtual.
    Please help us on this.
    Thanks in advance.

    I ran a WSSv3 farm with >60 Web Applications, on a 32bit system no less (careful design of IIS Application Pools was required back then). This isn't impossible to do, but you do need to provide the error in the ULS log and the specifications of your
    virtual environment.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Launch All Web Applications in browser using PowerShell

    Hi Admins,
    I am working on a Script where I should be able to launch all the web applications in the browser to open in tabs.
    I have worked out with the following script and was able to come upto an extent where I am able to launch the Internet Explorer.But ....only 1 web app opens up and throws an error message :
    Exception calling "Navigate" with "1" argument(s): "The interface is unknown. (Exception from HRESULT: 0x800706B5)"
    Below is my script
    Add-PSSnapin Microsoft.sharepoint.powershell -ErrorAction SilentlyContinue
    $webApps = Get-SpWebapplication
    foreach($webapp in $WebApps){
    $URL = $webapp.URL
    $ie = New-Object -ComObject InternetExplorer.Application
    $ie.Navigate($URL)
    while ($ie.busy -eq $true) {
    Start-Sleep -Milliseconds 600
    $ie.Visible = $true
    Can anyone help me know where I am making the mistake ?
    Regards

    Hi,
    As I understand, you want to lunch all web applications in browser using PowerShell.
    I can achieve it by the PowerShell code below:
    foreach($webapp in $WebApps){
    $ie = New-Object -ComObject InternetExplorer.Application
    $URL = $webapp.URL
    $ie.Navigate($URL)
    $ie.Visible = $true
    You can try it and check it if can work.
    For the error message, I recommend to run the SharePoint Management Shell as administrator or turn off User Access Control and then check how it works.
    Best regards
    Sara Fan
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]
    The above code will open 3 different browser. OP requested to launch all web application in different tabs. To achieve this we need to use the code below
    $webApps = Get-SpWebapplication
    $ie = New-Object -ComObject InternetExplorer.Application
    $ie.Navigate($webApps[0].URL)
    for($i=1; $i -le $WebApps.length-1; $i++)
    $ie.Navigate2($WebApps[$i].URL,0x10000)
    $ie.Visible = $true
    Regards Chen V [MCTS SharePoint 2010]

  • Error in creating web application through power shell

    hi,
     i have taken the  ps script from the  below url :
    credits to Roger  :
    http://blogs.msdn.com/b/rcormier/archive/2012/09/01/how-to-create-sharepoint-web-applications-with-powershell.aspx
    http://gallery.technet.microsoft.com/Create-SharePoint-Web-742a8fb9
    But when i am running the script, i am getting many errors:
    Note: i am not using appln pool account password [as i dont know the password]
    want to know whether  this paramter is necessary.
    $ver = $host | select version
    if($Ver.version.major -gt 1) {$Host.Runspace.ThreadOptions = "ReuseThread"}
    if(!(Get-PSSnapin Microsoft.SharePoint.PowerShell -ea 0))
    Write-Progress -Activity "Loading Modules" -Status "Loading Microsoft.SharePoint.PowerShell"
    Add-PSSnapin Microsoft.SharePoint.PowerShell
    Write-Progress -Activity "Creating Web Application" -Status "Setting Variables"
    #Set Individual Web App Variables
    #This is the Web Application URL
    $WebApplicationURL = "http://mysrvr:2020/"
    #This is the Display Name for the SharePoint Web Application
    $WebApplicationName = "myweb1"
    #This is the Content Database for the Web Application
    $ContentDatabase = "myContentDB"
    #Set Common Variables
    #This is the Display Name for the Application Pool
    $ApplicationPoolDisplayName = "mapppool2020"
    #This is identity of the Application Pool which will be used (Domain\User)
    $ApplicationPoolIdentity = "mydomain\myidd"
    #This is the password of the Appliation Pool account which will be used
    #$ApplicationPoolPassword = "Pass@word1"
    #This is the Account which will be used for the Portal Super Reader Account
    $PortalSuperReader = "i:0#.w|in\hariharan.venugopalk"
    #This is the Account which will be used for the Portal Super User Account
    $PortalSuperUser = "i:0#.w|in\spinstall.dev"
    Write-Progress -Activity "Creating Web Application" -Status "Loading Functions"
    #Create Functions
    Function CreateClaimsWebApp($WebApplicationName, $WebApplicationURL, $ContentDatabase, $HTTPPort)
        #AppPoolUsed is set when calling the ValidateAppPool function. This will be true if the application pool is already running SharePoint web appplications
        #If the application pool is already being used in web applications, the syntax for New-SPWebApplication changes
        if($AppPoolUsed -eq $True)
            #Create the web application, assign it to the WebApp variable.  The WebApp variable will be used to set object cache user accounts
            Write-Progress -Activity "Creating Web Application" -Status "Using Application Pool With Existing Web Applications"
            Set-Variable -Name WebApp -Value (New-SPWebApplication -ApplicationPool $ApplicationPoolDisplayName -Name $WebApplicationName -url $WebApplicationURL -port $HTTPPort -DatabaseName $ContentDatabase -HostHeader $hostHeader
    -AuthenticationProvider (New-SPAuthenticationProvider)) -Scope Script
            #Call the SetObjectCache function, which sets the object cache.
            Write-Progress -Activity "Creating Web Application" -Status "Configuring Object Cache Accounts"
            SetObjectCache
        else
            #Create the web application, assign it to the WebApp variable.  The WebApp variable will be used to set object cache user accounts
            Write-Progress -Activity "Creating Web Application" -Status "Using Application Pool With No Existing Web Applications"
            Set-Variable -Name WebApp -Value (New-SPWebApplication -ApplicationPool $ApplicationPoolDisplayName -ApplicationPoolAccount $AppPoolManagedAccount.Username -Name $WebApplicationName -url $WebApplicationURL -port $HTTPPort
    -DatabaseName $ContentDatabase -HostHeader $hostHeader -AuthenticationProvider (New-SPAuthenticationProvider)) -Scope Script
            #Call the SetObjectCache function, which sets the object cache.
            Write-Progress -Activity "Creating Web Application" -Status "Configuring Object Cache Accounts"
            SetObjectCache
    Function ValidateURL($WebApplicationURL)
        #Find out if a web application with the target URL exists
        if(get-spwebapplication $WebApplicationURL -ErrorAction SilentlyContinue)
            #If a web application with the specifid URL already exists, wait 5 seconds and exit
            Write-Progress -Activity "Creating Web Application" -Status "Aborting Process Due To URL Conflict"
            Write-Host "Aborting: Web Application $WebApplicationURL Already Exists" -ForegroundColor Red
            sleep 5
            #Setting the CriticalError value to $True results in the script to not create anything
            Set-Variable -Name CriticalError -Value $True
        #If the WebApplicationURL passed is not already a SharePoint web application, find out if it starts with HTTP or HTTPS
        elseif($WebApplicationURL.StartsWith("http://"))
                #If the string starts with http://, and not https://, trim the protocol from the URL.  Set the host as the host header
                Set-Variable HostHeader -Value ($WebApplicationURL.Substring(7)) -Scope Script
                #If we're using HTTP, use port 80
                Set-Variable -Name HTTPPort -Value "80" -Scope Script
            elseif($WebApplicationURL.StartsWith("https://"))
                #If the string starts with https://, and not http://, trim the protocol from the URL.  Set the host as the host header
                Set-Variable HostHeader -Value ($WebApplicationURL.Substring(8)) -Scope Script
                #If we're using HTTPS, use port 443
                Set-Variable -Name HTTPPort -Value "443" -Scope Script
    Function ValidateAppPool($AppPoolName, $WebApplicationURL)
        #Change the ErrorActionPreference to SilentlyContinue while preserving the original value in a temporary variable
        #Failing to do this will result in error messages being displayed if Get-WebAppPoolState does not return an object.  The script would still continue
        $CurrentErrorActionPreference = $ErrorActionPreference
        $ErrorActionPreference = "SilentlyContinue"
        #Check to see if an application pool with the name passed by the AppPoolName variable already exists, assign this to a variable.
        #This variable will be used in order to determine if the application pool exists, but is not part of SharePoint
        $TestAppPool = Get-WebAppPoolState $AppPoolName
        #If we have a SharePoint application pool with the value passed by the AppPoolName variable, find out if there are any sites using that app pool
        #This changes the syntax used with New-SPWebApplication
        if(Get-SPServiceApplicationPool $AppPoolName)
            #Return all application pools used by all web applications
            $AppPools = Get-SPWebApplication | select ApplicationPool
            #Providing there is more than one application pool, find out what their names are
            if($AppPools)
                foreach($Pool in $AppPools)
                    #Get The application pool display name for each application pool returned
                    [Array]$Poolchild = $Poolchild += ($Pool.ApplicationPool.DisplayName)
                    #If any application pool matches the value passed by ApplicationPoolDisplayName, set AppPoolUsed to True
                    #This is referenced in the CreateClaimsWebApp function
                    if($Poolchild.Contains($ApplicationPoolDisplayName))
                        Set-Variable -Name AppPoolUsed -Value $True -Scope Script
                    #If the application pool display name does not match the value passed by ApplicationPoolDisplayName, set AppPoolUsed to False
                    #This is referenced in the CreateClaimsWebApp function
                    else
                        Set-Variable -Name AppPoolUsed -Value $False -Scope Script
            #Since this is a SharePoint Application Pool, set the AppPool value to the the SPServiceApplicationPool object returned
            Set-Variable -Name AppPool -Value (Get-SPServiceApplicationPool $AppPoolName) -scope Script
            #Set the AppPoolManagedAccount variable to the name of the managed acount used by the application pool returned
            #AppPoolManagedAccount is used in the CreateClaimsWebApp function if the application pool does not have existing web applications that are using it
            Set-Variable -Name AppPoolManagedAccount -Value (Get-SPManagedAccount | ? {$_.username -eq ($AppPool.ProcessAccountName)}) -scope Script
        #Check to see if the application pool is in IIS, but is not a SharePoint app pool
        elseif($TestAppPool)
            #If the application pool exists in IIS and is not a SharePoint application pool, abort the script by setting CriticalError to True
            Write-Host "Aborting: Application Pool $AppPoolName already exists on the server and is not a SharePoint Application Pool `n`rWeb Application `"$WebApplicationURL`" will not be created" -ForegroundColor
    Red
            Set-Variable -Name CriticalError -Value $True
        #If it's not a SharePoint app pool, and it doesn't exist in IIS, we have to create one
        elseif(!($TestAppPool))
            #Find out if a managed account exists by calling the ValidateManagedAccount function
            validateManagedAccount $ApplicationPoolIdentity
            #If the managed account exists, create an application pool using the existing managed account
            if($ManagedAccountExists -eq $True)
                #Set the AppPoolManagedAccount to the identity of the managed acocunt referenced by the ApplicationPoolIdentity variable
                Write-Host "Creating New App Pool using Existing Managed Account"
                Set-Variable -Name AppPoolManagedAccount -Value (Get-SPManagedAccount $ApplicationPoolIdentity | select username) -scope "Script"
                #Create a new SPServiceApplicationPool, assign that to the AppPool variable
                Set-Variable -Name AppPool -Value (New-SPServiceApplicationPool -Name $ApplicationPoolDisplayName -Account $ApplicationPoolIdentity) -scope "Script"
            #If there is no managed account matching the account referenced by the ApplicationPoolIdentity, create it
            else
                #Use the ApplicationPoolIdentity and ApplicationPoolPassword to create a credential object
                #This is necessary when creating a new managed account
                Write-Host "Creating New Managed Account And App Pool"
                $AppPoolCredentials = New-Object System.Management.Automation.PSCredential $ApplicationPoolIdentity, (ConvertTo-SecureString $ApplicationPoolPassword -AsPlainText -Force)
                #Create a new managed account, assign that to the AppPoolManagedAccount variable
                Set-Variable -Name AppPoolManagedAccount -Value (New-SPManagedAccount -Credential $AppPoolCredentials) -scope "Script"
                #Create a new application pool using the new managed account, assign this to the AppPool variable
                Set-Variable -Name AppPool -Value (New-SPServiceApplicationPool -Name $ApplicationPoolDisplayName -Account (get-spmanagedaccount $ApplicationPoolIdentity)) -scope "Script"
        #Return the ErrorActionPreference to the default value
        $ErrorActionPreference = $CurrentErrorActionPreference
    Function ValidateManagedAccount($ApplicationPoolIdentity)
        #Find out if the manage account referenced by the AppPoolIdentity already exists
        #If it does, set ManagedAccountExists to True
        if(Get-SPManagedAccount $ApplicationPoolIdentity -ErrorAction SilentlyContinue)
            Set-Variable -Name ManagedAccountExists -Value $True -Scope Script
        #If it does not, set ManagedAccountExists to False
        else
            Set-Variable -Name ManagedAccountExists -Value $False -Scope Script
    Function ClearScriptVariables
        #Set the ErrorActionPreference to SilentlyContinue
        #If this is not set, and the script variables referenced have not been set, an error message will be returned.  The script would still continue
        $CurrentErrorActionPreference = $ErrorActionPreference
        $ErrorActionPreference = "SilentlyContinue"
        #Remove the CriticalError variable
        Remove-Variable $CriticalError -ErrorAction SilentlyContinue
        $ErrorActionPreference = $CurrentErrorActionPreference
    Function SetObjectCache
        #Set object cache user account properties based on the value of the parameters supplied
        $WebApp.Properties["portalsuperuseraccount"] = $PortalSuperUser
        $WebApp.Properties["portalsuperreaderaccount"] = $PortalSuperReader
        #Create a New Policy for the Super User
        $SuperUserPolicy = $WebApp.Policies.Add($PortalSuperUser, "Portal Super User Account")
        #Assign Full Control To the Super User
        $SuperUserPolicy.PolicyRoleBindings.Add($WebApp.PolicyRoles.GetSpecialRole([Microsoft.SharePoint.Administration.SPPolicyRoleType]::FullControl))
        #Create a New Policy for the Super Reader
        $SuperReaderPolicy = $WebApp.Policies.Add($PortalSuperReader, "Portal Super Reader Account")
        #Assign Full Read to the Super Reader
        $SuperReaderPolicy.PolicyRoleBindings.Add($WebApp.PolicyRoles.GetSpecialRole([Microsoft.SharePoint.Administration.SPPolicyRoleType]::FullRead))
        #Commit these changes to the web application
        $WebApp.Update()
    #Script
    #Call the ClearScriptVariables function to empty out varialbes that should be blank when the script executes.
    ClearScriptVariables
    #Validate the URL passed by calling the ValidateURL function
    Write-Progress -Activity "Creating Web Application" -Status "Validating Web Application URL Variables"
    ValidateURL $WebApplicationURL
    #Validate the application pool variables by calling the ValidateAppPool function
    Write-Progress -Activity "Creating Web Application" -Status "Validating Application Pool Variables"
    ValidateAppPool $ApplicationPoolDisplayName $WebApplicationURL
    #As long as CriticalError has not been set, create the web application using the variables passed.
    if(!($CriticalError))
    Write-Progress -Activity "Creating Web Application" -Status "Creating Claims-Based Web Application"
    CreateClaimsWebApp $WebApplicationName $WebApplicationURL $ContentDatabase $HTTPPort
    error  is thrown below:
    deployment
    S D:\myworkspace\bif> iisreset
    ttempting stop...
    nternet services successfully stopped
    ttempting start...
    nternet services successfully restarted
    S D:\myworkspace\bif> .\CreateSP2013ClaimsWebApplication.ps1
    reating New Managed Account And App Pool
    ew-SPWebApplication : "mysrvr:2020/" contains invalid character ':'.
    t D:\myworkspace\bif\CreateSP2013ClaimsWebApplication.ps1:68 char:43
             Set-Variable -Name WebApp -Value (New-SPWebApplication
    ApplicationPool  ...
     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~
       + CategoryInfo         
    : InvalidData: (Microsoft.Share...PWebApplication:
      SPCmdletNewSPWebApplication) [New-SPWebApplication], ArgumentException
       + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletNewSPWeb
      Application
    annot index into a null array.
    t D:\myworkspace\bif\CreateSP2013ClaimsWebApplication.ps1:235 char:5
         $WebApp.Properties["portalsuperuseraccount"] = $PortalSuperUser
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
       + CategoryInfo         
    : InvalidOperation: (:) [], RuntimeException
       + FullyQualifiedErrorId : NullArray
    cannot index into a null array.
    t D:\myworkspace\bif\CreateSP2013ClaimsWebApplication.ps1:236 char:5
         $WebApp.Properties["portalsuperreaderaccount"] = $PortalSuperReader
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
       + CategoryInfo         
    : InvalidOperation: (:) [], RuntimeException
       + FullyQualifiedErrorId : NullArray
    ou cannot call a method on a null-valued expression.
    t D:\myworkspace\bif\CreateSP2013ClaimsWebApplication.ps1:239 char:5
         $SuperUserPolicy = $WebApp.Policies.Add($PortalSuperUser, "Portal Super
    ser ...
     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~
       + CategoryInfo         
    : InvalidOperation: (:) [], RuntimeException
       + FullyQualifiedErrorId : InvokeMethodOnNull
    ou cannot call a method on a null-valued expression.
    t D:\myworkspace\bif\CreateSP2013ClaimsWebApplication.ps1:242 char:5
    SuperUserPolicy.PolicyRoleBindings.Add($WebApp.PolicyRoles.GetSpecialRole([
     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~
       + CategoryInfo         
    : InvalidOperation: (:) [], RuntimeException
       + FullyQualifiedErrorId : InvokeMethodOnNull
    ou cannot call a method on a null-valued expression.
    t D:\myworkspace\bif\CreateSP2013ClaimsWebApplication.ps1:245 char:5
         $SuperReaderPolicy = $WebApp.Policies.Add($PortalSuperReader, "Portal
    uper  ...
     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~
       + CategoryInfo         
    : InvalidOperation: (:) [], RuntimeException
       + FullyQualifiedErrorId : InvokeMethodOnNull
    ou cannot call a method on a null-valued expression.
    t D:\myworkspace\bif\CreateSP2013ClaimsWebApplication.ps1:248 char:5
    SuperReaderPolicy.PolicyRoleBindings.Add($WebApp.PolicyRoles.GetSpecialRole
     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~
       + CategoryInfo         
    : InvalidOperation: (:) [], RuntimeException
       + FullyQualifiedErrorId : InvokeMethodOnNull
    ou cannot call a method on a null-valued expression.
    t D:\myworkspace\bif\CreateSP2013ClaimsWebApplication.ps1:251 char:5
         $WebApp.Update()
         ~~~~~~~~~~~~~~~~
       + CategoryInfo         
    : InvalidOperation: (:) [], RuntimeException
       + FullyQualifiedErrorId : InvokeMethodOnNull

    Hi Benjamin,
    If you're getting a Null Value error anywhere, that means a variable you're referencing isn't set to anything. If you're getting that try echoing out each variable after it's assigned to see if it's set to anything.
    The link you are referring is for SharePoint 2010 and verified on Windows Server 2008 R2 and 2008, but not Windows Server 2012.
    The approach in this case includes the following per the blog:
    Check to see if a web application with the current specified URL is already in use – exit if it is
    Check to see if an application pool with the name already exists. If so use it, otherwise create one
    Create a web application based on the parameters specified
    Assign the object cache properties to the new web application
    Create policies for the object cache users to the web application
    To simplified the code, we could use powershell below to check if web application and application pool have been already in use ahead. And skip the last two steps in the first time.
    Get-SPWebApplication | fl displayname, applicationpool
    Please refer to New-SPWebApplication
    which is used to create a new web application within the local farm:
    http://technet.microsoft.com/en-us/library/ff607931(v=office.15).aspx. Only two parameters i.e. ApplicationPool and Name are required, we could try a simple command at first:
    Please run Get-SPManagedAccount to check the managed account, then execute the command below:
    $ap = New-SPAuthenticationProvider
    New-SPWebApplication -Name "Contoso Internet Site" -Port 2014 -ApplicationPool "ContosoAppPool" -ApplicationPoolAccount (Get-SPManagedAccount "Domain\Administrator")
     -AuthenticationProvider $ap -SecureSocketsLayer
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Error While create web application

    When I try to create new web application on my server it return error as the Virtual directory already in use. For example if I create the web application in 9090 port means it shown the error the virtual directory 9090 was already used by other application
    . but I am sure there are no site in the directory. I am try with 3 or 4 different port same problem. I have try to create web application with host header and without host header also same problem was occur.
    Any Suggestion? Thanks in advance
    Ravin Singh D

    Hi Ravin,
    According to your description, my understanding is that you got an error when you create a new web application.
    Please log on the server with administrator account.
    And please check the followings:
    Ensure you have a proper dns name / entry in the hosts file of your server for the new url you are wanting to create.
    Ensure you have typed in the ‘host header’ typed in when creating the new web application.
    If this doesnt work, open IIS Manager – Start>run> inetmgr> and verify the home directory – it could be located on a different drive.
    More information:
    http://www.jeremytaylor.net/2010/01/13/the-directory-cinetpubwwwrootwssvirtualdirectories80-is-already-being-used-by-another-iis-web-site-choose-a-different-root-directory-for-your-new-web-application/
    If this issue still exists, please check the log file to find more information about this issue. The path of the file is: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS.
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • HT1665 There is a bug in the spellchecking functionality when typing in the web view or while using Blogsy App. Why? Why my IPad crashes so often?

    There is a bug in the spellchecking functionality when typing in the web view or while using Blogsy App. Why? Why my IPad crashes so often?

    I have always found spell check to be "buggy" in every version of all of the iOS's that I have run on my original model iPad and my new iPad - especially when replying and typing posts in these forums. It works perfectly in every other application on my iPad but it has never worked perfectly in any web browser that I have used on my iPad - no matter what I have done to try to correct it. That is what MY experience has been with spell check on my iPads.
    As for the crashes on your iPad try these basic troubleshooting steps.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    Quit all apps and restart. Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • Need help in creating WEB application....

    Hi
    I Created WEB application using jsp,java classes.
    I kept All jsp files and classes in web-inf classes folder and created a war file and deployed that one in WEBLOGIC 7.0. I need to start a class while starting the server. I configured the startup classes using weblogic console.Now i am getting classnotfound exception while running the server saying that the startup class is not found. Is it necessay to set classpath to the classes which are under war file.If yes please give me an idea how to set classpath to a file which is under war/web-inf/classes/..
    Any help will be appreciated.
    Regards
    Anand Mohan

    Not sure about Weblogic, but in general you add the entire path to your classpath. For Windows 2000 servers -> Control Panel -> System -> Advanced Tab -> Env Variables
    Example from simle Tomcat install:
    CLASSPATH
    C:\Jakarta\jakarta-tomcat-4.1.18\common\lib\servlet.jar;C:\Jakarta\jakarta-tomcat-4.1.18\webapps\myApp\WEB-INF\lib\classes12.jar;C:\Jakarta\jakarta-tomcat-4.1.18\webapps\myApp\WEB-INF\classes\com\brainysoftware\java\StringUtil.jar

  • Is there a way to create a toll free number using an app?

    Is there a way to create a toll free number using an app?

    I guess if you owned your own network you could. But, if you owned the network, you wouldn't need an app. Otherwise, how do you think you're gonna just create a "toll free number"?

  • Error occured when I create Web Application by SharePoint 2013

    SharePoint 2013 can not create Web Application.
    The ULS log contains tons of the below error.
    Does anyone know how to fix those Process errors?
    Process: w3wp.exe (0x0EE4)
    Product: Web Content Management
    Category: Publishing Cache
    Level: Unexpected
    Message: SPReaderWriterLock named [Process Context Lock] held for 1438 milliseconds.
    Call stack:   
     in Microsoft.SharePoint.Utilities.SPReaderWriterLock.SPReaderWriterLockScope.Dispose()   
     in Microsoft.SharePoint.SPProcessContext.Get[T]()
     in Microsoft.SharePoint.Administration.SPConfigurationDatabase.get_Farm()
     in Microsoft.SharePoint.Administration.SPFarm.FindLocal(SPFarm& farm, Boolean& isJoined)
     in Microsoft.SharePoint.Administration.SPServiceApplication.get_Current()
     in Microsoft.SharePoint.SPServiceHostOperations.Configure(ServiceHostBase serviceHost, SPServiceAuthenticationMode authenticationMode)
     in Microsoft.SharePoint.Taxonomy.MetadataWebServiceHostFactory.CreateServiceHost(String constructorString, Uri[] baseAddresses)
     in System.ServiceModel.ServiceHostingEnvironment.HostingManager.CreateService(String normalizedVirtualPath, EventTraceActivity eventTraceActivity)
     in System.ServiceModel.ServiceHostingEnvironment.HostingManager.ActivateService(ServiceActivationInfo serviceActivationInfo, EventTraceActivity eventTraceActivity)
     in System.ServiceModel.ServiceHostingEnvironment.HostingManager.EnsureServiceAvailable(String normalizedVirtualPath, EventTraceActivity eventTraceActivity)
     in System.ServiceModel.ServiceHostingEnvironment.EnsureServiceAvailableFast(String relativeVirtualPath, EventTraceActivity eventTraceActivity)
     in System.ServiceModel.Activation.HostedHttpRequestAsyncResult.HandleRequest()
     in System.ServiceModel.Activation.HostedHttpRequestAsyncResult.BeginRequest()
     in System.ServiceModel.Activation.HostedHttpRequestAsyncResult.OnBeginRequest(Object state)
     in System.Runtime.IOThreadScheduler.ScheduledOverlapped.IOCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* nativeOverlapped)
     in System.Runtime.Fx.IOCompletionThunk.UnhandledExceptionFrame(UInt32 error, UInt32 bytesRead, NativeOverlapped* nativeOverlapped)
     in System.Threading._IOCompletionCallback.PerformIOCompletionCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* pOVERLAP)       

    Hi RuiHigashiyama,
    Do you find a solution for this issue?
    If yes, please share the solution, it will be beneficial to others in this forum who meet the same issue in the future.
    Best Regrads,
    Wendy
    Wendy Li
    TechNet Community Support

  • Bex Web application "2" does not exist

    Folks,
    We are getting this error :
    <i><b>Bex Web application "2" does not exist . The application was either ended by a timeout  or an error occured , which was entered into the trace log</b></i>
    Please advise
    Thanks,
    Manish

    This happens during a session timeout or error.
    You can login back and it should work.

  • MDS Configuration Manager Create Web Application = Unexpected Error, Keyset does not exist (HRESULT: 0x80090016)

    we are having Problems installing MDS on new sever.
    Server: Windows 2008 R2
    SQL Server 2012 SP1 (Developer Edition)
    In the Master Data Services Configuration Manager Wizard ...
    - DB Creation (Database Configuration) was succesfull
    - But we are stucked in the "Web Configuration", "Create Application" failes in both cases (Choose "Create new Website" or choose existing site like "Default Web Site")
    Error Message is alwasy:
    Unexpected Error - An unexpected error occurred: Keyset does not exist (Exception from HRESULT: 0x80090016)
    Any ideas? Are there any Extended logs created by Wizard activity? Windows Application Eventlog Shows nothing!

    Hi,
    Just a gut feel. The issue may lie within IIS. I base this upon the fact that your database was created. The second part, the web configuration  is related to IIS. SQL Server 2012 should be set up with IIS7 or better still IIS8.
    This said..
    Is IIS installed correctly? You can always de-install it and re-install it via the programs / windows features option off of the control panel.
    Out of curiosity, did you by any chance have a previous 'bad install' of MDS. If so this may be a registry issue. When one starts talking 'Keyset', the registry comes to mind. A orphan keyset which is being called.
    Also remember that in setting up the web application, that the installation will ask you for a User ID and password. If you are like us, our passwords change each 6 weeks and this create problems with bringing up the Master Data Manager AFTER a password
    change. In fact I have often resorted to creating a 'new web site' with each password change BEFORE I decided to opt for using a Process ID, with an non expiring password to do your web configuration.
    I do not know if I have answered your question, just a gut feel. Please do let us know if the steps that I mentioned resolve your issue.
    Sincerest regards
    Steve Simon SQL Server MVP

  • Adding a secure, internal-only SharePoint Web application / Site collection in existing farm

    Hi,
    We are currently working on creating a new internal-only SharePoint site that will host sensitive information. We are planning the architecture to provide a secure environment to host this information in SharePoint. We will create the new web app on a separate
    database with encryption enabled TDE; we are also planning to encrypt the data through the SharePoint (Insert third-party vendor here) forms before it gets to the SP DB. And obviously, SharePoint permissions will be set accordingly.
    Additionally, we would like to have the site accessible
    only through our internal network and keep it off the DMZ.
    Our current SharePoint environment consists of two web-front end servers (load-balanced) externally exposed (DMZ), one application server and the SQL server both behind the DMZ (internal-only). Currently all of our SharePoint web apps are accessible externally
    through SSL.
    What is the best way to accomodate this new internal-only web application within our existing farm providing the security measures explained before?
    I am thinking  on adding an extra WFE server to the existing farm and put it behind the DMZ (internal-only) in a similar way as our application server is configured right now, but just serving exclusively this new internal site's content. I would then
    have the NEtwork guys to make the site accessible only to users logged-in internally in our network and through this new dedicated server only. My concern is that since all of our other web apps in the farm are exposed externally, and since the new server
    would be part of the same farm, that could be open doors for bad guys to access this information. Are there any other topology options I should consider? I have thought about creating a small (one-server only) new farm just for this purpose, but I am trying
    to avoid going that route.
    Any thoughts?
    Thank you,
    Rob

    You're mostly going down the right track.
    A new web application in dedicated SQL DB and web application policies to deny all external accounts access to the sites will go a long way. You can also make sure that the DNS does not resolve externally.
    If you want security you will probably be building the web application on https alone, which is my preference for any farms these days. That might negate the need for your encrypted infopath system.
    However you cannot add a WFE to a farm and dedicate a web app soley to that server. Any server with the SharePoint Foundation Web Application role will host all web applications. You can steer traffic to one
    server or another but that's not really doing much for security. If it's on one WFE it's on them all. For that reason I would say that the standalone farm is the best, most secure, solution.
    All of what you've been describing will help with security but you'll have to spend hours testing connections, securing files and testing testing testing.  Whilst the standalone will just work.
    No, i don't know why that turned into tiny print either.

  • While creating web application prokect getting error: The system cannot find the file specified. (Exception from HRESULT: 0x80070002)

    I am getting error on creating even the empty web application project. The error message is as given below:
    The system cannot find the file specified. (Exception from HRESULT: 0x80070002)
    I am using following build of Visual Studio:
    Visual Studio Professional 2013. Version 12.0.30723.00 Update 3
    Looks like it is the problem with the installation of the visual studio. But I can't take risk of re-installing now because it would stop my going on development work.
    Any would help to resolve this would be appreciated.
    P.S. I am also having Visual Studio 2010 and Visual Studio 2012 Ultimate on my system.
    Regards, Randeep

    Hello Randeep,
    Will you get the same error when creating any other apps, like C# WinForm?
    If only web application project has the problem, you can try the following to reset the templates:
    Please open Windows Explorer, and navigate to  <Visual Studio Installation Path>\Common7\IDE (by default is C:\Program Files \Microsoft Visual Studio 12.0\Common7\IDE);
    Delete the ItemTemplatesCache, ProjectTemplatesCache folder;
    Open Visual Studio Tools/Developer Command Prompt for VS2013
    under Start menu -> All Programs -> Microsoft Visual Studio 2013 -> Visual Studio Tools (run it with Administrator privilege: right-click the program -> Run as administrator);
    Run the devenv /InstallVSTemplates switch;
    Run the devenv /Setup switch
    If all your projects get this error, please try repair the installaiton from control panel first. By the way, can you use Visual Studio Web projects before you get this error? And have you tried to use the Visual Studio Update 4, I see you still used
    Update 3, is there any reason for you to still use the Update 3 version?
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error when creating Web Application

    We have a 2 server farm connecting to a SQL cluster.  Servers 1 and 2 are web Front Ends.  When I want create in central admin a new web app  I get the following error.  It actually creates the content DB and I can see new web app in
    central admin but in IIS folder of this web site is empty - no files, no any folders inside.  
    I'll be grateful
    for the help.
    02/03/2014 10:27:37.38     w3wp.exe (0x0CFC)                           0x1E18    SharePoint Foundation       
         Monitoring                        nasq    Medium      Entering monitored scope (Request
    (GET:http://tstwfe1:8000/systemsettings.aspx))    
    02/03/2014 10:27:37.38     w3wp.exe (0x0CFC)                           0x1E18    SharePoint Foundation       
         Logging Correlation Data          xmnv    Medium      Name=Request (GET:http://tstwfe1:8000/systemsettings.aspx)    12fc5e18-5b16-43a9-8863-e508d74e7b04
    02/03/2014 10:27:37.38     w3wp.exe (0x0CFC)                           0x1E18    SharePoint Foundation       
         Logging Correlation Data          xmnv    Medium      Site=/    12fc5e18-5b16-43a9-8863-e508d74e7b04
    02/03/2014 10:27:37.38     w3wp.exe (0x0CFC)                           0x1E18    SharePoint Foundation       
         Monitoring                        b4ly    High        Leaving Monitored Scope
    (PostResolveRequestCacheHandler). Execution Time=8.4318    12fc5e18-5b16-43a9-8863-e508d74e7b04
    02/03/2014 10:27:37.42     w3wp.exe (0x0CFC)                           0x1E18    SharePoint Foundation       
         Monitoring                        b4ly    Medium      Leaving Monitored Scope (Request
    (GET:http://tstwfe1:8000/systemsettings.aspx)). Execution Time=28.2169    12fc5e18-5b16-43a9-8863-e508d74e7b04
    02/03/2014 10:27:38.17     OWSTIMER.EXE (0x05F8)                       0x245C    SharePoint Foundation       
         Monitoring                        nasq    Medium      Entering monitored scope (Timer
    Job SchedulingApproval)    55797bac-6375-4f51-8dca-a20ff1374183
    02/03/2014 10:27:38.17     OWSTIMER.EXE (0x05F8)                       0x245C    SharePoint Foundation       
         Monitoring                        b4ly    Medium      Leaving Monitored Scope (Timer Job
    SchedulingApproval). Execution Time=4.3691    55797bac-6375-4f51-8dca-a20ff1374183
    02/03/2014 10:27:40.16     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Foundation       
         Monitoring                        nasq    Medium      Entering monitored scope (Timer
    Job UpdateHiddenListJobDefinition)    90c4a860-31eb-4c79-8074-f1b5dfcc9434
    02/03/2014 10:27:40.16     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Foundation       
         Database                          4ohp    High        Enumerating
    all sites in SPWebApplication Name=SP - xxxT - Edit.    90c4a860-31eb-4c79-8074-f1b5dfcc9434
    02/03/2014 10:27:40.16     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Foundation       
         Database                          4ohq    Medium      Site Enumeration Stack:   
    at Microsoft.SharePoint.Administration.SPSiteCollection.get_Item(Int32 index)     at Microsoft.SharePoint.Taxonomy.UpdateHiddenListJobDefinition.Execute(Guid targetInstanceId)     at Microsoft.SharePoint.Administration.SPTimerJobInvokeInternal.Invoke(SPJobDefinition
    jd, Guid targetInstanceId, Boolean isTimerService, Int32& result)     at Microsoft.SharePoint.Administration.SPTimerJobInvoke.Invoke(TimerJobExecuteData& data, Int32& result)      90c4a860-31eb-4c79-8074-f1b5dfcc9434
    02/03/2014 10:27:40.16     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Server           
         Taxonomy                          hy93    Medium      Skipping check for the
    metadata hub timer job because no metadata proxies are active    90c4a860-31eb-4c79-8074-f1b5dfcc9434
    02/03/2014 10:27:40.16     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Server           
         Taxonomy                          fuc1    Medium      Hidden list full sync
    timer job is being created and associated with the web application SP - xxxT - Edit.    90c4a860-31eb-4c79-8074-f1b5dfcc9434
    02/03/2014 10:27:40.16     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Server           
         Taxonomy                          fuc3    Medium      Hidden list full sync
    timer job was not created and associated with the web application SP - xxxT - Edit.  jobDefinition was already set.    90c4a860-31eb-4c79-8074-f1b5dfcc9434
    02/03/2014 10:27:40.16     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Foundation       
         Database                          4ohp    High        Enumerating
    all sites in SPWebApplication Name=SP - xxxT - Edit.    90c4a860-31eb-4c79-8074-f1b5dfcc9434
    02/03/2014 10:27:40.16     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Foundation       
         Database                          4ohq    Medium      Site Enumeration Stack:   
    at Microsoft.SharePoint.Administration.SPSiteCollection.get_Count()     at Microsoft.SharePoint.Taxonomy.UpdateHiddenListJobDefinition.Execute(Guid targetInstanceId)     at Microsoft.SharePoint.Administration.SPTimerJobInvokeInternal.Invoke(SPJobDefinition
    jd, Guid targetInstanceId, Boolean isTimerService, Int32& result)     at Microsoft.SharePoint.Administration.SPTimerJobInvoke.Invoke(TimerJobExecuteData& data, Int32& result)      90c4a860-31eb-4c79-8074-f1b5dfcc9434
    02/03/2014 10:27:40.16     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Foundation       
         Database                          4ohp    High        Enumerating
    all sites in SPWebApplication Name=SP - xxxT - Edit.    90c4a860-31eb-4c79-8074-f1b5dfcc9434
    02/03/2014 10:27:40.16     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Foundation       
         Database                          4ohq    Medium      Site Enumeration Stack:   
    at Microsoft.SharePoint.Administration.SPSiteCollection.get_Item(Int32 index)     at Microsoft.SharePoint.Taxonomy.UpdateHiddenListJobDefinition.Execute(Guid targetInstanceId)     at Microsoft.SharePoint.Administration.SPTimerJobInvokeInternal.Invoke(SPJobDefinition
    jd, Guid targetInstanceId, Boolean isTimerService, Int32& result)     at Microsoft.SharePoint.Administration.SPTimerJobInvoke.Invoke(TimerJobExecuteData& data, Int32& result)      90c4a860-31eb-4c79-8074-f1b5dfcc9434
    02/03/2014 10:27:40.16     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Foundation       
         Monitoring                        b4ly    Medium      Leaving Monitored Scope (Timer Job
    UpdateHiddenListJobDefinition). Execution Time=8.8473    90c4a860-31eb-4c79-8074-f1b5dfcc9434
    02/03/2014 10:27:41.16     OWSTIMER.EXE (0x05F8)                       0x198C    SharePoint Foundation       
         Monitoring                        nasq    Medium      Entering monitored scope (Timer
    Job Health Statistics Updating)    ce9fe0e0-860a-4405-bffa-91bfcac0028f
    02/03/2014 10:27:41.16     OWSTIMER.EXE (0x05F8)                       0x198C    SharePoint Foundation       
         Topology                          8xqz    Medium      Updating SPPersistedObject
    SearchServiceApplicationMonitoring Name=Monitoring_7F19A5D194F942e6A9856FCFD6EE6F63. Version: 3978663 Ensure: False, HashCode: 60815176, Id: 1a82c0b8-4208-4199-9689-7f82fd256b00, Stack:    at Microsoft.SharePoint.Administration.SPPersistedObject.BaseUpdate()    
    at Microsoft.Office.Server.Search.Monitoring.TraceDiagnosticsProvider.UpdateServiceApplicationHealthStats()     at Microsoft.SharePoint.Administration.SPTimerJobInvokeInternal.Invoke(SPJobDefinition jd, Guid targetInstanceId, Boolean isTimerService,
    Int32& result)     at Microsoft.SharePoint.Administration.SPTimerJobInvoke.Invoke(TimerJobExecuteData& data, Int32& result)      ce9fe0e0-860a-4405-bffa-91bfcac0028f
    02/03/2014 10:27:41.20     OWSTIMER.EXE (0x05F8)                       0x198C    SharePoint Foundation       
         Monitoring                        b4ly    Medium      Leaving Monitored Scope (Timer Job
    Health Statistics Updating). Execution Time=25.0976    ce9fe0e0-860a-4405-bffa-91bfcac0028f
    02/03/2014 10:27:43.46     w3wp.exe (0x0CFC)                           0x168C    SharePoint Foundation       
         Monitoring                        nasq    Medium      Entering monitored scope (Request
    (GET:http://tstwfe1:8000/_admin/SelectCrossFirewallAccessZone.aspx))    
    02/03/2014 10:27:43.46     w3wp.exe (0x0CFC)                           0x168C    SharePoint Foundation       
         Logging Correlation Data          xmnv    Medium      Name=Request (GET:http://tstwfe1:8000/_admin/SelectCrossFirewallAccessZone.aspx)    746d4c9b-761b-431e-90cc-0557bc3826d4
    02/03/2014 10:27:48.16     OWSTIMER.EXE (0x05F8)                       0x18EC    SharePoint Foundation       
         Monitoring                        nasq    Medium      Entering monitored scope (Timer
    Job SchedulingApproval)    9855194f-cb44-486f-b282-a578f72a938f
    02/03/2014 10:27:48.16     OWSTIMER.EXE (0x05F8)                       0x18EC    SharePoint Foundation       
         Monitoring                        b4ly    Medium      Leaving Monitored Scope (Timer Job
    SchedulingApproval). Execution Time=3.6232    9855194f-cb44-486f-b282-a578f72a938f
    02/03/2014 10:27:50.16     OWSTIMER.EXE (0x05F8)                       0x0928    SharePoint Foundation       
         Monitoring                        nasq    Medium      Entering monitored scope (Timer
    Job Search Health Monitoring - Trace Events)    6755d54d-03bd-42ed-8bd6-d0fa097e7daf
    02/03/2014 10:27:50.16     OWSTIMER.EXE (0x05F8)                       0x0928    SharePoint Foundation       
         Monitoring                        b4ly    Medium      Leaving Monitored Scope (Timer Job
    Search Health Monitoring - Trace Events). Execution Time=6.6128    6755d54d-03bd-42ed-8bd6-d0fa097e7daf
    02/03/2014 10:27:53.94     SPUCHostService.exe (0x09EC)                0x0ACC    SharePoint Foundation           
     Sandboxed Code Service            fe8b    Medium       -  - Unable to activate worker process proxy object within the worker process: ipc://29ffade5-9a06-4ec5-b96b-f3b69c7a6952:7000  
    02/03/2014 10:27:53.94     SPUCHostService.exe (0x09EC)                0x0ACC    SharePoint Foundation           
     Sandboxed Code Service            fe8c    Medium       -  - Error activating the worker process manager instance within the worker process. - Inner Exception: System.InvalidOperationException:
    Unable to activate worker process proxy object within the worker process: ipc://29ffade5-9a06-4ec5-b96b-f3b69c7a6952:7000     at Microsoft.SharePoint.UserCode.SPUserCodeWorkerProcess.CreateWorkerProcessProxies()    
    02/03/2014 10:27:53.94     SPUCHostService.exe (0x09EC)                0x0ACC    SharePoint Foundation           
     Sandboxed Code Service            ei0t    Medium       - Process creation/initialization threw an exception. Stopping this process. "ipc://ca3d652e-8f80-4789-b527-65b8376a1da8:7000"  
    02/03/2014 10:27:53.94     SPUCHostService.exe (0x09EC)                0x0ACC    SharePoint Foundation           
     Sandboxed Code Service            i0o2    Monitorable     - Stopping shim process. Shim process name: "SPUCWorkerProcess" Shim PID: "0x29E8" Shim service
    url: "ipc://ca3d652e-8f80-4789-b527-65b8376a1da8:7000"    
    02/03/2014 10:27:53.94     SPUCHostService.exe (0x09EC)                0x0ACC    SharePoint Foundation           
     Sandboxed Code Service            i0o3    Monitorable     - Stopping proxy process. Proxy process name: "SPUCWorkerProcessProxy" Proxy PID: "0x236C" Proxy
    service url: "ipc://29ffade5-9a06-4ec5-b96b-f3b69c7a6952:7000"    
    02/03/2014 10:27:53.94     SPUCHostService.exe (0x09EC)                0x0ACC    SharePoint Foundation           
     Sandboxed Code Service            fe87    Medium       -  - Error activating the worker process manager instance within the worker process. - Starting worker process
    threw - Inner Exception: System.InvalidOperationException: Unable to activate worker process proxy object within the worker process: ipc://29ffade5-9a06-4ec5-b96b-f3b69c7a6952:7000     at Microsoft.SharePoint.UserCode.SPUserCodeWorkerProcess.CreateWorkerProcessProxies()  
    02/03/2014 10:27:54.93     w3wp.exe (0x0CFC)                           0x168C    SharePoint Foundation       
         Logging Correlation Data          xmnv    Medium      Site=/    746d4c9b-761b-431e-90cc-0557bc3826d4
    02/03/2014 10:27:55.08     w3wp.exe (0x0CFC)                           0x168C    SharePoint Foundation       
         Monitoring                        b4ly    Medium      Leaving Monitored Scope (Request
    (GET:http://tstwfe1:8000/_admin/SelectCrossFirewallAccessZone.aspx)). Execution Time=11622.9457    746d4c9b-761b-431e-90cc-0557bc3826d4
    02/03/2014 10:27:57.18     OWSTIMER.EXE (0x05F8)                       0x1B24    SharePoint Foundation       
         Monitoring                        nasq    Medium      Entering monitored scope (Timer
    Job SchedulingApproval)    824bd8e1-df0a-432b-9f18-5824b5c10e6d
    02/03/2014 10:27:57.18     OWSTIMER.EXE (0x05F8)                       0x1B24    SharePoint Foundation       
         Monitoring                        b4ly    Medium      Leaving Monitored Scope (Timer Job
    SchedulingApproval). Execution Time=7.0564    824bd8e1-df0a-432b-9f18-5824b5c10e6d
    02/03/2014 10:28:00.17     OWSTIMER.EXE (0x05F8)                       0x245C    SharePoint Foundation       
         Monitoring                        nasq    Medium      Entering monitored scope (Timer
    Job job-immediate-alerts)    9a92f513-e5bc-4475-91e3-a9c178554748
    02/03/2014 10:28:00.21     OWSTIMER.EXE (0x05F8)                       0x245C    SharePoint Foundation       
         Monitoring                        b4ly    Medium      Leaving Monitored Scope (Timer Job
    job-immediate-alerts). Execution Time=16.4731    9a92f513-e5bc-4475-91e3-a9c178554748
    02/03/2014 10:28:00.35     SPUCHostService.exe (0x09EC)                0x0CB8    SharePoint Foundation           
     Sandboxed Code Service            f2yg    Medium       - CreateSandBoxedProcessWorker() is called    
    02/03/2014 10:28:00.38     SPUCHostService.exe (0x09EC)                0x0CB8    SharePoint Foundation           
     Sandboxed Code Service            b10e    Medium       - Created desktop: Service-0x0-86b8876$\Microsoft Office Isolated Environment     
    02/03/2014 10:28:00.67     SPUCWorkerProcess.exe (0x26B4)              0x1D98    SharePoint Foundation             Unified
    Logging Service           b8fx    High        ULS Init Completed (SPUCWorkerProcess.exe, onetnative.dll)    
    02/03/2014 10:28:05.72     SPUCWorkerProcess.exe (0x26B4)              0x26BC    SharePoint Foundation             Unified
    Logging Service           7a8a    Medium      LogWMIData: ConnectServer failed: 0x80041003    
    02/03/2014 10:28:06.17     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Foundation       
         Monitoring                        nasq    Medium      Entering monitored scope (Timer
    Job job-application-server-admin-service)    2bdc150f-c10c-4fdc-9630-76f5fe204fb4
    02/03/2014 10:28:06.17     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Server Search    
         Administration                    dkd5    High        synchronizing search service instance  
     2bdc150f-c10c-4fdc-9630-76f5fe204fb4
    02/03/2014 10:28:06.17     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Server Search    
         Administration                    eff0    High        synchronizing search data access service instance  
     2bdc150f-c10c-4fdc-9630-76f5fe204fb4
    02/03/2014 10:28:07.36     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Server Search    
         Administration                    dl2i    Medium      Search application 'Search Service Application': Provision
    start addresses in default content source.    2bdc150f-c10c-4fdc-9630-76f5fe204fb4
    02/03/2014 10:28:07.36     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Server Search    
         Administration                    fa0w    Medium      Search application name is 'Search Service Application'.  
     2bdc150f-c10c-4fdc-9630-76f5fe204fb4
    02/03/2014 10:28:07.36     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Server Search    
         Administration                    fa0x    Medium      Fetching UserProfileApplicationCollection...  
     2bdc150f-c10c-4fdc-9630-76f5fe204fb4
    02/03/2014 10:28:07.36     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Server Search    
         Administration                    fa0y    Medium      Fetching UserProfileApplication...    2bdc150f-c10c-4fdc-9630-76f5fe204fb4
    02/03/2014 10:28:07.39     OWSTIMER.EXE (0x05F8)                       0x1808    SharePoint Foundation       
         Monitoring                        b4ly    Medium      Leaving Monitored Scope (Timer Job
    job-application-server-admin-service). Execution Time=1227.1104    2bdc150f-c10c-4fdc-9630-76f5fe204fb4
    02/03/2014 10:28:10.17     OWSTIMER.EXE (0x05F8)                       0x198C    SharePoint Foundation       
         Monitoring                        nasq    Medium      Entering monitored scope (Timer
    Job SchedulingUnpublish)    77ac5e41-7215-4783-b3ca-e9ff8aec57fd
    02/03/2014 10:28:10.19     OWSTIMER.EXE (0x05F8)                       0x198C    SharePoint Foundation       
         Monitoring                        b4ly    Medium      Leaving Monitored Scope (Timer Job
    SchedulingUnpublish). Execution Time=4.763    77ac5e41-7215-4783-b3ca-e9ff8aec57fd
     

    Hi Iron34,
    Looks like the SharePoint Foundation Sandboxed Code Service is having an issue.  You could see if the SharePoint 2010 User Code Host Service is enabled via services.msc, and then either disable it, or go to Manage Services on Server under system settings
    and turn off Microsoft SharePoint Foundation Sandboxed Code Service, if you're not concerned with containing user solutions, and then give the deployment another run.
    if the issue persists, adjust >
    http://www.sharepointpapa.com/blog/_layouts/15/start.aspx#/Lists/Posts/Post.aspx?ID=20
    Cheers,
    Stacy
    Stacy Anothersharepointblog.blogspot.com

  • Object null reference error while creating Web applications, Service applications etc after restoring AD accounts

    Hi,
    The old Active Directory accounts of my server were removed, those accounts are used by some of the SharePoint sites. A new AD account was created and when I try to replace the old accounts with new I am facing issue. I am also unable to create new web application,
    service application from my Central Administration. I also tried by restoring old accounts but still I am facing same issues, I
    am getting the error message Object
    reference not set to an instance of an object. for any create activities in Central Administration.
    Thanks in Advance for your help

    Thanks for the reply. When I am trying to update service account of services also I am getting error
    message Object
    reference not set to an instance of an object. i.e., while selecting component(web/service application from drop down) redirecting to error page

Maybe you are looking for

  • Square box for character in jeditorpane

    Hi, I'm trying to display the middot character, integer value 183, in a jeditorpane, but all I'm getting is a square box. Any thoughts as to why? I believe I'm using the default encoding, ISO-8859-1. Do I need to set a different encoding, a font, or

  • Linking two RichText objects

    Hello, Today I wanted to convert a design part to flex code and the following problem came up. I'm trying to wrap text around an image. For example the image is in the left side and I want the text to be in the right side of the image but I need the

  • No copy and paste as single objects anymore???

    What is going on with iWork-Suite. We can not copy and paste multiple objects from keynote oder pages into iBook Author. As soon as you copy more than one object it will be one object in iBooks Author. For years it was working finde.  ;( Thats our pr

  • Query takes 5 min when using Indexes and 1 Second without Indexes !!

    Hi, We have been using indexes on all tables until recently when we faced problems with queries like the one below: SELECT a.std_id FROM students a, student_degree b, student_course c, course d WHERE b.std_id = a.std_id AND c.std_id = a.std_id AND d.

  • My app only shows splash screen...

    Hello, my application only shows the splash screen and then,,, nothing.... my app: [http://freiheit.hostse.com/sir.html] I've already googled and I didn't find anything :( Thanks for your help in advance