Category O/S

Send Email c#

Here’s how to send some email in c# using System.Net.Mail; using System.Net.Mime; using System.Net; ///place in a sub-routine or button try { MailMessage mail = new MailMessage(); SmtpClient client = new SmtpClient(“smtp.example.com”); MailMessage message = new MailMessage(“[email protected]”, “[email protected]”); // ,…

Howto: Resize Virtual PC 2007 Virtual Machine

This is a two step process: 1. Use VHDResizer to resize the partition, download here 2. Use gparted to expand the partition, download here Details on VHDResizer (from ) VhdExpand is now VhdResize. VhdResize will resize Microsoft’s VHD files and will also…

Linux find large files

How do you find large files or directories on your disk in freebsd, unix, linux ? Linux find large files examples; find large files on your disk in *nix. All *nix systems List total size of each directory/file at current…