1. 2014-04-21 10:21:58 Postinstall started
  2. 2014-04-21 10:21:58 Detected role services: Api, UI, WidDatabase, Services
  3. 2014-04-21 10:21:58 Start: LoadSettingsFromParameters
  4. 2014-04-21 10:21:58 Content local is: True
  5. 2014-04-21 10:21:58 Content directory is: C:\WSUS
  6. 2014-04-21 10:21:58 SQL instname is:
  7. 2014-04-21 10:21:58 End: LoadSettingsFromParameters
  8. 2014-04-21 10:21:58 Start: Run
  9. 2014-04-21 10:21:58 Configuring content directory...
  10. 2014-04-21 10:21:58 Configuring groups...
  11. 2014-04-21 10:21:58 Starting group configuration for WSUS Administrators...
  12. 2014-04-21 10:21:58 Found group in regsitry, attempting to use it...
  13. 2014-04-21 10:21:58 Searching for existing group...
  14. 2014-04-21 10:21:58 Existing group was found
  15. 2014-04-21 10:21:58 Writing group to registry...
  16. 2014-04-21 10:21:58 Finished group creation
  17. 2014-04-21 10:21:58 Starting group configuration for WSUS Reporters...
  18. 2014-04-21 10:21:58 Found group in regsitry, attempting to use it...
  19. 2014-04-21 10:21:58 Searching for existing group...
  20. 2014-04-21 10:21:58 Existing group was found
  21. 2014-04-21 10:21:58 Writing group to registry...
  22. 2014-04-21 10:21:58 Finished group creation
  23. 2014-04-21 10:21:58 Configuring permissions...
  24. 2014-04-21 10:21:58 Fetching content directory...
  25. 2014-04-21 10:21:58 Fetching ContentDir from registry store
  26. 2014-04-21 10:21:58 Value is C:\WSUS
  27. 2014-04-21 10:21:58 Fetching group SIDs...
  28. 2014-04-21 10:21:58 Fetching WsusAdministratorsSid from registry store
  29. 2014-04-21 10:21:58 Value is S-1-5-21-468459533-1350957897-3903369320-1604
  30. 2014-04-21 10:21:58 Fetching WsusReportersSid from registry store
  31. 2014-04-21 10:21:58 Value is S-1-5-21-468459533-1350957897-3903369320-1605
  32. 2014-04-21 10:21:58 Creating group principals...
  33. 2014-04-21 10:21:59 Granting directory permissions...
  34. 2014-04-21 10:21:59 Granting permissions on content directory...
  35. 2014-04-21 10:21:59 Granting registry permissions...
  36. 2014-04-21 10:21:59 Granting registry permissions...
  37. 2014-04-21 10:21:59 Granting registry permissions...
  38. 2014-04-21 10:21:59 Configuring shares...
  39. 2014-04-21 10:21:59 Configuring network shares...
  40. 2014-04-21 10:21:59 Fetching content directory...
  41. 2014-04-21 10:21:59 Fetching ContentDir from registry store
  42. 2014-04-21 10:21:59 Value is C:\WSUS
  43. 2014-04-21 10:21:59 Fetching WSUS admin SID...
  44. 2014-04-21 10:21:59 Fetching WsusAdministratorsSid from registry store
  45. 2014-04-21 10:21:59 Value is S-1-5-21-468459533-1350957897-3903369320-1604
  46. 2014-04-21 10:21:59 Content directory is local, creating content shares...
  47. 2014-04-21 10:21:59 Creating share "UpdateServicesPackages" with path "C:\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."
  48. 2014-04-21 10:21:59 Deleting existing share...
  49. 2014-04-21 10:21:59 Creating share...
  50. 2014-04-21 10:21:59 Share successfully created
  51. 2014-04-21 10:21:59 Creating share "WsusContent" with path "C:\WSUS\WsusContent" and description "A network share to be used by Local Publishing to place published content on this WSUS system."
  52. 2014-04-21 10:21:59 Deleting existing share...
  53. 2014-04-21 10:21:59 Creating share...
  54. 2014-04-21 10:21:59 Share successfully created
  55. 2014-04-21 10:21:59 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."
  56. 2014-04-21 10:21:59 Deleting existing share...
  57. 2014-04-21 10:21:59 Creating share...
  58. 2014-04-21 10:21:59 Share successfully created
  59. 2014-04-21 10:21:59 Finished creating content shares
  60. 2014-04-21 10:21:59 Configuring WID database...
  61. 2014-04-21 10:21:59 Configuring the database...
  62. 2014-04-21 10:21:59 Establishing DB connection...
  63. 2014-04-21 10:21:59 Checking to see if database exists...
  64. 2014-04-21 10:21:59 Database exists
  65. 2014-04-21 10:21:59 Switching database to single user mode...
  66. 2014-04-21 10:22:00 Loading install type query...
  67. 2014-04-21 10:22:00 DECLARE @currentScriptVersion int
  68. DECLARE @currentDBVersion int
  69. IF NOT EXISTS(SELECT * FROM sys.databases WHERE name='SUSDB')
  70. BEGIN
  71. SELECT 1
  72. END
  73. ELSE
  74. BEGIN
  75. SET @currentScriptVersion = (9200 + 16384)
  76. SET @currentDBVersion = (SELECT SchemaVersion FROM SUSDB.dbo.tbSchemaVersion WHERE ComponentName = 'CoreDB')
  77. IF @currentDBVersion < 926
  78. BEGIN
  79. SELECT 3
  80. END
  81. ELSE IF @currentDBVersion < @currentScriptVersion
  82. BEGIN
  83. SELECT 2
  84. END
  85. ELSE IF @currentDBVersion = @currentScriptVersion
  86. BEGIN
  87. SELECT 0
  88. END
  89. ELSE
  90. BEGIN
  91. SELECT 4
  92. END
  93. END
  94.  
  95. 2014-04-21 10:22:00 Install type is: Reinstall
  96. 2014-04-21 10:22:00 Creating logins...
  97. 2014-04-21 10:22:00 Fetching account info for S-1-5-20
  98. 2014-04-21 10:22:00 Found principal
  99. 2014-04-21 10:22:00 Found account
  100. 2014-04-21 10:22:00 Got binary SID
  101. 2014-04-21 10:22:00 Fetching WsusAdministratorsSid from registry store
  102. 2014-04-21 10:22:00 Value is S-1-5-21-468459533-1350957897-3903369320-1604
  103. 2014-04-21 10:22:00 Fetching account info for S-1-5-21-468459533-1350957897-3903369320-1604
  104. 2014-04-21 10:22:00 Fetching account info for S-1-5-21-468459533-1350957897-3903369320-1604
  105. 2014-04-21 10:22:00 Found principal
  106. 2014-04-21 10:22:00 Found account
  107. 2014-04-21 10:22:00 Got binary SID
  108. 2014-04-21 10:22:00 Setting content location...
  109. 2014-04-21 10:22:00 Fetching ContentDir from registry store
  110. 2014-04-21 10:22:00 Value is C:\WSUS
  111. 2014-04-21 10:22:00 Swtching DB to multi-user mode......
  112. 2014-04-21 10:22:01 Finished setting multi-user mode
  113. 2014-04-21 10:22:01 Writing DB settings to registry...
  114. 2014-04-21 10:22:01 Marking PostInstall done for UpdateServices-WidDatabase in the registry...
  115. 2014-04-21 10:22:01 Configuring IIS...
  116. 2014-04-21 10:22:01 Start: ConfigureWebsite
  117. 2014-04-21 10:22:01 Configuring website on port 8530
  118. 2014-04-21 10:22:16 2014-04-21 10:22:01 Info IISCustomAction Performing Setup Action, Command /Install
  119. 2014-04-21 10:22:16 Info IISCustomAction Command /Install Succeeded
  120.  
  121. 2014-04-21 10:22:16 End: ConfigureWebsite
  122. 2014-04-21 10:22:16 Configuring performance counters...
  123. 2014-04-21 10:22:16 Configuring Stats.NET perf counter...
  124. 2014-04-21 10:22:16 Configuring reporting perf counter...
  125. 2014-04-21 10:22:16 Configuring client webservice perf counter...
  126. 2014-04-21 10:22:16 Configuring server sync webservice perf counter...
  127. 2014-04-21 10:22:16 Configuring API remoting perf counter...
  128. 2014-04-21 10:22:16 Bringing services online...
  129. 2014-04-21 10:22:16 Checking initialization status...
  130. 2014-04-21 10:22:17 StartServer starting...
  131. 2014-04-21 10:22:17 Generating encryption key to write to the registry...
  132. 2014-04-21 10:22:17 Generating encryption key to write to the database...
  133. 2014-04-21 10:22:17 Generating encryption key succeeded...
  134. 2014-04-21 10:22:17 Setting WSUSService to autostart...
  135. 2014-04-21 10:22:17 WSUSService is set to autostart.
  136. 2014-04-21 10:22:17 Starting WSUSService...
  137. 2014-04-21 10:22:17 WSUSService is now started.
  138. 2014-04-21 10:22:17 Importing default detectoids.
  139. 2014-04-21 10:22:17 Importing CriticalUpdates.xml...
  140. 2014-04-21 10:22:18 Importing Drivers.xml...
  141. 2014-04-21 10:22:18 Importing FeaturePacks.xml...
  142. 2014-04-21 10:22:18 Importing MicrosoftCorporation.xml...
  143. 2014-04-21 10:22:18 Importing SecurityUpdates.xml...
  144. 2014-04-21 10:22:18 Importing ServicePacks.xml...
  145. 2014-04-21 10:22:18 Importing Tools.xml...
  146. 2014-04-21 10:22:18 Importing UpdateRollups.xml...
  147. 2014-04-21 10:22:18 Importing Updates.xml...
  148. 2014-04-21 10:22:18 Importing Windows.xml...
  149. 2014-04-21 10:22:18 Importing Windows2000family.xml...
  150. 2014-04-21 10:22:18 Importing WindowsServer2003DatacenterEdition.xml...
  151. 2014-04-21 10:22:18 Importing WindowsServer2003Family.xml...
  152. 2014-04-21 10:22:18 Importing WindowsXPfamily.xml...
  153. 2014-04-21 10:22:18 Importing LocalPublisher.xml...
  154. 2014-04-21 10:22:18 Importing LocallyPublishedPackages.xml...
  155. 2014-04-21 10:22:18 Importing Applications.xml...
  156. 2014-04-21 10:22:18 Importing Exchange.xml...
  157. 2014-04-21 10:22:18 Importing Office.xml...
  158. 2014-04-21 10:22:19 Importing SQL.xml...
  159. 2014-04-21 10:22:19 Importing Exchange2000Server.xml...
  160. 2014-04-21 10:22:19 Importing ExchangeServer2003.xml...
  161. 2014-04-21 10:22:19 Importing OfficeXP.xml...
  162. 2014-04-21 10:22:19 Importing Office2003.xml...
  163. 2014-04-21 10:22:19 Importing SQLServer.xml...
  164. 2014-04-21 10:22:19 Importing WindowsXP64BitEditionVersion2003.xml...
  165. 2014-04-21 10:22:19 Importing DefinitionUpdateSusXml.xml...
  166. 2014-04-21 10:22:19 Importing ClientServicingApiDetectoid.xml...
  167. 2014-04-21 10:22:19 Importing default detectoids succeeded.
  168. 2014-04-21 10:22:21 FixSubscriptionCategories failed. Exception: System.Web.Services.Protocols.SoapException: System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.TypeInitializationException: The type initializer for 'Microsoft.UpdateServices.Internal.ApiRemoting' threw an exception. ---> System.UnauthorizedAccessException: Access to the path 'Update Services' is denied.
  169. at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
  170. at System.IO.Directory.InternalCreateDirectory(String fullPath, String path, Object dirSecurityObj, Boolean checkHost)
  171. at System.IO.Directory.InternalCreateDirectoryHelper(String path, Boolean checkHost)
  172. at System.IO.Directory.CreateDirectory(String path)
  173. at Microsoft.UpdateServices.Log.GetUsableLogFileName(String fileName, LogFileLocation& actualLogLocation)
  174. at Microsoft.UpdateServices.Log.InitializeFromConfig()
  175. at Microsoft.UpdateServices.Log.InitializeIfNeeded()
  176. at Microsoft.UpdateServices.Internal.ApiRemoting..cctor()
  177. --- End of inner exception stack trace ---
  178. at Microsoft.UpdateServices.Internal.ApiRemoting..ctor()
  179. --- End of inner exception stack trace ---
  180. at Microsoft.UpdateServices.Internal.BaseApi.SoapExceptionProcessor.DeserializeAndThrow(SoapException soapException)
  181. at Microsoft.UpdateServices.Internal.DatabaseAccess.AdminDataAccessProxy.GetServerVersion()
  182. at Microsoft.UpdateServices.Internal.BaseApi.UpdateServer.CreateUpdateServer(String serverName, Boolean useSecureConnection, Int32 portNumber)
  183. at Microsoft.UpdateServices.Internal.BaseApi.UpdateServer..ctor(Boolean bypassApiRemoting)
  184. at Microsoft.UpdateServices.Setup.StartServer.StartServer.FixSubscriptionCategories()
  185. 2014-04-21 10:22:21 StartServer encountered errors. Exception=System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.TypeInitializationException: The type initializer for 'Microsoft.UpdateServices.Internal.ApiRemoting' threw an exception. ---> System.UnauthorizedAccessException: Access to the path 'Update Services' is denied.
  186. at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
  187. at System.IO.Directory.InternalCreateDirectory(String fullPath, String path, Object dirSecurityObj, Boolean checkHost)
  188. at System.IO.Directory.InternalCreateDirectoryHelper(String path, Boolean checkHost)
  189. at System.IO.Directory.CreateDirectory(String path)
  190. at Microsoft.UpdateServices.Log.GetUsableLogFileName(String fileName, LogFileLocation& actualLogLocation)
  191. at Microsoft.UpdateServices.Log.InitializeFromConfig()
  192. at Microsoft.UpdateServices.Log.InitializeIfNeeded()
  193. at Microsoft.UpdateServices.Internal.ApiRemoting..cctor()
  194. --- End of inner exception stack trace ---
  195. at Microsoft.UpdateServices.Internal.ApiRemoting..ctor()
  196. --- End of inner exception stack trace ---
  197. 2014-04-21 10:22:21 Microsoft.UpdateServices.Administration.CommandException: Failed to start and configure the WSUS service
  198. at Microsoft.UpdateServices.Administration.PostInstall.Run()
  199. at Microsoft.UpdateServices.Administration.PostInstall.Execute(String[] arguments)