Posted On March 31, 2019

Server Cleanup

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Server Cleanup
Install msizap.exe by installing the SDK package .
Run msizap to clean up temporary files
 
Discover how many people are logged on:
Download Systernals: https://learn.microsoft.com/en-us/sysinternals/downloads/sysinternals-suite
PSEXEC \\servername NET SESSION | FIND /C “\\”

Leave a Reply

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

Related Post

PowerShell: Create Registry Keys within Windows Localhost

# createRegKey.ps1 $regKeys=@( @{ hive='REGISTRY::HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome'; name='ChromeCleanupEnabled'; value=0 } @{ hive='REGISTRY::HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome'; name='ChromeCleanupReportingEnabled'; value=0 } ) function…

Add a Domain Group to Local Administrators Group

$checkGroup="Administrators" $addMember="KIMCONNECT\Desktop Admins" # Dynamic Credential $who = whoami if ($who.substring($who.length-2, 2) -eq "-admin"){$username=$who;} else…

Windows Update Error Code 0x80244022

Symptom: There were some problems installing updates, but we'll try again later. If you keep…