Sometimes happens that iDrac doesn’t response. We can reset it from command line. racadm racreset soft It can takes few good minutes. We can also restart iDRAC remotely however we have to install DRAC tools. racadm -r -u -p racreset soft We can also reset iDRAC to factory settings racadm…
Articles by phi3nix
Hi, Today I will show you how to disable Exchange Cached Mode in Outlook on Terminal Server. Unfortunately we can’t do it using GPO because “Use Cached Exchange Mode for new and existing Outlook profile” only exists in the User tree. Open regedit Go to: HKLM – > Software -> Policies…
Most of our clients are moving to Office 365. I found out that sometimes is really difficult to remove Public Folders. This is easy way to solve it is use ADSI-Edit. Exchange 2010 Open ADSI-Edit and got to configuration Navigate to this path: CN=Configuration,DC=DOMAIN,DC=LOCAL CN=Services CN=Microsoft Exchange CN=EXCHANGE_ORG CN=Administrative Groups…
Few days ago my boss asked me to check one hard drive. I was able to get everything. However next time when we connected this hard drive windows asked us to format it (RAW ). This is how I fixed it. Go to Disk Management . Right click on problematic…
This is one of my favorite Powershell scripts. Easy way to show how big are Exchange mailboxes and make your boss happy 🙂 This is the result: Copy and past 🙂 $Report=@() $mailbox=Get-mailbox –resultsize unlimited $mailbox| foreach-object{ $DisplayName=$_.DisplayName $SmtpAddress=$_.PrimarySmtpAddress $TotalItemSize=(get-mailboxstatistics –identity $DisplayName ).TotalITemSize $obj=new-object System.Object $obj|add-member -membertype NoteProperty -name “DisplayName”…