WSManFault -2144108526 0x80338012
This can occur if the local machine [::] is not added to the list of allowed listeners. Run the below to correct. winrm qc should not return the error. winrm enumerate winrm/config/listener should also return data.
This can occur if the local machine [::] is not added to the list of allowed listeners. Run the below to correct. winrm qc should not return the error. winrm enumerate winrm/config/listener should also return data.
Install-WindowsFeature -Name UpdateServices-Services,UpdateServices-DB -IncludeManagementTools You can get away with not uninstalling WSUS entirely. Stop the related services, delete the DB and run the post-install. .\wsusutil.exe postinstall SQL_INSTANCE_NAME=”DC1\SQL2008″ It’s also recommended to delete the MMC console data as that can sometimes prevent the postinstall from creating the database. This can be found here: Try removing the … Read more
1. Open PowerShell as admin. 2. Stop the WSUS service and IIS Service with the following command: stop-service WSUSService, W3SVC Verify that both are stopped by running get-service WSUSService, W3SVC It should look something like this: 3. Open SQL Server Management Studio and connect to the instance for SUSDB. How you connect via SQL Server Management … Read more