<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.4" -->
<rss version="0.92">
<channel>
	<title></title>
	<link>http://peterox.com</link>
	<description></description>
	<lastBuildDate>Mon, 01 Mar 2010 16:45:21 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Query AD from file generated by user home directories stored on file server</title>
		<description>New powershell script. Goes to user home directory on remote server and dumps the folder names to a file. Then, goes through each line in that file and queries AD to make sure the user still exists and outputs it to the console. Not finished yet. Previous admins weren't keeping ...</description>
		<link>http://peterox.com/2010/03/01/query-ad-from-file-generated-by-user-home-directories-stored-on-file-server/</link>
			</item>
	<item>
		<title>Powershell Script to delete files older than 2 days</title>
		<description>$DataFolder = "c:\scandocs"
$2Days = (get-Date).adddays(-2)

Get-Childitem $DataFolder -recurse &#124; ?{!$_.PSIsContainer -and ($_.LastWriteTime -lt (get-Date).adddays(-2))} &#124; remove-item -whatif -force
 </description>
		<link>http://peterox.com/2009/06/17/12/</link>
			</item>
	<item>
		<title>Email VBScript</title>
		<description>I started looking around and found this script to email via vbscript.  Later I'll include different things you can email yourself if you're an system administrator.

 

strSender = "sender_email"
strRecipient = "recipiente_email"
strSubject = "Subjet String"
strMessage = "Message String"
strcdoSendUsingPort = "2"
strMailServer = "smtp server"
strMailPort = "25"

Set objEmail = CreateObject("CDO.Message")
 objEmail.From = strSender
 objEmail.To = strRecipient
 objEmail.Subject ...</description>
		<link>http://peterox.com/2008/09/26/email-vbscript/</link>
			</item>
	<item>
		<title>Inventory Installed MS Updates</title>
		<description>This script will connect to a computer remotely and get the updates installed along with date and domain info.  I haven't formatted the script correctly for display on the web so you might have to do some editing.  The script will put the info in a csv file.  This script was ...</description>
		<link>http://peterox.com/2008/09/24/inventory-installed-ms-updates/</link>
			</item>
	<item>
		<title>Inventory Hardware VBScript</title>
		<description>This script will connect remotely to computers listed in a text file and inventory the computer processor, memory, IP, and Hard drive space.  The portion that inventorys the hard drive space was written by some else and the rest I got it from MS website along with other sites.   This script ...</description>
		<link>http://peterox.com/2008/09/23/inventory-hardware-vbscript/</link>
			</item>
	<item>
		<title>Norton Inventory VBScript</title>
		<description>I began scripting a couple of months ago and wrote this script to inventory the version of norton installed on client computers.  In my enviroment I simply export the computer accounts to a text file and run this script.  As I get better with vbscript I'll be able to connect ...</description>
		<link>http://peterox.com/2008/09/23/norton-inventory-script/</link>
			</item>
</channel>
</rss>
