XenApp: “This file does not have a program associated with it for performing this action” when try opening Picture Files


If you happen to run XenApp 5 on Windows Server 2008 platform and users can’t open Picture files on a Citrix session, you are having the headache once I had. Let me describe the problem. Users are trying to open up an Picture file attachment on a Citrix Session (from the published application like Outlook, … Continue reading XenApp: “This file does not have a program associated with it for performing this action” when try opening Picture Files

Windows 7: Avatar


On my previous post, I showed how to change the logon screen. Say You found a cool picture for your logon screen. Now It won’t be complete till you have matching User Account Picture. It’s easy to change. Click Start Orb button (or Windows key). Start typing “User Accounts” and select User accounts from the … Continue reading Windows 7: Avatar

How to Delete folders by wildcard search? Answer: use PowerShell


I had a requirement to delete directories by wildcard. Unfortunately RMDIR  User* will not work in command prompt. I found the answer in PowerShell. The following command delete a bunch of folders by wildcard selection.   The following command deletes all folders starting with "2008*" under C:program FilesDBappLogs.   get-childitem -path 'C:Program FilesDBappLogs' -filter 2008* … Continue reading How to Delete folders by wildcard search? Answer: use PowerShell

Checking Hotmail, Yahoo Mail, GMail and others in Outlook, no POP3/IMAP required


I know most companies don’t allow POP3 or IMAP access to/from Internet on the corporate network. So how do you check your personal emails at office? Most friends I know they check their emails in Internet Browser. If you are THAT person, here is a cool tip for you. Add a Outlook folder and set … Continue reading Checking Hotmail, Yahoo Mail, GMail and others in Outlook, no POP3/IMAP required

How to get folder size of each sub folders?


Let’s just say you want to get folder size of each home folder of the users. Or trying to see which sub folders are growing fast. I use the following three ways depending on my requirement. 1. Fantastic tool named Disk Usage v1.33 by Mark Russinovich: http://technet.microsoft.com/en-us/sysinternals/bb896651.aspx 2. VBScript of my own. Copy the following … Continue reading How to get folder size of each sub folders?