#!/bin/sh

# This script updates the Windows registy

for i in /usr/lib/wine/reg/*.reg; do
  regedit $i >/dev/null 2>/dev/null
  echo "The Windows registy updated by $i"
done
