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

Pihole Error: Tried 100 Times to Connect to FTL Server

Error Message: DataTables warning: table id=all-queries - Tried 100 times to connect to FTL server,…

PowerShell: Enable TLS 1.2 on Windows

function enableTls12{ try{ $null=New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server' -Force $null=New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client' -Force $null=New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server'…

PowerShell: Quick 1-Liner to Locate Path to Executable

PS C:\Users\tester> (get-command robocopy.exe) | select DefinitionDefinition----------C:\Program Files (x86)\Windows Resource Kits\Tools\robocopy.exeC:\Windows\system32\Robocopy.exe