Help:Upgraded webdb22 procedure urls fail w/http 404

After upgrading webdb 2.2 to 3.0.6 (on the way to 3.0.9)all procedure urls error with http 404. Packages are valid, packages run when accessed through database objects, created public synonyms for them, granted execute to public, granted schema access to public, ...still the same error. Some of the packages are in different schemas than the site schema. All worked in webdb. Any ideas???

I think that the message below (from your post) might be a clue...
:: Unlocking encrypted volumes: [BUSY]
It shows that decryption is still busy and therefore not completed. You may not have encryption set up correctly and your volumes are not ready.

Similar Messages

  • CUPS upgrade 6.01 to 6.03 HTTP 404 Error

    I have just upgraded CUPS 6.01 to 6.03.
    When I try to access the web page (https://<ip>:8443 I get the option to go to Unified Presence Server Admin. However when I select that I get the following error message.
    HTTP Status 404 - /ccmadmin/
    type Status report
    message /ccmadmin/
    description The requested resource (/ccmadmin/) is not available.
    Apache Tomcat/5.5.17
    I can get to the /cmplatform
    I have tried rebooting, no change
    I have reverted back to 6.01 and all works well again, then tried migrating back to 6.03 same problem
    Any ideas???

    I've ran into this on CUCM 9.0 a couple of times.
    First thing I check is if my Services are running through the Unix CLI:
    utils service list page
    The added page command will allow you to scroll through by page or by line.
    Then start what services I see are not running. It usually comes down to Cisco Tomcat so I restart it:
    utils service start Cisco Tomcat
    This command will also start the AXL Web Service, CAR Web Service and other various services that rely on a the Web GUI.

  • Remote procedure called failed

    I have sql server 2008 installed with Business intelligence development studio. When I goes to configuration manager to check whether sql server is running or not it showing a message like
    remote procedure called failed. When I googled it then it ask me to install sql server 2008 r2 sp1. After that I also installed sql server 2008 r2 sp1 then also it showing the same error.
    Plz help me on this.
    nravhad

    Hello,
    I would like you to see below two articles
    http://thesqldude.com/2012/12/05/sql-server-2012-configuration-manager-wmi-error-remote-procedure-call-failed-0x800706be/
    http://social.technet.microsoft.com/Forums/sqlserver/en-US/d9359da1-7793-4b6c-b4e0-ffd332a1c613/remote-procedure-call-failed-in-sql-server-configuration-manager
    Also 2008 R2 has now SP2.You could try to update to SP2 also and see if it helps
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Lync 2013 Simple URLs Configuration (HTTP 404 Error in Browser)

    Hello All,
    We have have many SIP domains, and want them to have separate Meet simple URLs and also want to minimize the DNS record and certificate requirements for these simple URLs.
    So i have changed the default simple urls configuration as defined in below link:
    http://technet.microsoft.com/en-us/library/gg398287.aspx
    http://technet.microsoft.com/en-us/library/gg425874.aspx
    Simple URL Naming Option 3
    Simple URL
    Example
    Meet
    https://lync.contoso.com/contosoSIPdomain/Meet
    https://lync.contoso.com/fabrikamSIPdomain/Meet
    Dial-in
    https://lync.contoso.com/Dialin
    Admin
    https://lync.contoso.com/Admin
    After changing the configuration now i getting below error on all URLs:
    HTTP Error 404.0 - Not FoundThe resource you are looking for has been removed, had its name changed, or is temporarily unavailable
    Topology is properly published and Enable-CSComputer
    is also run on SHELL.
    Get-CsSimpleUrlConfiguration is also showing new Simple URLs and I have also generated a new certificate.
    But still new simple URLs (dialin, meet , admin)are giving HTTP Error 404 in browser.
    Also default old urls https://meet.domain.xx.xx are still working.

    I have restart the server and also restart IIS service. DNS has A record entry for lync.contoso.com.
    But still all three below Urls are giving HTTP 404 error.
    Meet
    https://lync.contoso.com/contosoSIPdomain/Meet
    https://lync.contoso.com/fabrikamSIPdomain/Meet
    Dial-in
    https://lync.contoso.com/Dialin
    Admin
    https://lync.contoso.com/Admin                                                                           
    And old default urls  are still opening. CNAME for meet, Dailin and admin is still in DNS.
    meet : https://meet.contoso.com
    <label class="errorbold" id="errorTextLabel15" style="display:block;">We're having trouble getting you into the meeting.</label>
    <label class="errorregular" id="checkUrlLabel15" style="display:block;">It's possible you're using a bad URL. Try calling into the meeting using the phone number on the invite, or ask the organizer to drag you into the meeting from the Contacts list.</label>
    Dial-in : http://dialin.contoso.com
    admin: https://admin.contoso.com

  • Failed to load resource: the server responded with a status of 405 (Method Not Allowed) XMLHttpRequest cannot load (WCF service URL). Invalid HTTP status code 405

    Hi,
    while consuming the  WCF service POST method Jquery, getting error in Chrome and firefox, in IE  Its working fine.
    ERROR:Failed to load resource: the server responded with a status of 405 (Method Not Allowed)  XMLHttpRequest cannot load (WCF service URL). Invalid HTTP status code 405.
    Jquery used to call:
    $.support.cors = true
            $.ajax({
                type: "POST",
                url: serviceURL,
                data: JSON.stringify(managedProps),
                useDefaultXhrHeader:false,
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                //processData: true,
                crossDomain: true,
                success: function (data, status, jqXHR) {
                   alert("sucess");
                error: function (xhr) {
                    alert("error");
    WCF sevice Web.config
    <webHttpBinding>
            <!--<binding name="webHttpBindingWithJsonP" transferMode="StreamedRequest" />-->
            <binding name="crossDomain" crossDomainScriptAccessEnabled="true" transferMode="StreamedResponse" />
          </webHttpBinding>
        </bindings>
        <services>
          <service name="DynamicRefinerWCF.DynamicRefiner">
            <endpoint address="" behaviorConfiguration="REST" bindingConfiguration="crossDomain" binding="webHttpBinding" contract="DynamicRefinerWCF.IDynamicRefiner" />
            <endpoint address="mex" binding="mexHttpBinding" contract="DynamicRefinerWCF.IDynamicRefiner" />
            <host>
              <baseAddresses>
                <add baseAddress="http://localhost/example.svc" />
              </baseAddresses>
            </host>
          </service>
        </services>
        <!--<protocolMapping>
            <add binding="basicHttpsBinding" scheme="https" />
        </protocolMapping>-->    
        <!--<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />-->
      </system.serviceModel>
      <system.webServer>
        <!--<modules runAllManagedModulesForAllRequests="true"/>-->
        <modules>
          <remove name="WebDAVModule" />
        </modules>
        <handlers>
          <remove name="WebDAV" />
        </handlers>
        <directoryBrowse enabled="true" />
        <httpProtocol>
          <customHeaders>
            <add name="Access-Control-Allow-Origin" value="*"/>
            <add name="Access-Control-Allow-Headers" value="Content-Type"/>
            <add name="Access-Control-Allow-Methods" value="GET, POST, PUT, DELETE, OPTIONS"/>
            <add name="Access-Control-Request-Headers:" value="*" />
            <add name="Access-Control-Request-Method:" value="*" />
          </customHeaders>
        </httpProtocol>
        <!--
            To browse web app root directory during debugging, set the value below to true.
            Set to false before deployment to avoid disclosing web app folder information.
          -->
        <!--<directoryBrowse enabled="true"/>-->
      </system.webServer>
    </configuration>
    Thanks,
    Swathi

    Right on - I have done that a number of times.

  • Exchange 2013 ECP Login fails HTTP 404 Requested URL: /owa/auth/logon.aspx

    Hi,
    One of our Exchange servers stopped allowing access to OWA and ECP. I have now managed to get OWA working but ECP is still failing. When connecting to ECP using https://servername/ecp/ it asks me for my username and password. After hitting enter it shows
    me an error page:
    Server Error in '/owa' Application.
    The resource cannot be found.
    Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly.
    Requested URL: /owa/auth/logon.aspx
    URL in the address bar while on this screen: https://exchangeserver:444/owa/auth/logon.aspx?url=https://exchangeservera:444/ecp/&reason=0
    Question: When the URL points to servername:444/owa/auth/logon.aspx - Is it trying to find the logon.aspx in C:\Program Files\Microsoft\Exchange Server\V15\ClientAccess\Owa\auth? There is no such file in that directory?
    I have removed and recreated the ECP and OWA virtual directories several times.
    I am trying to login using a domain administrator account.
    Thanks,

    Hi,
    Is there any Exchange server 2010 coexistence with your Exchange 2013 server? If it is, please try the URL
    https://CAS15-NA/ecp?ExchClientVer=15 to access ECP.
    Also run the following to check your OWA and ECP virtual directories:
    Get-EcpVirtualDirectory -ShowMailboxVirtualDirectories | FL Identity,*Authentication*
    Get-OwaVirtualDirectory -ShowMailboxVirtualDirectories | FL Identity,*Authentication*
    And make sure the Basic and Forms authentications are enabled in
    Default Web Site and Ntlm, WindowsIntegrated
    authentication methods are enabled in
    Exchange Back End. Then restart IIS service by running
    iisreset /noforce from a command prompt window.
    If the issue persists, please collect any event logs or IIS logs for further analysis.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • Help - SQL 2008 - SP4 Install Fails - Server is in script upgrade mode - Server Down

    Login failed for user 'CS\XXXXXXXXXXX'. Reason: Server is in script upgrade mode. Only administrator can connect at this time. [CLIENT: <local machine>]
    Clearing tempdb database.
    Bits:
    Windows 2003 Server Std SP2
    SQL Server 2008 SP3
    SQL Server has been running without issue.  Installed on another SS2K8 SP3 and worked fine.
    Any assistance would be appreciated as this issue is causing problems for my user applications.
    Thank You
    Mark Covian

    Set Trace Flag -T902
    Start the SQL Server and it shuts down
    2015-01-28 09:41:00.00 Server Microsoft SQL Server 2008 (SP4) - 10.0.6000.29 (Intel X86)
    Sep 2 2014 22:55:13
    Copyright (c) 1988-2008 Microsoft Corporation
    Standard Edition on Windows NT 5.2 <X86> (Build : )
    2015-01-28 09:41:00.00 Server (c) 2005 Microsoft Corporation.
    2015-01-28 09:41:00.00 Server All rights reserved.
    2015-01-28 09:41:00.00 Server Server process ID is 6564.
    2015-01-28 09:41:00.00 Server Authentication mode is MIXED.
    2015-01-28 09:41:00.00 Server Logging SQL Server messages in file 'C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\Log\ERRORLOG'.
    2015-01-28 09:41:00.00 Server This instance of SQL Server last reported using a process ID of 7580 at 1/28/2015 9:32:48 AM (local) 1/28/2015 4:32:48 PM (UTC). This is an informational message only; no user action is required.
    2015-01-28 09:41:00.00 Server Registry startup parameters:
    -d C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\master.mdf
    -e C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\Log\ERRORLOG
    -l C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\mastlog.ldf
    -T902
    The ALL permission is deprecated and maintained only for compatibility. It DOES NOT imply ALL permissions defined on the entity.
    Adding user 'CS\X910401' to SQLAgentUserRole msdb role...
    Performing replication job security meta-data upgrades...
    Attempting to load library 'xprepl.dll' into memory. This is an informational message only. No user action is required.
    Using 'xprepl.dll' version '2007.100.1600' to execute extended stored procedure 'xp_repl_encrypt'. This is an informational message only; no user action is required.
    Error: 515, Severity: 16, State: 2.
    Cannot insert the value NULL into column 'owner_sid', table 'msdb.dbo.sysjobs'; column does not allow nulls. INSERT fails.
    Error: 912, Severity: 21, State: 2.
    Script level upgrade for database 'master' failed because upgrade step 'sqlagent100_msdb_upgrade.sql' encountered error 515, state 2, severity 16. This is a serious error condition which might interfere with regular operation and the database will be taken offline. If the error happened during upgrade of the 'master' database, it will prevent the entire SQL Server instance from starting. Examine the previous errorlog entries for errors, take the appropriate corrective actions and re-start the database so that the script upgrade steps run to completion.
    Error: 3417, Severity: 21, State: 3.
    Cannot recover the master database. SQL Server is unable to run. Restore master from a full backup, repair it, or rebuild it. For more information about how to rebuild the master database, see SQL Server Books Online.
    SQL Trace was stopped due to server shutdown. Trace ID = '1'. This is an informational message only; no user action is required.
    The SQL Server Network Interface library successfully deregistered the Service Principal Name (SPN) [ MSSQLSvc/ ] for the SQL Server service.
    The SQL Server Network Interface library successfully deregistered the Service Principal Name (SPN) [ MSSQLSvc/R:1433 ] for the SQL Server service.
    Mark Covian

  • Upgrade to Windows 10 failed with error 80070714. Please Help!!!

    Hi. I hope someone out there can help me!! I have tried numerous times to upgrade my HP Envy 15-K204NA from Windows 8.1 64-bit to Windows 10 Home, but it continues to fail with error code 80070714. I am using Bullguard Premium Protection and have Acronis True Image installed. I have disabled SQL services as suggested by other posts on the internet, but nothing seems to work. When I run the upgrade from a DVD burned from the ISO, it gets to 37% and then fails. Hope you can help. (fingers crossed!!) Chris The Setup Error log file shows: 2015-08-05 16:48:34, Error                        CallPidGenX: PidGenX function failed on this product key. (hr = 0x8a010001)
    2015-08-05 16:48:37, Error                        CallPidGenX: PidGenX function failed on this product key. (hr = 0x8a010001)
    2015-08-05 16:48:49, Error                 CONX   Failed to initialize net class data 800700052015-08-05 16:48:50, Error                 CONX   Failed to get class data from printer 800700572015-08-05 16:49:21, Error                 CONX   Failed to open INF file [tib_mounter.x64.inf] with 0x800700022015-08-05 16:49:21, Error                 CONX   Failed to initialize driver package [tib_mounter.x64.inf]2015-08-05 16:49:21, Error                 CONX   Failed to open INF file [oem46.inf] with 0x800700022015-08-05 16:49:21, Error                 CONX   Failed to initialize driver package [oem46.inf]2015-08-05 16:49:23, Error                 CONX   Failed to open INF file [tib_mounter.x64.inf] with 0x800700022015-08-05 16:49:23, Error                 CONX   Failed to initialize driver package [tib_mounter.x64.inf]2015-08-05 16:49:23, Error                 CONX   Failed to open INF file [oem46.inf] with 0x800700022015-08-05 16:49:23, Error                 CONX   Failed to initialize driver package [oem46.inf]2015-08-05 17:06:14, Error                 SP     RegLoadKeyW failed to mount C:\$WINDOWS.~BT\Sources\SafeOS\SafeOS.Mount\WINDOWS\system32\config\SYSTEM at SP_HIVE_LOAD_ALIAS_SYSTEM[gle=0x801f0005]
    2015-08-05 17:06:14, Error                 SP     SPMountOfflineHive: Can't mount offline hive: C:\$WINDOWS.~BT\Sources\SafeOS\SafeOS.Mount\WINDOWS\system32\config\SYSTEM. Error: 0x801F0005[gle=0x801f0005]
    2015-08-05 17:06:14, Error                 SP     CEnableTelemetryForImage:oExecute: Cannot load the system hive for the offline OS C:\$WINDOWS.~BT\Sources\SafeOS\SafeOS.Mount\WINDOWS. Error: 0x801F0005[gle=0x801f0005]
    2015-08-05 17:06:14, Error                        [SetupHost.exe] ReAgentXMLParser:arseConfigFile (xml file: C:\$WINDOWS.~BT\Sources\SafeOS\ReAgent.xml) returning 0X2
    2015-08-05 17:06:19, Error                 SP     Using current time as Recovery Timestamp.
    2015-08-05 17:06:22, Error                 SP     Failed to open WinPE DISM session. Error: 0x80070714[gle=0x0000007a]
    2015-08-05 17:06:22, Error                 SP     Operation failed: Process Drivers for Migration. Error: 0x80070714[gle=0x000000b7]
    2015-08-05 17:06:22, Error                 MOUPG  MoSetupPlatform: ExecuteCurrentOperations reported failure!
    2015-08-05 17:06:22, Error                 MOUPG  MoSetupPlatform: Using action error code: [0x80070714]
    2015-08-05 17:06:22, Error                 MOUPG  CDlpActionDriverMigrate::ExecuteRoutine(544): Result = 0x80070714
    2015-08-05 17:06:24, Error                 MOUPG  CDlpActionImpl<class CDlpErrorImpl<class CDlpObjectInternalImpl<class CUnknownImpl<class IMoSetupDlpAction> > > >::Execute(441): Result = 0x80070714
    2015-08-05 17:06:24, Error                 MOUPG  CDlpTask::ExecuteAction(3243): Result = 0x80070714
    2015-08-05 17:06:24, Error                 MOUPG  CDlpTask::ExecuteActions(3397): Result = 0x80070714
    2015-08-05 17:06:24, Error                 MOUPG  CDlpTask::Execute(1631): Result = 0x80070714
    2015-08-05 17:06:24, Error                 MOUPG  CSetupManager::ExecuteTask(1953): Result = 0x80070714
    2015-08-05 17:06:24, Error                 MOUPG  CSetupManager::ExecuteTask(1916): Result = 0x80070714
    2015-08-05 17:06:24, Error                 MOUPG  CSetupManager::ExecuteInstallMode(736): Result = 0x80070714
    2015-08-05 17:06:24, Error                 MOUPG  CSetupManager::ExecuteDownlevelMode(376): Result = 0x80070714
    2015-08-05 17:07:09, Error                 MOUPG  CSetupManager::Execute(222): Result = 0x80070714
    2015-08-05 17:07:09, Error                 MOUPG  CSetupHost::Execute(370): Result = 0x80070714
    2015-08-05 17:07:12, Error                 MOUPG  CDlpManager::AsyncSerializeDisable(471): Result = 0x80070216

    Hi Mumbodog  and thanks for your reply. I have uninstalled Bullguard and tried the upgrade again, but it failed at the same point. I have also removed Acronis True Image and again it failed!! The log file has fewer lines now, so it has helped, but still no upgrade: 2015-08-06 09:16:30, Error                        CallPidGenX: PidGenX function failed on this product key. (hr = 0x8a010001)
    2015-08-06 09:16:33, Error                        CallPidGenX: PidGenX function failed on this product key. (hr = 0x8a010001)
    2015-08-06 09:17:14, Error                 CONX   Failed to initialize net class data 80070005
    2015-08-06 09:17:15, Error                 CONX   Failed to get class data from printer 80070057
    2015-08-06 09:23:52, Error                 SP     RegLoadKeyW failed to mount C:\$WINDOWS.~BT\Sources\SafeOS\SafeOS.Mount\WINDOWS\system32\config\SYSTEM at SP_HIVE_LOAD_ALIAS_SYSTEM[gle=0x801f0005]
    2015-08-06 09:23:52, Error                 SP     SPMountOfflineHive: Can't mount offline hive: C:\$WINDOWS.~BT\Sources\SafeOS\SafeOS.Mount\WINDOWS\system32\config\SYSTEM. Error: 0x801F0005[gle=0x801f0005]
    2015-08-06 09:23:52, Error                 SP     CEnableTelemetryForImage:oExecute: Cannot load the system hive for the offline OS C:\$WINDOWS.~BT\Sources\SafeOS\SafeOS.Mount\WINDOWS. Error: 0x801F0005[gle=0x801f0005]
    2015-08-06 09:23:52, Error                        [SetupHost.exe] ReAgentXMLParser:arseConfigFile (xml file: C:\$WINDOWS.~BT\Sources\SafeOS\ReAgent.xml) returning 0X2
    2015-08-06 09:23:56, Error                 SP     Using current time as Recovery Timestamp.
    2015-08-06 09:23:59, Error                 SP     Failed to open WinPE DISM session. Error: 0x80070714[gle=0x0000007a]
    2015-08-06 09:23:59, Error                 SP     Operation failed: Process Drivers for Migration. Error: 0x80070714[gle=0x000000b7]
    2015-08-06 09:23:59, Error                 MOUPG  MoSetupPlatform: ExecuteCurrentOperations reported failure!
    2015-08-06 09:23:59, Error                 MOUPG  MoSetupPlatform: Using action error code: [0x80070714]
    2015-08-06 09:23:59, Error                 MOUPG  CDlpActionDriverMigrate::ExecuteRoutine(544): Result = 0x80070714
    2015-08-06 09:24:01, Error                 MOUPG  CDlpActionImpl<class CDlpErrorImpl<class CDlpObjectInternalImpl<class CUnknownImpl<class IMoSetupDlpAction> > > >::Execute(441): Result = 0x80070714
    2015-08-06 09:24:01, Error                 MOUPG  CDlpTask::ExecuteAction(3243): Result = 0x80070714
    2015-08-06 09:24:01, Error                 MOUPG  CDlpTask::ExecuteActions(3397): Result = 0x80070714
    2015-08-06 09:24:01, Error                 MOUPG  CDlpTask::Execute(1631): Result = 0x80070714
    2015-08-06 09:24:01, Error                 MOUPG  CSetupManager::ExecuteTask(1953): Result = 0x80070714
    2015-08-06 09:24:01, Error                 MOUPG  CSetupManager::ExecuteTask(1916): Result = 0x80070714
    2015-08-06 09:24:01, Error                 MOUPG  CSetupManager::ExecuteInstallMode(736): Result = 0x80070714
    2015-08-06 09:24:01, Error                 MOUPG  CSetupManager::ExecuteDownlevelMode(376): Result = 0x80070714
    2015-08-06 09:24:39, Error                 MOUPG  CSetupManager::Execute(222): Result = 0x80070714
    2015-08-06 09:24:39, Error                 MOUPG  CSetupHost::Execute(370): Result = 0x80070714
    2015-08-06 09:27:41, Error                 MOUPG  CDlpManager::AsyncSerializeDisable(471): Result = 0x80070216

  • I have i phone 3gs, it hangs while operating also upgrade to latest iOS fails ............. please help

    i have i phone 3gs, it hangs while operating also upgrade to latest iOS fails ............. please help

    Your iphone has been hacked and was locked back to the rightful carrier when updated.
    ONLY the carrier to which it is locked can legally/legitimately unlock an iphone.
    Your "brother from New Dehli" hacked the iphone.
    Hacked iphones cannot be discussed here.  It also voids the warraanty.

  • Remote procedure call failed and did not execute response after changing contents

    Hey Hey!
    I have reviewed the other posts related to this issue but have not found a solution.
    I have done myself quite a mischief and hope someone here can help me out!
    I'm running an old ACER laptop with Windows 7. This PC belonged to an old colleague and therefore all of the folders and user names were still under his name, so I decided to try to change them all to my name. The main issue was the USER folder which had
    the locked symbol next to it but it wasn't locked at all. I googled how to delete this folder and one bright spark suggested I create a new folder with my name, copy all of the folders from the other 'locked' user's folder into my folder, and then delete the
    old user's folder. 
    That was fine. All seemed well. When I tried to delete the old folder the computer sat around thinking saying it was 'moving' but not doing anything. So, I cancelled the operation in the Task Manager. When I attempted to open any folder from the start menu
    or desktop or task bar I was presented with a bunch of numbers and letters and the message "REMOTE PROCEDURE CALL FAILED AND DID NOT EXECUTE."
    I quickly googled the message realising I'd made a major error and the first response was to type in services.msc or something to that effect, so I typed that into the Start Menu search bar and hit enter and nothing came up. So, I tried again, but now I
    couldn't type anything into the search bar, I could not even select any programs from the Start Menu. 
    So, I can't access the Start Menu, search bar, or any of the folders unless I open uTorrent, select open containing folder, and from there I can access what I need.
    I'm too afraid to reboot the PC. I can't locate my copy of Windows 7 anywhere. I'm freaking out!!
    Before I pour my lowly student wage into getting a professional to fix it, could someone please offer some suggestions??
    Greatly appreciated in advance. 
    Paris, Texas. 

    Hi,
    Based on your description, for this question is more related to NetQueryDisplayInformation() API, in order to get better help, we may ask for suggestions in the following MSDN forum.
    MSDN Forum
    https://social.msdn.microsoft.com/Forums/en-US/home
    Besides, we can try to use a script to get all domain users. Regarding this point, the following script can be referred to as reference.
    How to list all active directory users in a particular domain using PowerShell
    https://gallery.technet.microsoft.com/office/How-to-list-all-active-0d9be7ce
    In addition, for scripts, we can also ask for help in the following forum.
    The Official Scripting Guys Forum
    https://social.technet.microsoft.com/Forums/scriptcenter/en-US/home?forum=ITCG
    Best regards
    Frank Shen 

  • Remote Procedure Call Failed - Verifying Account prior to establishing PIN as sign in option

    PC Settings / Accounts / Sign in options / PIN / Verify Account info / :  I enter my Microsoft Account password and receive the following message:
    "Remote procedure call failed"
    Cannot cancel - screen keeps reappearing.
    I have successfully established a sign-in PIN for my Win 8.1 desktop.  The above problem is occurring only on my Win 8.1 laptop.

    Hi,
    Sorry for my late reply.
    Regarding the issue, please ensure that RPC service is start.
    If it stops, I suggest you perform the following step to start it.
    1.Press Win+R, and type regedit, then press enter.
    2.Please navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\RpcSs and
    locate Start registry key
    Double click on Start and edit the value:
    Change Startup type :
    Automatic - 2
    Manual - 3
    Disabled - 4
    Automatic (Delayed Start) - 2
    Note: When you change to Automatic (Delayed Start) a new key DelayedAutostart is created with value 1.
    When you change to Automatic from Automatic (Delayed Start), DelayedAutostart change value to 0.
    If it cannot start, please refer to the following article to test it.
    "Could not start the Remote Procedure Call (RPC) Service. Error 1058" error message when you manually start the Remote Procedure Call service
    http://support.microsoft.com/kb/838428
    Regards,
    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.

  • Error Creating VM on 2011 iMac - The Hyper-V Virtual Machine Management service encountered an unexpected error: The remote procedure call failed. (0x800706BE).

    I am running Hyper-V in Windows 8.1 on a late 2011 27 inch iMac. Whenever I try to create a virtual machine I get the error below and Windows warns that it will restart in 1 minute. I tried a clean install of Windows, but my PC still crashes ever
    time I try to create a VM. I was able to successfully use Hyper-V in prior versions of Windows on this same PC. Any clue as to what is going on? A driver? Windows 8.1? Mac Hardware related?
    I see the following two entries in event viewer but have no other clue as to what is happening:
    Log Name:      Microsoft-Windows-Hyper-V-VMMS-Admin
    Source:        Microsoft-Windows-Hyper-V-VMMS
    Date:          1/10/2014 10:48:46 AM
    Event ID:      16000
    Task Category: None
    Level:         Error
    Keywords:     
    User:          SYSTEM
    Computer:      Charles-PC.CHARLESPOOL.local
    Description:
    The Hyper-V Virtual Machine Management service encountered an unexpected error: The remote procedure call failed. (0x800706BE).
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Hyper-V-VMMS" Guid="{6066F867-7CA1-4418-85FD-36E3F9C0600C}" />
        <EventID>16000</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2014-01-10T15:48:46.770451300Z" />
        <EventRecordID>58</EventRecordID>
        <Correlation />
        <Execution ProcessID="2488" ThreadID="8704" />
        <Channel>Microsoft-Windows-Hyper-V-VMMS-Admin</Channel>
        <Computer>Charles-PC.CHARLESPOOL.local</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <UserData>
        <VmlEventLog xmlns:auto-ns2="http://schemas.microsoft.com/win/2004/08/events" xmlns="http://www.microsoft.com/Windows/Virtualization/Events">
          <ErrorMessage>%%2147944126</ErrorMessage>
          <ErrorCode>0x800706BE</ErrorCode>
        </VmlEventLog>
      </UserData>
    </Event>
    Log Name:      Microsoft-Windows-Hyper-V-VMMS-Admin
    Source:        Microsoft-Windows-Hyper-V-VMMS
    Date:          1/10/2014 10:48:46 AM
    Event ID:      16010
    Task Category: None
    Level:         Error
    Keywords:     
    User:          SYSTEM
    Computer:      Charles-PC.CHARLESPOOL.local
    Description:
    The operation failed.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Hyper-V-VMMS" Guid="{6066f867-7ca1-4418-85fd-36e3f9c0600c}" />
        <EventID>16010</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2014-01-10T15:48:46.773497100Z" />
        <EventRecordID>59</EventRecordID>
        <Correlation />
        <Execution ProcessID="2488" ThreadID="8704" />
        <Channel>Microsoft-Windows-Hyper-V-VMMS-Admin</Channel>
        <Computer>Charles-PC.CHARLESPOOL.local</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <ProcessingErrorData>
        <ErrorCode>15005</ErrorCode>
        <DataItemName>Parameter0</DataItemName>
        <EventPayload>
        </EventPayload>
      </ProcessingErrorData>
    </Event>

    Hi CharlesPool,
    I am assuming that the win8.1 is in-place updated from win8 .
    Maybe you need to check the state of hypervisorlaunchtype .
    If it is off , please run command " bcdedit /set hypervisorlaunchtype auto "
    Best Regards
    Elton Ji
    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.

  • Exchange 2010 SP3 Failing to Install "The remote procedure call failed"

    I am getting an error while trying to upgrade the first Mailbox server in the organization to SP3. The CAS and HUB servers already upgraded without any issues. Any help is greatly appreciated.
    Here is the exchange setup logs output:
    [11/15/2014 09:10:52.0512] [2] Creating Server Object with DN = /dc=xxx/dc=xxx/cn=Configuration/cn=Services/cn=Microsoft Exchange/cn=xxx/cn=Administrative Groups/cn=Exchange Administrative Group (xxxx)/cn=Servers/cn=xxxxxx
    [11/15/2014 09:10:52.0512] [2]  Status code check (f:\14.03.0123\sources\dev\admin\src\libs\ds\x_dob.cxx:3370)
               Error code 0X8000500D (20493): This property can't be found in the cache.
    [11/15/2014 09:10:52.0528] [2] Leaving ScCreateServerObject
    [11/15/2014 09:10:52.0528] [2] Entering ScSetServerNetworkAddresses
    [11/15/2014 09:10:52.0528] [2] Entering ScGetServerDNSNameFromDS
    [11/15/2014 09:11:11.0482] [2]  ScUserDNFromLoginName (f:\14.03.0123\sources\dev\admin\src\libs\exsetup\exmisc.cxx:1441)
               Error code 0XC00706BE (1726): The remote procedure call failed.
    [11/15/2014 09:11:11.0482] [2]  ScGetServerDNSNameFromDS (f:\14.03.0123\sources\dev\admin\src\libs\exsetup\dsmisc.cxx:3481)
               Error code 0XC00706BE (1726): The remote procedure call failed.
    [11/15/2014 09:11:11.0482] [2] Leaving ScGetServerDNSNameFromDS
    [11/15/2014 09:11:11.0482] [2]  ScSetServerNetworkAddresses (f:\14.03.0123\sources\dev\admin\src\udog\excommon\ptudutil.cxx:1028)
               Error code 0XC00706BE (1726): The remote procedure call failed.
    [11/15/2014 09:11:11.0482] [2] Leaving ScSetServerNetworkAddresses
    [11/15/2014 09:11:11.0482] [2]  CAtomServer::ScAddOrRefreshDSObjects (f:\14.03.0123\sources\dev\admin\src\udog\exsetdata\components\server\a_server.cxx:288)
               Error code 0XC00706BE (1726): The remote procedure call failed.
    [11/15/2014 09:11:11.0482] [2]  CAtomServer::ScAddDSObjects (f:\14.03.0123\sources\dev\admin\src\udog\exsetdata\components\server\a_server.cxx:354)
               Error code 0XC00706BE (1726): The remote procedure call failed.
    [11/15/2014 09:11:11.0482] [2]  CBaseAtom::ScReinstall (f:\14.03.0123\sources\dev\admin\src\udog\setupbase\basecomp\baseatom.cxx:815)
               Error code 0XC00706BE (1726): The remote procedure call failed.
    [11/15/2014 09:11:11.0482] [2] Leaving CBaseAtom(Microsoft Exchange Server-Level Objects)::ScReinstall
    [11/15/2014 09:11:11.0482] [2] Service = '' CBaseServiceAtom::ScReinstall (f:\14.03.0123\sources\dev\admin\src\udog\setupbase\basecomp\basesvcatom.cxx:242)
               Error code 0XC00706BE (1726): The remote procedure call failed.
    [11/15/2014 09:11:11.0482] [2] Leaving CBaseServiceAtom(Microsoft Exchange Server-Level Objects)::ScReinstall
    [11/15/2014 09:11:11.0482] [2] mode = 'Reinstall' (61955) CBaseAtom::ScSetup (f:\14.03.0123\sources\dev\admin\src\udog\setupbase\basecomp\baseatom.cxx:537)
               Error code 0XC00706BE (1726): The remote procedure call failed.
    [11/15/2014 09:11:11.0482] [2]  ScSetupAtom (f:\14.03.0123\sources\dev\admin\src\udog\exsetdata\exsetds.cxx:882)
               Error code 0XC00706BE (1726): The remote procedure call failed.
    [11/15/2014 09:11:11.0482] [2] Leaving ScSetupAtom
    [11/15/2014 09:11:11.0482] [2] [ERROR] An error occurred with error code '3221685950' and message 'The remote procedure call failed.'.
    [11/15/2014 09:11:11.0482] [1] The following 1 error(s) occurred during task execution:
    [11/15/2014 09:11:11.0482] [1] 0.  ErrorRecord: An error occurred with error code '3221685950' and message 'The remote procedure call failed.'.
    [11/15/2014 09:11:11.0482] [1] 0.  ErrorRecord: Microsoft.Exchange.Management.Deployment.ExsetdataException: An error occurred with error code '3221685950' and message 'The remote procedure call failed.'.
    [11/15/2014 09:11:11.0482] [1] [ERROR] The following error was generated when "$error.Clear();
        buildToBuildUpgrade-ExsetdataAtom -AtomName Server -DomainController $RoleDomainController
    " was run: "An error occurred with error code '3221685950' and message 'The remote procedure call failed.'.".
    [11/15/2014 09:11:11.0482] [1] [ERROR] An error occurred with error code '3221685950' and message 'The remote procedure call failed.'.
    [11/15/2014 09:11:11.0482] [1] [ERROR-REFERENCE] Id=AllADRolesCommon__ExsetdataServer Component=EXCHANGE14:\Current\Release\Shared\Datacenter\Setup
    [11/15/2014 09:11:11.0482] [1] Setup is stopping now because of one or more critical errors.
    [11/15/2014 09:11:11.0482] [1] Finished executing component tasks.
    [11/15/2014 09:11:11.0529] [1] Ending processing Install-MailboxRole
    [11/15/2014 09:14:12.0977] [0] End of Setup
    [11/15/2014 09:14:12.0977] [0] **********************************************
    Additionally here is the 2 errors that are showing up in the event viewer for MSExachange Management:
    Exchange Management Console-Local
    2652
    45
    00:00:18.9698426
    View Entire Forest: 'True', Configuration Domain Controller: 'domaincontroller.xxx.xxx', Preferred Global Catalog: 'domaincontroller.xxx.xxx', Preferred Domain Controllers: '{ domaincontroller.xxx.xxx }'
    Microsoft.Exchange.Management.Deployment.ExsetdataException: An error occurred with error code '3221685950' and message 'The remote procedure call failed.'.
    0
    Exchange Management Console-Local
    2652
    9
    00:00:37.7834262
    View Entire Forest: 'True', Configuration Domain Controller: 'domaincontroller.xxx.xxx', Preferred Global Catalog: 'domaincontroller.xxx.xxx', Preferred Domain Controllers: '{ domaincontroller.xxx.xxx }'
    Microsoft.Exchange.Management.Deployment.ScriptExecutionException: The following error was generated when "$error.Clear(); buildToBuildUpgrade-ExsetdataAtom -AtomName Server -DomainController $RoleDomainController
    " was run: "An error occurred with error code '3221685950' and message 'The remote procedure call failed.'.". ---> Microsoft.Exchange.Management.Deployment.ExsetdataException: An error occurred with error code '3221685950' and message 'The
    remote procedure call failed.'. --- End of inner exception stack trace ---
    0
    Microsoft.Exchange.Management.Deployment.ExsetdataException: An error occurred with error code '3221685950' and message 'The remote procedure call failed.'.

    Hi,
    Please try to remove the Water mark and Action keys under
    HKLM\SOFTWARE\Microsoft\Exchangeserver\V14\MailboxRole
    After that, reboot the server and rerun the set up.
    This issue due to Exchange failed set up was trying to resume the previously failed setup rather than starting completely over.
    Best Regards.

  • Event ID: 5014, 5004 The DFS Replication Service is stopping communication with partner / Error 1726 (The remote procedure call failed.)

    I'm replicating between two servers in two sites (Server A - Server 2012 R2 STD, Server B - Server 2008 R2) over a VPN (Sonicwall Firewall).  Though the initial replication seems to be
    happening it is very slow (the folder in question is less than 3GB).  I'm seeing these in the event viewer every few minutes:
    The DFS Replication service is stopping communication with partner PPIFTC for replication group FTC due to an error. The service will retry the connection periodically.
    Additional Information:
    Error: 1726 (The remote procedure call failed.)
    and then....
    The DFS Replication service successfully established an inbound connection with partner PPIFTC for replication group FTC.
    Here are all my troubleshooting steps (keep in mind that our VPN is going through a SonicWall <--I increased the TCP timeout to 24 hours):
    -Increased TCP Timeout to 24 hours 
    -Added the following values on both sending and receiving members and rebooted server
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
    Value =DisableTaskOffload
    Type = DWORD
    Data = 1
    Value =EnableTCPChimney
    Type = DWORD
    Data = 0
    Value =EnableTCPA
    Type = DWORD
    Data = 0
    Value =EnableRSS
    Type = DWORD
    Data = 0
    ---------------------------------more troubleshooting--------------------------
    -Disabled AntiVirus on both members
    -Made sure DFSR TCP ports 135 & 5722 are open
    -Installed all hotfixes for 2008 R2 (http://support.microsoft.com/kb/968429) and rebooted
    -Ran NETSTAT –ANOBP TCP and the DFS executable results are listed below:
    Sending Member:
    [DFSRs.exe]
      TCP    10.x.x.x:53            0.0.0.0:0             
    LISTENING       1692
    [DFSRs.exe]
      TCP    10.x.x.x:54669        
    10.x.x.x:5722          TIME_WAIT       0
      TCP    10.x.x.x:54673        
    10.x.x.x:5722          ESTABLISHED     1656
     [DFSRs.exe]
      TCP    10.x.x.x:64773        
    10.x.x.x:389           ESTABLISHED     1692
    [DFSRs.exe]
      TCP    10.x.x.x:64787        
    10.x.x.x:389           ESTABLISHED     1656
     [DFSRs.exe]
      TCP    10.x.x.x:64795        
    10.x.x.x:389           ESTABLISHED     2104
    Receiving Member:
    [DFSRs.exe]
      TCP    10.x.x.x:56683        
    10.x.x.x:389           ESTABLISHED     7472
     [DFSRs.exe]
      TCP    10.x.x.x:57625        
    10.x.x.x:54886         ESTABLISHED     2808
    [DFSRs.exe]
      TCP    10.x.x.x:61759        
    10.x.x.x:57625         TIME_WAIT       0
      TCP    10.x.x.x:61760        
    10.x.x.x:57625         TIME_WAIT       0
      TCP    10.x.x.x:61763        
    10.x.x.x:57625         TIME_WAIT       0
      TCP    10.x.x.x:61764        
    10.x.x.x:57625         TIME_WAIT       0
      TCP    10.x.x.x:61770        
    10.x.x.x:57625         TIME_WAIT       0
      TCP    10.x.x.x:61771        
    10.x.x.x:57625         TIME_WAIT       0
      TCP    10.x.x.x:61774        
    10.x.x.x:57625         TIME_WAIT       0
      TCP    10.x.x.x:61775        
    10.x.x.x:57625         TIME_WAIT       0
      TCP    10.x.x.x:61776        
    10.x.x.x:57625         TIME_WAIT       0
      TCP    10.x.x.x:61777        
    10.x.x.x:57625         TIME_WAIT       0
      TCP    10.x.x.x:61778        
    10.x.x.x:57625         TIME_WAIT       0
      TCP    10.x.x.x:61779        
    10.x.x.x:57625         TIME_WAIT       0
      TCP    10.x.x.x:61784        
    10.x.x.x:52757         ESTABLISHED     7472
    [DFSRs.exe]
      TCP    10.x.x.x:63661        
    10.x.x.x:63781         ESTABLISHED     4880
    ------------------------------more troubleshooting--------------------------
    -Increased Staging to 32GB
    -Opened the ADSIedit.msc console to verify the "Authenticated Users" is set with the default READ permission on the following object:
    a. The computer object of the DFS server
    b. The DFSR-LocalSettings object under the DFS server computer object
    -Ran
    ping <var>10.x.x.x</var> -f -l 1472 and got replies back from both servers
    -AD replication is successful on all partners
    -Nslookup is working so DNS is working
    -Updated NIC drivers on both servers
    - I ran the following to set the Primary Member:
    dfsradmin Membership Set /RGName:<replication group name> /RFName:<replicated folder name> /MemName:<primary member> /IsPrimary:True
    Then Dfsrdiag Pollad /Member:<member name>
    I'm seeing these errors in the dfsr logs:
    20141014 19:28:17.746 9116 SRTR   957 [WARN] SERVER_EstablishSession Failed to establish a replicated folder session. connId:{45C8C309-4EDD-459A-A0BB-4C5FACD97D44} csId:{7AC7917F-F96F-411B-A4D8-6BB303B3C813}
    Error:
    + [Error:9051(0x235b) UpstreamTransport::EstablishSession upstreamtransport.cpp:808 9116 C The content set is not ready]
    + [Error:9051(0x235b) OutConnection::EstablishSession outconnection.cpp:532 9116 C The content set is not ready]
    + [Error:9051(0x235b) OutConnection::EstablishSession outconnection.cpp:471 9116 C The content set is not ready]
    ---------------------------------------more troubleshooting-----------------------------
    I've done a lot of research on the Internet and most of it is pointing to the same stuff I've tried.  Does anyone have any other suggestions?  Maybe I need to look somewhere
    else on the server side or firewall side? 
    I tried replicating from a 2012 R2 server to another 2012 server and am getting the same events in the event log so maybe it's not a server issue. 
    Some other things I'm wondering:
    -Could it be the speed of the NICs?  Server A is a 2012 Server that has Hyper-V installed.  NIC teaming was initially setup and since Hyper-V is installed the NIC is a "vEthernet
    (Microsoft Network Adapter Multiplexor Driver Virtual Switch) running at a speed of 10.0Gbps whereas Server B is running a single NIC at 1.0Gbps
    -Could occasional ping timeout's cause the issue?  From time to time I get a timeout but it's not as often as the events I'm seeing.  I'm getting 53ms pings.  The folder
    is only 3 GB so it shouldn't take that long to replicate but it's been days.  The schedule I have set for replication is mostly all day except for our backup times which start at 11pm-5am.  Throughout the rest of the time I have it set anywhere from
    4Mbps to 64 Kbps.  Server A is on a 5mb circuit and Server B is on a 10mb circuit. 

    I'm seeing the same errors, all servers are running 2008 R2 x64. Across multiple sites, VPN is steady and reliably.
    185 events from 12:28:21 to 12:49:25
    Events are for all five servers (one per office, five total offices, no two in the same city, across three states).
    Events are not limited to one replication group. I have quite a few replication groups, so I don't know for sure but I'm running under the reasonable assumption that none are spared.
    Reminder from original post (and also, yes, same for me), the error is: Error: 1726 (The remote procedure call failed.)
    Some way to figure out what code triggers an Event ID 5014, and what code therein specifies an Error 1726, would extremely helpful. Trying random command line/registry changes on live servers is exceptionally unappealing.
    Side note, 1726 is referenced here:
    https://support.microsoft.com/kb/976442?wa=wsignin1.0
    But it says, "This RPC connection problem may be caused by an unstable WAN connection." I don't believe this is the case for my system.
    It also says...
    For most RPC connection problems, the DFS Replication service will try to obtain the files again without logging a warning or an error in the DFS Replication log. You can capture the network trace to determine whether the cause of the problem is at the network
    layer. To examine the TCP ports that the DFS Replication service is using on replication partners, run the following command in a
    Command Prompt window:
    NETSTAT –ANOBP TCP
    This returns all open TCP connections. The connections in question are "DFSRs.exe", which the command won't let you filter for.
    Instead, I used the NETSTAT command as advertised, dumping output to info.txt:
    NETSTAT -ANOBP TCP >> X:\info.txt
    Then I opened Excel and manually opened the .TXT for the open wizard. I chose fixed-width fields based on the first row for each result, and then added a column:
    =IF(A3="Can not", "Can not obtain ownership information", IF(LEFT(A3,1) = "[", A3&B3&C3, ""))
    Dragging this down through the entire file let me see that row (Row F) as the file name. Some anomalies were present but none impacted DFSrs.exe results.
    Finally, you can sort/filter (I sorted because I like being able to see everything, should I choose to) to get just the results you need, with the partial rows removed from the result set, or bumped to the end.
    My server had 125 connections open.
    That is a staggering number of connections to review, and I feel like I'm looking for a needle in a haystack.
    I'll see if I can find anything useful out, but a better solution would be most wonderful.

  • Script level upgrade for database 'master' failed because upgrade step 'msdb110_upgrade.sql' encountered error 537, state 3, severity 16

    Hello,
    I've encountered issue during installation of SP1 to SQL Server 2012. After upgrade I'm getting this error in Event Log:
    Script level upgrade for database 'master' failed because upgrade step 'msdb110_upgrade.sql' encountered error 537, state 3, severity 16. This is a serious error condition which might interfere with regular operation and the database will be taken offline.
    If the error happened during upgrade of the 'master' database, it will prevent the entire SQL Server instance from starting. Examine the previous errorlog entries for errors, take the appropriate corrective actions and re-start the database so that the script
    upgrade steps run to completion.
    Can someone point me direction how I can fix it? This is a production server and currently only way to make it working is to use T902 flag in SQL Server startup params. I've found some suggestions to check Data path if it exists but it does so this is not
    the issue here. Any ideas?
    I've found also here
    http://www.sqlservercentral.com/Forums/Topic1377073-1550-1.aspx#bm1378279
    suggestions for similar issue with SQL Server 2008 which that I should do:
    Via ssms:
    From msdb:
    Delete:
    dc_admin role
    Dc_operator role
    Dc_proxy role
    UlitityCMRReader role
    UtilityIMRReader role
    UtilityIMRWriter role
    but for not I didn't tried it yet. This is standalone SQL Server instance.
    Any help really appreciated.
    Regards

    Script returns the same error.
    System databases:
    1    1    760    -1    10    1048578    0    1    master        C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\master.mdf
    2    0    12768    -1    10    1048642    0    1    mastlog        C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\mastlog.ldf
    1    1    1024    -1    10    1048578    0    2    tempdev        C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\tempdb.mdf
    2    0    64    -1    10    1048642    0    2    templog        C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\templog.ldf
    1    1    288    -1    128    2    0    3    modeldev    C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\model.mdf
    2    0    4464    -1    10    1048642    0    3    modellog    C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\modellog.ldf
    1    1    28936    -1    10    1048578    0    4    MSDBData    C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\MSDBData.mdf
    2    0    3352    268435456    10    1048642    0    4    MSDBLog    C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\MSDBLog.ldf
    are all in place where path shows.
    Before sending my message I've searched update script for "FROM master.sys.master_files" and I found script which you are showing me. I've made some digging and when I runned:
           SELECT physical_name
           FROM master.sys.master_files
           WHERE (name = N'master')
    it returned also path to one my customers database name which has filename set correctly but it's Logical DB name is master and mastlog. I'm running shared hosting company and I allow my customers to restore their DBs from .bak files but I have no idea why
    this customers logical name is set to master and mastlog. Probably when I change this names update script will work as it should. On the other hand in my opinion there should be some kind of fail safe mechanism for situations like this one.
    EDIT: After changing logical name for DB and log for mentioned DB your script runned fine so probably now when I remove T902 flag and restart my SQL Server update will run correctly. Big thanks for resolving this issue.

Maybe you are looking for