# General

### Tasklist

```batch
tasklist /svc
```

### ENV variables

```batch
set
```

### Detailed OS Information

```batch
systeminfo
systeminfo | findstr /B /C:"OS Name" /C:"OS Version" 
```

### Patches and Updates

{% tabs %}
{% tab title="Cmd" %}

```batch
wmic qfe get Caption,Description,HotFixID,InstalledOn 
```

{% endtab %}

{% tab title="PowerShell" %}

```powershell
Get-HotFix | ft -AutoSize
```

{% endtab %}
{% endtabs %}
