Reinstalling WSUS

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

Recreating the SUSDB and WSUS Content folder for a Windows Server 2012 based computer

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

Resolve Plex Indirect on LAN

DNS Resolver (Unbound) Unbound has similar protections to dnsmasq, using its “Private Address support” option. With that option enabled RFC1918 addresses are stripped away from DNS answers. Additionally, the DNSSEC validator may mark the answers bogus. Individual domains can be excluded from DNS rebinding protection using the Custom Options on the Unbound general settings. Enter … Read more

yellow-triangle-over-network-connection-status-how-to-fix-it

Network Connection Status Indicator (NCSI) The Network Connection Status Indicator (NCSI) is part of NlaSvc (Network Location Awareness Service) and it basically serves the purpose of checking if we can reach Internet or not: the check is performed using the NLM_CONNECTIVITY Network List Manager native APIs (read here for more info). The applications and services installed on our system can fetch the result … Read more

Add Application to Windows 10 Startup

1. Hold the windows key+R and bring up the run dialog box and type in “regedit” and hit enter 2. Navigate to this registry key location: 3.  Right click on the right side of the panel and go to New->String value and that will create a new string value that you can rename to the … Read more

How to enable the Disk Cleanup tool on Windows Server

For some odd reason Microsoft decided to leave this feature disabled by default, and place it within a optional feature set called “Desktop Experience.” If your hard drive is getting full, and you wish to do a disk cleanup, there are two ways to enable the Disk Cleanup tool.  We recommend using Option #2 below … Read more