2017-02-22 14:44:12 Postinstall started 2017-02-22 14:44:12 Detected role services: Api, UI, WidDatabase, Services 2017-02-22 14:44:12 Start: LoadSettingsFromParameters 2017-02-22 14:44:12 Content local is: True 2017-02-22 14:44:12 Content directory is: D:\WSUS 2017-02-22 14:44:12 SQL instname is: 2017-02-22 14:44:12 End: LoadSettingsFromParameters 2017-02-22 14:44:12 Start: Run 2017-02-22 14:44:12 Fetching WsusAdministratorsSid from registry store 2017-02-22 14:44:12 Value is S-1-5-21-2216339136-2639289519-3863758054-2538 2017-02-22 14:44:12 Fetching WsusReportersSid from registry store 2017-02-22 14:44:12 Value is S-1-5-21-2216339136-2639289519-3863758054-2539 2017-02-22 14:44:12 Configuring content directory... 2017-02-22 14:44:12 Configuring groups... 2017-02-22 14:44:12 Starting group configuration for WSUS Administrators... 2017-02-22 14:44:12 Found group in regsitry, attempting to use it... 2017-02-22 14:44:12 Searching for existing group... 2017-02-22 14:44:12 Existing group was found 2017-02-22 14:44:12 Writing group to registry... 2017-02-22 14:44:12 Finished group creation 2017-02-22 14:44:12 Starting group configuration for WSUS Reporters... 2017-02-22 14:44:12 Found group in regsitry, attempting to use it... 2017-02-22 14:44:12 Searching for existing group... 2017-02-22 14:44:12 Existing group was found 2017-02-22 14:44:12 Writing group to registry... 2017-02-22 14:44:12 Finished group creation 2017-02-22 14:44:12 Configuring permissions... 2017-02-22 14:44:12 Fetching content directory... 2017-02-22 14:44:12 Fetching ContentDir from registry store 2017-02-22 14:44:12 Value is D:\WSUS 2017-02-22 14:44:12 Fetching group SIDs... 2017-02-22 14:44:12 Fetching WsusAdministratorsSid from registry store 2017-02-22 14:44:12 Value is S-1-5-21-2216339136-2639289519-3863758054-2538 2017-02-22 14:44:12 Fetching WsusReportersSid from registry store 2017-02-22 14:44:12 Value is S-1-5-21-2216339136-2639289519-3863758054-2539 2017-02-22 14:44:12 Creating group principals... 2017-02-22 14:44:12 Granting directory permissions... 2017-02-22 14:44:12 Granting permissions on content directory... 2017-02-22 14:44:12 Granting registry permissions... 2017-02-22 14:44:12 Granting registry permissions... 2017-02-22 14:44:12 Granting registry permissions... 2017-02-22 14:44:12 Configuring shares... 2017-02-22 14:44:12 Configuring network shares... 2017-02-22 14:44:12 Fetching content directory... 2017-02-22 14:44:12 Fetching ContentDir from registry store 2017-02-22 14:44:12 Value is D:\WSUS 2017-02-22 14:44:12 Fetching WSUS admin SID... 2017-02-22 14:44:12 Fetching WsusAdministratorsSid from registry store 2017-02-22 14:44:12 Value is S-1-5-21-2216339136-2639289519-3863758054-2538 2017-02-22 14:44:12 Content directory is local, creating content shares... 2017-02-22 14:44:12 Creating share "UpdateServicesPackages" with path "D:\WSUS\UpdateServicesPackages" and description "A network share to be used by client systems for collecting all software packages (usually applications) published on this WSUS system." 2017-02-22 14:44:12 Deleting existing share... 2017-02-22 14:44:12 Creating share... 2017-02-22 14:44:12 Share successfully created 2017-02-22 14:44:12 Creating share "WsusContent" with path "D:\WSUS\WsusContent" and description "A network share to be used by Local Publishing to place published content on this WSUS system." 2017-02-22 14:44:12 Deleting existing share... 2017-02-22 14:44:12 Creating share... 2017-02-22 14:44:12 Share successfully created 2017-02-22 14:44:12 Creating share "WSUSTemp" with path "C:\Program Files\Update Services\LogFiles\WSUSTemp" and description "A network share used by Local Publishing from a Remote WSUS Console Instance." 2017-02-22 14:44:12 Deleting existing share... 2017-02-22 14:44:12 Creating share... 2017-02-22 14:44:12 Share successfully created 2017-02-22 14:44:12 Finished creating content shares 2017-02-22 14:44:12 Stopping service WSUSService 2017-02-22 14:44:12 Stopping service W3SVC 2017-02-22 14:44:14 Configuring WID database... 2017-02-22 14:44:14 Configuring the database... 2017-02-22 14:44:14 Establishing DB connection... 2017-02-22 14:44:14 Checking to see if database exists... 2017-02-22 14:44:14 Database exists 2017-02-22 14:44:14 Switching database to single user mode... 2017-02-22 14:44:17 Loading install type query... 2017-02-22 14:44:17 DECLARE @currentDBVersion int DECLARE @scriptMajorVersion int = (9600) DECLARE @scriptMinorVersion int = (16384) DECLARE @databaseMajorVersion int DECLARE @databaseMinorVersion int DECLARE @databaseBuildNumber nvarchar(10) IF NOT EXISTS(SELECT * FROM sys.databases WHERE name='SUSDB') BEGIN SELECT 1 END ELSE BEGIN SET @currentDBVersion = (SELECT SchemaVersion FROM SUSDB.dbo.tbSchemaVersion WHERE ComponentName = 'CoreDB') SET @databaseBuildNumber = (SELECT BuildNumber FROM SUSDB.dbo.tbSchemaVersion WHERE ComponentName = 'CoreDB') DECLARE @delimiterPosition INT = CHARINDEX('.', @databaseBuildNumber) IF (@delimiterPosition = 0) BEGIN RAISERROR('Invalid schema version number', 16, 1) with nowait return END SET @databaseMajorVersion = SUBSTRING(@databaseBuildNumber, 1, @delimiterPosition - 1) SET @databaseMinorVersion = SUBSTRING(@databaseBuildNumber, (@delimiterPosition + 1), (10 - @delimiterPosition)) IF @currentDBVersion < 926 BEGIN SELECT 3 END ELSE BEGIN IF (@scriptMajorVersion > @databaseMajorVersion OR (@scriptMajorVersion = @databaseMajorVersion AND @scriptMinorVersion > @databaseMinorVersion)) BEGIN SELECT 2 END ELSE IF (@scriptMajorVersion = @databaseMajorVersion AND @scriptMinorVersion = @databaseMinorVersion) BEGIN SELECT 0 END ELSE BEGIN SELECT 4 END END END 2017-02-22 14:44:17 Install type is: Reinstall 2017-02-22 14:44:17 Creating logins... 2017-02-22 14:44:17 Fetching account info for S-1-5-20 2017-02-22 14:44:17 Found principal 2017-02-22 14:44:17 Found account 2017-02-22 14:44:17 Got binary SID 2017-02-22 14:44:17 Fetching WsusAdministratorsSid from registry store 2017-02-22 14:44:17 Value is S-1-5-21-2216339136-2639289519-3863758054-2538 2017-02-22 14:44:17 Fetching account info for S-1-5-21-2216339136-2639289519-3863758054-2538 2017-02-22 14:44:17 Fetching account info for S-1-5-21-2216339136-2639289519-3863758054-2538 2017-02-22 14:44:17 Found principal 2017-02-22 14:44:17 Found account 2017-02-22 14:44:17 Got binary SID 2017-02-22 14:44:17 Setting content location... 2017-02-22 14:44:17 Fetching ContentDir from registry store 2017-02-22 14:44:17 Value is D:\WSUS 2017-02-22 14:44:17 Swtching DB to multi-user mode...... 2017-02-22 14:44:17 Finished setting multi-user mode 2017-02-22 14:44:17 Writing DB settings to registry... 2017-02-22 14:44:17 Marking PostInstall done for UpdateServices-WidDatabase in the registry... 2017-02-22 14:44:17 Starting service W3SVC 2017-02-22 14:44:17 Configuring IIS... 2017-02-22 14:44:17 Start: ConfigureWebsite 2017-02-22 14:44:17 Configuring website on port 8530 2017-02-22 14:44:27 2017-02-22 14:44:18 Info IISCustomAction Performing Setup Action, Command /Install 2017-02-22 14:44:26 Info IISCustomAction Command /Install Succeeded 2017-02-22 14:44:27 End: ConfigureWebsite 2017-02-22 14:44:27 Configuring performance counters... 2017-02-22 14:44:27 Configuring Stats.NET perf counter... 2017-02-22 14:44:27 Configuring reporting perf counter... 2017-02-22 14:44:27 Configuring client webservice perf counter... 2017-02-22 14:44:27 Configuring server sync webservice perf counter... 2017-02-22 14:44:27 Configuring API remoting perf counter... 2017-02-22 14:44:27 Bringing services online... 2017-02-22 14:44:27 Checking initialization status... 2017-02-22 14:44:27 Database needs initialization. 2017-02-22 14:44:27 StartServer starting... 2017-02-22 14:44:27 Generating encryption key to write to the registry... 2017-02-22 14:44:27 Generating encryption key to write to the database... 2017-02-22 14:44:27 Generating encryption key succeeded... 2017-02-22 14:44:27 Setting WSUSService to autostart... 2017-02-22 14:44:27 WSUSService is set to autostart. 2017-02-22 14:44:27 Starting WSUSService... 2017-02-22 14:44:27 WSUSService is now started. 2017-02-22 14:44:27 Importing default detectoids. 2017-02-22 14:44:27 Importing CriticalUpdates.xml... 2017-02-22 14:44:27 Importing Drivers.xml... 2017-02-22 14:44:27 Importing FeaturePacks.xml... 2017-02-22 14:44:27 Importing MicrosoftCorporation.xml... 2017-02-22 14:44:27 Importing SecurityUpdates.xml... 2017-02-22 14:44:27 Importing ServicePacks.xml... 2017-02-22 14:44:27 Importing Tools.xml... 2017-02-22 14:44:27 Importing UpdateRollups.xml... 2017-02-22 14:44:27 Importing Updates.xml... 2017-02-22 14:44:27 Importing Windows.xml... 2017-02-22 14:44:27 Importing Windows2000family.xml... 2017-02-22 14:44:27 Importing WindowsServer2003DatacenterEdition.xml... 2017-02-22 14:44:27 Importing WindowsServer2003Family.xml... 2017-02-22 14:44:27 Importing WindowsXPfamily.xml... 2017-02-22 14:44:27 Importing LocalPublisher.xml... 2017-02-22 14:44:27 Importing LocallyPublishedPackages.xml... 2017-02-22 14:44:27 Importing Applications.xml... 2017-02-22 14:44:27 Importing Exchange.xml... 2017-02-22 14:44:27 Importing Office.xml... 2017-02-22 14:44:27 Importing SQL.xml... 2017-02-22 14:44:27 Importing Exchange2000Server.xml... 2017-02-22 14:44:27 Importing ExchangeServer2003.xml... 2017-02-22 14:44:27 Importing OfficeXP.xml... 2017-02-22 14:44:27 Importing Office2003.xml... 2017-02-22 14:44:27 Importing SQLServer.xml... 2017-02-22 14:44:27 Importing WindowsXP64BitEditionVersion2003.xml... 2017-02-22 14:44:27 Importing DefinitionUpdateSusXml.xml... 2017-02-22 14:44:27 Importing ClientServicingApiDetectoid.xml... 2017-02-22 14:44:27 Importing default detectoids succeeded. 2017-02-22 14:44:27 Creating default subscription. 2017-02-22 14:44:27 Instantiating UpdateServer 2017-02-22 14:44:28 CreateDefaultSubscription failed. Exception: System.InvalidOperationException: Client found response content type of '', but expected 'text/xml'. The request failed with an empty response. at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall) at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters) at Microsoft.UpdateServices.Internal.ApiRemoting.GetServerVersion() at Microsoft.UpdateServices.Internal.DatabaseAccess.AdminDataAccessProxy.GetServerVersion() at Microsoft.UpdateServices.Internal.BaseApi.UpdateServer.CreateUpdateServer(String serverName, Boolean useSecureConnection, Int32 portNumber) at Microsoft.UpdateServices.Internal.BaseApi.UpdateServer..ctor(Boolean bypassApiRemoting) at Microsoft.UpdateServices.Setup.StartServer.StartServer.CreateDefaultSubscription() 2017-02-22 14:44:28 StartServer encountered errors. Exception=Client found response content type of '', but expected 'text/xml'. The request failed with an empty response. 2017-02-22 14:44:28 Microsoft.UpdateServices.Administration.CommandException: Failed to start and configure the WSUS service at Microsoft.UpdateServices.Administration.PostInstall.Run() at Microsoft.UpdateServices.Administration.PostInstall.Execute(String[] arguments)