Archive for the ‘Windows Server 2008’ Category

Microsoft Windows Server 2008 R2 – set defragmentation schedules

Mittwoch, Juni 19th, 2013

mswindows_logo.jpg   Defragmentation in virtual machines is a topic that should not be ignored – in fact a defragmented virtual machine can provide an amazing performance difference. The built-in scheduled task is not enabled by default but you can do it – then your task is enabled and on every wednesday at 01:00 the defrag task will be running – in a virtualized environment with 100+ VM´s can impact on your storage system quite seriously if all VM´s start to defrag at the same time – one way to mitigate this is to set the start day and start time different on all machines

$hour = Get-Random -Minimum 0 -Maximum 24
$day = Get-Random -input “Monday”, “Tuesday”, “Wednesday”, “Thursday”, “Friday”, “Saturday”, “Sunday”
$date = Get-Date
$at = Get-Date “$($a.Month)/$($a.day)/$($a.Year) $($hour):00″
$Trigger = New-ScheduledTaskTrigger -Weekly -at $at -DaysOfWeek $day
Set-ScheduledTask -TaskName ScheduledDefrag -TaskPath \Microsoft\Windows\Defrag\ -Trigger $Trigger | Out-Null

 

W2k8r2_Defrag_01

Microsoft Windows Server 2008 R2 – NFS Account Mapping

Mittwoch, Mai 1st, 2013

mswindows_logo.jpg   Microsoft Windows Server 2008 R2 – NFS Account Mapping

MS_W2k8_NFS_02

Microsoft Windows Server 2008 R2 – adding a NFS Share to VMware vSphere Server as a Datastore

Mittwoch, Mai 1st, 2013

mswindows_logo.jpgMost people don’t realize it but Microsoft Windows Server 2008 R2 comes with a decent and simple to use NFS component – so you can change a simple File Server for example in a Shared Storage for VMware vSphere Server

MS_W2k8_NFS_01

Microsoft Security Bulletin MS13-036 – es wird empfohlen das Update KB2823324 zu deinstallieren

Freitag, April 12th, 2013

mswindows_logo.jpg   Eigentlich sollte das Update KB2823324 ein Problem mit dem Dateisystemtreiber NTFS.sys beheben – nach der Installation des Patches startet unter Umständen jedoch Windows nicht mehr. Microsoft rät daher seinen Kunden das in dieser Woche verteilte Update so schnell wie möglich wieder zu deinstallieren

Microsoft_MS13-036_01

BridgeHead File Archiving Agent – a simple policy interface to locate content that is a candidate to be repositioned for more efficient storage

Freitag, März 15th, 2013

BridgeHead_logo   BridgeHead File Archiving Agent allows hospitals to create policies to identify content that could be better or more efficiently managed – typically this will mean removing older content from a primary storage system to a lower tier less expensive storage environment. However the File Archiving Agent ensures that users or applications are unimpeded by this relocation of content by honouring any previous links to that data – with no loss of performance or functionality

BridgeHead_FileArchivingAgent_01

Microsoft Windows Server 2008 R2 – remote desktop sessions do not completely exit and you cannot establish new remote desktop session

Donnerstag, Februar 7th, 2013

mswindows_logo.jpg   Article ID: 2383928 – in this scenario some remote desktop sessions do not completely exit on the computer – you find that there is one Csrss.exe process left in these sessions. Additionally after some time you cannot establish new remote desktop sessions to the computer. If you try to restart the computer to recover from the issue the shutdown process stops responding you have to manually turn off and then restart the computer

Microsoft Logman.exe Utility – creates and manages event trace session and performance logs and supports many functions of performance monitor from the command line

Freitag, November 30th, 2012

mswindows_logo.jpg   The Microsoft Logman.exe Utility can be used to create and manage Event Trace Session and Performance logs.  Many functions of Performance Monitor are supported and can be invoked using this command line utility

PerfCounterName.cfg
…
\Terminal Services\Active Sessions
\Terminal Services\Inactive Sessions
\Terminal Services\Total Sessions
\PhysicalDisk(_Total)\% Disk Time
\PhysicalDisk(_Total)\Avg. Disk Queue Length
\PhysicalDisk(_Total)\Disk Reads/sec
\PhysicalDisk(_Total)\Disk Writes/sec
\PhysicalDisk(_Total)\Avg. Disk sec/Transfer
\Processor(_Total)\% Processor Time
\Memory\Available Mbytes
\Network Interface(*)\Bytes Total/sec
…

logman create counter <PerfCounterName> -f csv -cf <Path>\<PerfCounterName>.cfg -o <Path>\<PerfCounterName>.csv -si 60 -rf 24:00:00 -s <ServerName>

logman start <PerfCounterName>