Windows – remote neu starten

Interaktiv:

c:\> shutdown /i

Von der Kommandozeile:

c:\> shutdown /m \\REMOTEPC /r /f

Mit einem anderen Benutzer / Kennwort

net use \\REMOTEPC\IPC$ /user:USER
shutdown /r /f /t 0 /m \\REMOTEPC

IIS7 – SSLv2 und SSLv3 deaktivieren

In der PowerShell als Administrator

md 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Server' -Force
New-ItemProperty -path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Server' -name Enabled -value 0 -PropertyType 'DWord' -Force
md 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0' -Force
md 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0\Server' -Force
New-ItemProperty -path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0\Server' -name 'Enabled' -value 0 -PropertyType 'DWord' -Force
Restart-Computer -Force -Confirm