Thursday, September 29, 2011
Windows ThinPC
Windows ThinPC is made for a remote client for people who use remote desktop but they can also be used as a good public computer OS since they are so light and have lots of unneeded programs stripped from them making it much easier to lock down! I have them on 3 PC's at the moment and all people do is use Microsoft Office and Firefox and Print. So far so good, they are wicked fast and support Aero as well as lots of basic functions such as printing. Much better than locking down or installing a full fledge Windows 7 OS. It also boots faster than a fresh Windows XP on similar hardware.
WD Green 2TB
I'm backing up my T420's extra drive I have in the Optical bay and I got a Western Digital Green 2TB so I could do both the SSD and the 1TB I have. Reviews say it's slower than most drives because of it's "green" status. My 1TB drive has 70GB of free space and it took 2 hours to back up to the WD Green 2TB. It had sustained transfer rates of 1.2gb/s. That is roughly 150MB/s! That is damn good!! I have no idea if the drive is being bottle-necked by my laptop terabyte drive or not. Maybe I'll do a test to see what the max speed I can get from it.
WD Green 2TB Specs:
2TB (1.89TB when formatted)
5400RPM
64MB of cache.
my watt meter shows 6 watts when reading and writing versus 8-10 watts for a normal hard drive. Drive feels only slighty warm to the touch. Other drives get hot in my dock.
WD Green 2TB Specs:
2TB (1.89TB when formatted)
5400RPM
64MB of cache.
my watt meter shows 6 watts when reading and writing versus 8-10 watts for a normal hard drive. Drive feels only slighty warm to the touch. Other drives get hot in my dock.
Removing Mailboxes in Exchange 2007
In Exchange 2007 they seemed to have removed ways to easily get to features an Exchange admin uses regularly. Settings such as, database clean-up, disconnected mailbox removal and so on.
I needed to remove a disconnected mailbox since her account was sucking up almost half a gig on our database. Here are the steps to do that.
1) Open the Exchange Management Shell.
2)Type this to list all Disconnected Mailboxes:
4) Run this command to check mailboxes as well as their sizes to be sure that mailbox has been removed.
I needed to remove a disconnected mailbox since her account was sucking up almost half a gig on our database. Here are the steps to do that.
1) Open the Exchange Management Shell.
2)Type this to list all Disconnected Mailboxes:
Get-MailboxStatistics | where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid
Special Note: You can not delete a mailbox that is currently connected to an account. You need to first delete the account in Active Directory. After that exchange will mark that particular mailbox for deletion and then it will show up in the list that this command shows. If you want to delete an account but not mark the mailbox for deletion , be sure to uncheck the box in the window that appears when you are deleting the account.
3) This next command deletes all disconnected mailboxes.
Get-MailboxStatistics -database "server\database" | where {$_.disconnectdate -ne $null} | foreach {Remove-mailbox -database $_.database -storemailboxidentity $_.mailboxguid}
4) Run this command to check mailboxes as well as their sizes to be sure that mailbox has been removed.
Get-MailboxStatistics | Sort-Object TotalItemSize -Descending | ft DisplayName,@{label="
TotalItemSize(MB)";expression={$_.TotalItemSize.Value.ToMB()}},ItemCount
VMWare ESXi 4.1 Mouse lag fix
I have been searching around for a fix with the laggy mouse in ESXi 4.1 for a while. Seems like when you install VMWare Tools it doesn't, by default, install the right GPU driver. Doesn't make sense since this is very important in the ability to use the GUI efficiently when you need to do a lot of clicking inside a VM. This issue only seems to effect Vista/7 hosts as well as their corresponding server counterparts such as Server 2008/R2.
To fix the mouse lag you have to go in the device manager and find the display driver and update it to use the one in the C:/Program Files/Common Files/VMWare/WDDM Driver/
To fix the mouse lag you have to go in the device manager and find the display driver and update it to use the one in the C:/Program Files/Common Files/VMWare/WDDM Driver/
Subscribe to:
Posts (Atom)