Sie befinden sich aktuell in den Techblog - Tim Wanierke Blog-Archiven für den folgenden Tag 7.4.2009.
- Betriebsysteme (21)
- Hardware (12)
- Home (1)
- HOWTO / Guides (9)
- Microsoft (81)
- Performance Analyse (3)
- Programmieren (2)
- Projektmanagement (2)
- Tools (34)
- VMWare (10)
- Windows 2000 (11)
- Windows 2003 (14)
- Windows 2008 (30)
- Windows 7 (14)
- 25.8.2011: Authoritative Restore of Active Directory Objects
- 17.8.2011: User State Migration Tool GUI - MUST
- 12.8.2011: Auflisten von Änderungen eines Active Directory Objektes mittels "repadmin"
- 29.6.2011: PKI , Kerberos and Smart Cards
- 22.6.2011: Active Directory Domain member: Maximum machine account password age
- 16.6.2011: Export and import GPO from one domain to another
- 26.5.2011: Unable To Reconnect To Terminal Server In Application Mode
- 11.5.2011: How to use the EventCombMT utility to search event logs
- 5.5.2011: Phantoms, tombstones and the infrastructure master - Event ID 1419 generated on a domain controller
- 4.5.2011: Forest Trust - Name Suffix Routing
- August 2011
- Juni 2011
- Mai 2011
- März 2011
- Februar 2011
- Januar 2011
- Dezember 2010
- November 2010
- Oktober 2010
- September 2010
- August 2010
- Juli 2010
- Juni 2010
- Mai 2010
- April 2010
- März 2010
- Februar 2010
- Januar 2010
- Dezember 2009
- November 2009
- Oktober 2009
- September 2009
- August 2009
- Juli 2009
- Juni 2009
- Mai 2009
- April 2009
- März 2009
- Februar 2009
- Januar 2009
Archive für 7.4.2009
Check if VSS ( Volume Shadow Copy Service ) is working on a Windows 2003 Server
7.4.2009 von Tim Wanierke.
1. Open command box and type the following command “VSSAdmin list writers”
All VSS writers should be listed with “no error”
If a writer has an error you can repair the writer using the follwoing article.
Link : http://techblog.wanierke.de/2009/02/13/howto-repair-vss-writers/
2. Check the “COM+” services.
There should be listed two “COM+” services in the “services.msc” SnapIn.
3. Check the “Volume Shadow Copy Service” status.
The status of this service should be “Started”.
4. Perform a test backup of the systemstat using “ntbackup”.
Open a command box and type the following command
“ntbackup.exe backup SYSTEMSTATE /f “C:\Systemstate_VSS_Test.bkf”
When the backup runs without any errors please delete this file afterwards “C:\Systemstate_VSS_Test.bkf”
5. Check the fragmentation of all disks.
Open a command box and type the following command to check if the drive needs to be defragment.
“defrag <VOLUME> -a”If the drive is fragmented, please use the following command to defragment the drive.
“defrag <VOLUME> -f -v”
6. Check if there is enough free disk space on the volumes. There sould be at least 10% free disk space.
You can check the free disk space of the drives via the MMC SnapIn “diskmgmt.msc” ( Disk Management )
7. Check if Windows Server 2003 SP2 is already installed. This service pack contains some VSS hotfixes.
Install SP2 on the server.
8. Check if the latest VSS hotfix ( KB940349 ) is installed on the server.
Install the VSS Update KB940349 on the server.
Link : http://www.microsoft.com/downloads/details.aspx?FamilyId=AE17B7EF-3C02-496A-BB46-770C04E42B5C&displaylang=en
Geschrieben in Windows 2003 | Drucken | Keine Kommentare »
Systembetriebszeit auslesen bzw. ermitteln
7.4.2009 von Tim Wanierke.
Um die Systembetriebszeit eines Windows Servers zu ermitteln kann man wie folgt vorgehen:
Windows Server 2003:
systeminfo | find “System Up Time” ( englisch )
systeminfo | find “Systembetriebszeit” ( deutsch )
Windows NT / 2000 ( mit installierten PSInfo )
PSInfo Link : http://technet.microsoft.com/de-de/sysinternals/bb897550.aspx
psinfo | find “Uptime” ( englisch und deutsch )
Windows NT / 2000 ( ohne installiertem PSInfo )
Blick auf die Netzwerkkarte/Uptime: “net statistics server” werfen.
Danke an Ulli Gruber !!!!
Geschrieben in Microsoft | Drucken | Keine Kommentare »