25 Mart 2021 Perşembe

Windows sfc komutu - System File Checker

Örnek
Şöyle yaparız
sfc /scannow
Açıklaması şöyle
The sfc /scannow command will scan all protected system files, and replace corrupted files with a cached copy that is located in a compressed folder at %WinDir%\System32\dllcache. The %WinDir% placeholder represents the Windows operating system folder. For example, C:\Windows.

8 Mart 2021 Pazartesi

Powershell Set-Clipboard

Örnek
Şöyle yaparız
$date =  get-date -format "dd-MM-yyyy hh:mm:ss"

$name = "Graeme"

$clipboard = $date + " " + $name

$clipboard | Set-Clipboard