Category Archives: IT

all about hardware and software

Windows Device Manager: show all devices

in einem CMD folgendes eingeben: set devmgr_show_nonpresent_devices=1 start devmgmt.msc nun im Gerätemanager unter Ansicht/Ausgeblendete Geräte anzeigen wählen. so kann man zB nicht mehr vorhandene Netzwerkkarten entfernen.

Posted in Microsoft | Tagged , , | Comments Off on Windows Device Manager: show all devices

Bash Script zum Schwanzlänge messen…

  #!/bin/sh echo `uptime|grep days|sed ‘s/.*up \([0-9]*\) day.*/\1\/10+/’; \ cat /proc/cpuinfo|grep MHz|awk ‘{print $4″/30 +”;}’; free|grep ‘^Mem’ \ | awk ‘{print $3″/1024/3+”}’; df -P -k -x nfs | grep -v 1k \ | awk ‘{if ($1 ~ “/dev/(scsi|sd)”){ s+= $2} … Continue reading

Posted in Linux | Tagged , | Comments Off on Bash Script zum Schwanzlänge messen…

back script

vi /usr/bin/back #!/bin/bash if ! [ -f $1 ]; then echo “File ‘$1’ does not exist!” exit 1 fi if [ -f $1.$(date +%d%m%Y) ]; then counter=2 while [ -f $1.$(date +%d%m%Y)_$counter ]; do let counter=$counter+1 done cp $1 $1.$(date … Continue reading

Posted in Linux | Comments Off on back script

vCenter Sysprep Files

vCenter benötigt für den Customization Wizard die Sysprep Files für die alten Windows Betriebssysteme (Win2k, WinXP, Win2k3). Ab Vista werden sie nicht mehr benötigt… Sysprep 1.1 files Location: C:Documents and SettingsAll UsersApplication DataVMwareVMware VirtualCentersysprep1.1 Download: [download] Instructions: Extract the EXE … Continue reading

Posted in VMware | Tagged | Comments Off on vCenter Sysprep Files