Posted On November 4, 2020

Some WSUS Troubleshooting Notes

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Some WSUS Troubleshooting Notes
Some errors and interpretations:
  • 0x8024401c: networking generic error
  • 0x80244022: downloading generic error
 
 
Check WSUS settings on a local machine:
PS C:\Users\congo> get-itemproperty 'Registry::HKLM\Software\Policies\Microsoft\Windows\WindowsUpdate'

TargetGroupEnabled : 1
TargetGroup : Server
WUServer :
WUStatusServer :
UpdateServiceUrlAlternate :
PSPath : Microsoft.PowerShell.Core\Registry::HKLM\Software\Policies\Microsoft\Windows\WindowsUpdate
PSParentPath : Microsoft.PowerShell.Core\Registry::HKLM\Software\Policies\Microsoft\Windows
PSChildName : WindowsUpdate
PSProvider : Microsoft.PowerShell.Core\Registry

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Update CSV File Using Active Directory

# adAccountsCsvUpdate.ps1 $originalCsv='C:\Users\rambo\Desktop\kimconnectUsers.csv' $newCsv='C:\Users\rambo\Desktop\kimconnectUsers-processed.csv' $newEmailSuffix='@kimconnect.com' $newOu='OU=Test,DC=kimconnect,DC=com' function adAccountsCsvUpdate{ param( $originalCsv, $newCsv, $newEmailSuffix, $newOu ) function…

Common Windows Maintenance using PowerShell

# Install Windows Features:Install-WindowsFeature SNMP-Service -IncludeManagementToolsInstall-WindowsFeature -name Telnet-Client Install-Module Posh-SSH -Force# Disable Service:sc config "SERVICE_NAME"…

Overview of Veeam Backup and Restore

Prepare the Environment Permissions - Active Directory: create a service account as a member of…