Link to build custom servers with Dell: http://www.dell.com/business/servers
-
-
PowerShell: Show all items modified before a certain date
Replace the date here with the date you’re looking to search for: Get-ChildItem -Recurse | Where-Object { $_.LastWriteTime -lt “03/04/2008” }
-
Exchange 2007: Can't Create User with Forwarding Address
How many times do you go to create a user and find that it’s already there, or at least the forwarding address is. Info@, sales@, etc. Well, in Exchange 2007 you can final all the users with a forwarding address in them to quickly isolate who already has your address. To do so, use the following command: Get-Mailbox | Where {$_.ForwardingAddress -ne $null} | Select Name, ForwardingAddress, DeliverToMailboxAndForward
-
Windows Server: Command to Migrate Roaming Profile Location
-
ASP Defined
ASP stands for an Active Server Page, a type of web page that is hosted on a server that supports the ASP scripting engine. ASP is a file that contains text, HTML, and/or ASP scripting commands. ASP files use/require the *.asp extension. Microsoft Internet Information Server (IIS) supports ASP. You can also use ASP with varrying forms of (or add-ons for) Apache such as Apache::ASP::Install.