Lapas

ceturtdiena, 2018. gada 25. oktobris

Recycle Bin is corrupted

Run Command prompt as Administrator.

rd /s /q C:\$Recycle.bin

This clears out the $Recycle.bin folder from the C:\ partition. You may have to do this for each hard disk partition in your system

Source: https://social.technet.microsoft.com

ceturtdiena, 2018. gada 18. oktobris

otrdiena, 2018. gada 14. augusts

Remote desktop connection not working after CredSSP update

After Windows 10 1803 Cumulative update it's not allowed to connect with RDP to unpatched machines.
To disable security check - create DWORD AllowEncryptionOracle in registry:

HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\CredSSP\Parameters\
Set AllowEncryptionOracle = 2

Be aware that disabling security check makes your machine vulnerable!

Source:  support.microsoft.com

trešdiena, 2018. gada 25. jūlijs

otrdiena, 2018. gada 5. jūnijs

Send test email from PowerShell

Send-MailMessage -SMTPServer 192.168.0.1 -To to@email.com -From from@email.com -Subject "This is a test email" -Body "Hi, this is a test email"

Source: https://serverfault.com