<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6569019668746164093</id><updated>2010-07-13T09:20:31.171-07:00</updated><title type='text'>/var/blog</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default?start-index=26&amp;max-results=25'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>53</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-363484958925551559</id><published>2009-12-11T16:19:00.000-08:00</published><updated>2009-12-13T18:13:59.849-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Windows'/><category scheme='http://www.blogger.com/atom/ns#' term='Powershell'/><title type='text'>get-nestedgroups</title><content type='html'>Here is a script i worked on that searches for the group you are looking for in AD and return the Name, Members, type, and domain that it is in and returns all other AD groups that may be nested (group within a group) in that group. &amp;nbsp;If the search is ambiguous it will return all groups with like names and you may get duplicates because of it.&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="prettyprint" style="background-color: #111111;"&gt;$&amp;gt;./get-nestedgroups.ps1 "My Universal Group"

Group_Name                        Members                           Group_Type      Domain
----------                        -------                           ----------      ------
MyAdminGroup                      {jarrettirons, MyAdminGroup-Gl... Universal       mydomain
MyAdminGroup-Global               {user1,user2,user3,user4,user,... Global          subdomain

&lt;/pre&gt;&lt;br /&gt;
--Jarrett&lt;br /&gt;
&lt;a href="javascript:void(0)"&gt;&lt;/a&gt;&lt;br /&gt;
&lt;pre class="prettyprint" style="background-color: #111111;"&gt;# Function get-NestedMembers 
# List the members of a group including all nested members of subgroups 

# GLOBAL VARIABLES
$adgroups = @()
[array]$disabled_status = @("514", "546", "2", "66050")
[array]$roots = @()
$roots = "LDAP://dc=mydomain,dc=com"
$roots += "LDAP://dc=subdomain,dc=mydomain,dc=com"


# PRIVATE FUNCTIONS

###################################################
function get-NestedMembers ([array]$domaingroup) {  
###################################################
    foreach ($dgroup in $domaingroup) {
    if ($dgroup.objectclass -contains 'group') {
      ($dgroup | select @{Name="Group_Name"; Expression={$_.cn}},
                                     @{Name="Members"; Expression={foreach ($member in $_.member) {
                                                                      $admember = new-object DirectoryServices.DirectoryEntry("LDAP://$member");
                                                                          if ($admember.objectclass -contains "person") {
                                                                            if ($disabled_status -notcontains $admember.useraccountcontrol) {
                                                                                [string]$admember.cn
                                                                                remove-item variable:\admember
                                                                            }
                                                                          }
                                                                          else {[string]$admember.cn}
                                                                        }
                                                                      }},
                                        
                                     @{Name="Group_Type"; Expression={if (([string]$_.grouptype) -eq '-2147483640') {
                                                                        return "Universal"
                                                                      }
                                                                      if (([string]$_.grouptype) -eq '-2147483646') {
                                                                        return "Global"
                                                                        }
                                                                      }},
                                     @{Name="Domain"; Expression={
                                        $null = ([string]$_.distinguishedname) -match "DC=([^,]+)"; $matches[1]
                                        }})
      $dgroup.member | % {
        $adobject = new-object directoryservices.directoryentry("LDAP://$_")
        if ($adobject.objectclass -ne $null) {
          if ($adobject.objectclass -contains 'group') {
            get-nestedMembers $adobject
          }
        }
      }
    }
    }
}
################################
function get-adGroup ($group) {
################################
  [array]$roots = @()
  $roots = "LDAP://dc=msprod,dc=msp"
  $roots += "LDAP://dc=guest,dc=msprod,dc=msp"
  $category = "group"
  $dom = New-Object System.DirectoryServices.DirectoryEntry

  $dirSearcher = New-Object System.DirectoryServices.DirectorySearcher
  $dirSearcher.PageSize = 1000
  $dirSearcher.Filter = ("(objectCategory=$category)")
  foreach ($root in $roots)
    {
      $dirSearcher.SearchRoot = $root
      trap [System.Exception] {continue;}
      [array]$items += $dirSearcher.FindAll() | ?{$_.properties.name -like $group} 
    }
  foreach ($item in $items){
    [array]$results += new-object DirectoryServices.DirectoryEntry($item.path);
  }
  return $results
}
##############################
function get-adUser ($user) {
##############################
  $category = "Person"
  $dom = New-Object System.DirectoryServices.DirectoryEntry
  
  $dirSearcher = New-Object System.DirectoryServices.DirectorySearcher
  $dirSearcher.PageSize = 1000
  $dirSearcher.Filter = "(&amp;amp;(objectCategory=Person)(!(userAccountControl:1.2.840.113556.1.4.803:=2)))"
  foreach ($root in $roots)
    {
      $dirSearcher.SearchRoot = $root
      trap [System.Exception] {continue;}
      $results = $dirSearcher.FindAll() | ?{$_.properties.name -like "$user"} | sort-object properties.cn
    }

  foreach ($item in $results) {
    $object = $item.Properties
  }
  return $results.properties
}
#=========================================================

# MAIN
$name = get-adGroup $args
get-NestedMembers $name
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-363484958925551559?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/363484958925551559/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=363484958925551559' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/363484958925551559'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/363484958925551559'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2009/12/get-nestedgroups.html' title='get-nestedgroups'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-8383814474273892675</id><published>2009-09-29T21:13:00.000-07:00</published><updated>2009-10-09T12:13:55.120-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Windows'/><category scheme='http://www.blogger.com/atom/ns#' term='Powershell'/><title type='text'></title><content type='html'>Here is a script I pasted together that modifies the machine.config in the .Net framework using Powershell. This script basically allows you to add and remove domains and specify what connection limit you would like to set it to by adding/modifying system.net/connectionmanagement elements, which you can find out more &lt;a href="http://msdn.microsoft.com/en-us/library/fb6y0fyc.aspx"&gt;here&lt;/a&gt;. Hope this helps someone out. One sight I relied heavily on was &lt;a href="http://www.pluralsight.com/community/blogs/dan/archive/2006/10/30/41434.aspx"&gt;http://www.pluralsight.com/community/blogs/dan/archive/2006/10/30/41434.aspx&lt;/a&gt;. &lt;br /&gt;
&lt;div&gt;&lt;/div&gt;&lt;div&gt;-Jarrett&lt;br /&gt;
&lt;p&gt;&lt;pre style="background-color:#111;" class="prettyprint" &gt;# Global Vars
param(
&amp;nbsp;&amp;nbsp; &amp;nbsp;[string]$command = $(throw "Please specify action.`nUSAGE: `n&amp;gt;maxuserport.ps1 (read|add|delete) [[int]value]"),
&amp;nbsp;&amp;nbsp; &amp;nbsp;[string]$domain,
&amp;nbsp;&amp;nbsp; &amp;nbsp;[int]$value
&amp;nbsp;&amp;nbsp; &amp;nbsp;)
$usage = "Please specify action.`nUSAGE: `n&amp;gt;maxuserport.ps1 (read|add|delete) [[int]value]"
#write-host "command is " $command "domain is " $domain "and value is " $value
if ($command -notmatch "read|add|delete") {$usage; return}
$bitness = (get-wmiobject win32_OperatingSystem).OSArchitecture
$working_path = "C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG"
$working_path64 = "C:\Windows\Microsoft.NET\Framework64\v2.0.50727\CONFIG"
$machine_config = "machine.config"
$date = get-date -uformat "%Y%m%d-%H%M"
$paths = @{}
$paths.Add(32,(join-path $working_path $machine_config))
if ($bitness -eq "64-bit") {
&amp;nbsp;&amp;nbsp;$paths.Add(64, (join-path $working_path64 $machine_config))
}

# ===================================================
# Functions
# ===================================================

function add ([string]$address, [int]$maxconnection) {
&amp;nbsp;&amp;nbsp;if (!($address)) {"Must specify a domain to add`n"; $usage; return}
&amp;nbsp;&amp;nbsp;# Loading config
&amp;nbsp;&amp;nbsp;foreach ($fullpath in $paths.keys) {
&amp;nbsp;&amp;nbsp; &amp;nbsp;$xml = new-object System.Xml.XmlDocument
&amp;nbsp;&amp;nbsp; &amp;nbsp;$xml.Load($paths[$fullpath])
&amp;nbsp;&amp;nbsp; &amp;nbsp;$configuration = $xml.configuration
&amp;nbsp;&amp;nbsp; &amp;nbsp;# Creating Elements
&amp;nbsp;&amp;nbsp; &amp;nbsp;if (!($configuration."system.net")) {
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;$systemNet = $xml.CreateElement("system.net")
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;# If "system.net" does not exist then it is safe to say that
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;# &amp;nbsp;"connectionManagement" does not either.
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;$connectionManagement = $xml.CreateElement("connectionManagement")
&amp;nbsp;&amp;nbsp; &amp;nbsp;}
&amp;nbsp;&amp;nbsp; &amp;nbsp;else {
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;$systemNet = $configuration."system.net"
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;$connectionManagement = $systemNet.connectionManagement
&amp;nbsp;&amp;nbsp; &amp;nbsp;}
&amp;nbsp;&amp;nbsp; &amp;nbsp;# Add the "add" element
&amp;nbsp;&amp;nbsp; &amp;nbsp;$add_address = $xml.CreateElement("add")
&amp;nbsp;&amp;nbsp; &amp;nbsp;$add_address.SetAttribute("address", $address)
&amp;nbsp;&amp;nbsp; &amp;nbsp;$add_address.SetAttribute("maxconnection", $maxconnection)
&amp;nbsp;&amp;nbsp; &amp;nbsp;# Connecting Elements
&amp;nbsp;&amp;nbsp; &amp;nbsp;$null = $connectionManagement.AppendChild($add_address)
&amp;nbsp;&amp;nbsp; &amp;nbsp;$null = $systemNet.AppendChild($connectionManagement)
&amp;nbsp;&amp;nbsp; &amp;nbsp;$null = $xml.configuration.AppendChild($systemNet)
&amp;nbsp;&amp;nbsp; &amp;nbsp;$xml.Save($paths[$fullpath])
&amp;nbsp;&amp;nbsp; &amp;nbsp;read
&amp;nbsp;&amp;nbsp;}
}

function read () {
&amp;nbsp;&amp;nbsp;$OFS = ", "
&amp;nbsp;&amp;nbsp;$domains = @()
&amp;nbsp;&amp;nbsp;foreach ($fullpath in $paths.keys) {
&amp;nbsp;&amp;nbsp; &amp;nbsp;$xml = new-object System.Xml.XmlDocument
&amp;nbsp;&amp;nbsp; &amp;nbsp;$xml.Load($paths[$fullpath])
&amp;nbsp;&amp;nbsp; &amp;nbsp;$configuration = $xml.configuration
&amp;nbsp;&amp;nbsp; &amp;nbsp;# Seeing if "system.net" exists
&amp;nbsp;&amp;nbsp; &amp;nbsp;if (!($configuration."system.net")) {
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;"system.net does not exist"
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;return
&amp;nbsp;&amp;nbsp; &amp;nbsp;}
&amp;nbsp;&amp;nbsp; &amp;nbsp;$systemNet = $configuration."system.net"
&amp;nbsp;&amp;nbsp; &amp;nbsp;$connectionManagement = $systemNet.connectionManagement
&amp;nbsp;&amp;nbsp; &amp;nbsp;$connectionManagement.SelectNodes("add") | % {
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;$tmp = '' | select address, maxconnection
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;$tmp.address = [string]$_.address
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;$tmp.maxconnection = [int]$_.maxconnection
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;$domains += $tmp
&amp;nbsp;&amp;nbsp; &amp;nbsp;}
&amp;nbsp;&amp;nbsp; "$fullpath(" + "$($domains | % {$_.address + ":" + $_.maxconnection})" + ")"
&amp;nbsp;&amp;nbsp; }
}

function delete ([string]$address, [int]$maxconnection) {
&amp;nbsp;&amp;nbsp;if (!($address)) {"Must specify a domain to add\n"; $usage; return}
&amp;nbsp;&amp;nbsp;$target = @()
&amp;nbsp;&amp;nbsp;foreach ($fullpath in $paths.keys) {
&amp;nbsp;&amp;nbsp; &amp;nbsp;# Loading config
&amp;nbsp;&amp;nbsp; &amp;nbsp;$xml = new-object System.Xml.XmlDocument
&amp;nbsp;&amp;nbsp; &amp;nbsp;$xml.Load($paths[$fullpath])
&amp;nbsp;&amp;nbsp; &amp;nbsp;$configuration = $xml.configuration
&amp;nbsp;&amp;nbsp; &amp;nbsp;# Checking Elements
&amp;nbsp;&amp;nbsp; &amp;nbsp;if (!($configuration."system.net")) { "system.net Elemnet does not exist. &amp;nbsp;Exiting"; return }
&amp;nbsp;&amp;nbsp; &amp;nbsp;$systemNet = $configuration."system.net"
&amp;nbsp;&amp;nbsp; &amp;nbsp;$connectionManagement = $systemNet.connectionManagement
&amp;nbsp;&amp;nbsp; &amp;nbsp;# Targeting and deleting Element
&amp;nbsp;&amp;nbsp; &amp;nbsp;$target = $connectionManagement.selectNodes("add") | ? {$_.address -eq $address -and $_.maxconnection -eq $maxconnection}
&amp;nbsp;&amp;nbsp; &amp;nbsp;if ($target -eq $null) {"Could not find domain to delete!"; return}
&amp;nbsp;&amp;nbsp; &amp;nbsp;foreach ($missle in $target) {
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;$null = $connectionManagement.RemoveChild($missle)
&amp;nbsp;&amp;nbsp; &amp;nbsp;}
&amp;nbsp;&amp;nbsp; &amp;nbsp;$xml.Save($paths[$fullpath])
&amp;nbsp;&amp;nbsp; &amp;nbsp;read 
&amp;nbsp;&amp;nbsp;}
}

function backup_config () {
&amp;nbsp;&amp;nbsp; &amp;nbsp;if (test-path ($fullpath + ".orig") ) {
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;copy $fullpath ($fullpath + "." + $date)
&amp;nbsp;&amp;nbsp; &amp;nbsp;}
&amp;nbsp;&amp;nbsp; &amp;nbsp;else { copy $fullpath ($fullpath + ".orig") }
}

# ===================================================
# MAIN&lt;span style="white-space: pre;"&gt; &lt;/span&gt;
# ===================================================
&amp;amp;($command) $domain $value
&lt;/pre&gt;&lt;/p&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-8383814474273892675?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/8383814474273892675/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=8383814474273892675' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/8383814474273892675'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/8383814474273892675'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2009/09/here-is-script-i-pasted-together-that.html' title=''/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-8272397436151045522</id><published>2009-05-09T09:38:00.000-07:00</published><updated>2009-05-09T09:46:51.476-07:00</updated><title type='text'>Turn off Proxy when using  IIS7 Management Console!!</title><content type='html'>I know there is plenty of articles showing how to setup IIS7 with Remote Management Services and how to connect to it.  However I was running into an issue where it just was not working for me.  After looking at my firewall settings on both client and server, confirming that port 8172 was open and being able to telnet to the remote machine on that port, I have found in a TCP dump that I was trying to connect to the remote IIS7 server via PROXY!  The IIS7 console is more integrated with IE and if you have a proxy specified in IE then the IIS7 management console (and possibly others) will try and use that proxy.  Its kinda cool but annoying as hell at the same time for I have not found this anywhere and there is no errors showing this.

(Sigh)

Thanks Microsoft&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-8272397436151045522?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/8272397436151045522/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=8272397436151045522' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/8272397436151045522'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/8272397436151045522'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2009/05/turn-off-proxy-when-using-iis7.html' title='Turn off Proxy when using  IIS7 Management Console!!'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-1953202420695028792</id><published>2009-03-16T10:00:00.000-07:00</published><updated>2009-09-29T21:13:11.145-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='drawings'/><title type='text'></title><content type='html'>I have been working on a sketch that I must say am pretty proud of thus far.  This drawing is for my wife's(&lt;a href="http://blog.wrighttherapies.com/"&gt;Karen&lt;/a&gt;) graduation.  I was inspired to draw her &lt;a href="http://en.wikipedia.org/wiki/Ganesh"&gt;Ganesh&lt;/a&gt; because of the rigorous 4 years she went through to get her Masters in Traditional Chinese Medicine.  CONGRATS KAREN!

To sum up in one line who/what &lt;a href="http://en.wikipedia.org/wiki/Ganesh"&gt;Ganesh &lt;/a&gt;is, &lt;a href="http://en.wikipedia.org/wiki/Ganesh"&gt;Ganesh &lt;/a&gt;is a Hindu god of wisdom or prophecy; the god who removes obstacles.

Here is the initial sketch.
&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://farm4.static.flickr.com/3434/3359644317_2aab65e429.jpg?v=0"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 500px;" src="http://farm4.static.flickr.com/3434/3359644317_2aab65e429.jpg?v=0" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-1953202420695028792?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/1953202420695028792/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=1953202420695028792' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/1953202420695028792'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/1953202420695028792'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2009/03/i-have-been-working-on-sketch-that-i.html' title=''/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-6938573231396391202</id><published>2009-02-11T19:11:00.001-08:00</published><updated>2009-02-14T14:21:19.755-08:00</updated><title type='text'>A 32" pizza from "Big Papa's"</title><content type='html'>&lt;p class="mobile-photo"&gt;&lt;a href="http://1.bp.blogspot.com/_TSBOnmqGwXs/SZOTeV0ixaI/AAAAAAAAB2Q/PyWYO-s18oc/s1600-h/Photo_102408_001-713068.JPG"&gt;&lt;img src="http://1.bp.blogspot.com/_TSBOnmqGwXs/SZOTeV0ixaI/AAAAAAAAB2Q/PyWYO-s18oc/s320/Photo_102408_001-713068.JPG" alt="" id="BLOGGER_PHOTO_ID_5301743335808091554" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;8 full stomachs later we still had about a dozen pieces.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-6938573231396391202?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/6938573231396391202/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=6938573231396391202' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/6938573231396391202'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/6938573231396391202'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2009/02/32-pizza-from-big-papas.html' title='A 32&quot; pizza from &quot;Big Papa&apos;s&quot;'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_TSBOnmqGwXs/SZOTeV0ixaI/AAAAAAAAB2Q/PyWYO-s18oc/s72-c/Photo_102408_001-713068.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-8225380564159288161</id><published>2008-10-18T21:17:00.001-07:00</published><updated>2008-10-18T21:17:48.148-07:00</updated><title type='text'>Outside of Urth Cafe in Santa Monica </title><content type='html'>&lt;p class="mobile-photo"&gt;&lt;a href="http://3.bp.blogspot.com/_TSBOnmqGwXs/SPq07C6qWdI/AAAAAAAABQ0/OfIO3czliBI/s1600-h/Photo_101808_002-768151.jpg"&gt;&lt;img src="http://3.bp.blogspot.com/_TSBOnmqGwXs/SPq07C6qWdI/AAAAAAAABQ0/OfIO3czliBI/s320/Photo_101808_002-768151.jpg"  border="0" alt="" id="BLOGGER_PHOTO_ID_5258714441396672978" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-8225380564159288161?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/8225380564159288161/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=8225380564159288161' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/8225380564159288161'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/8225380564159288161'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2008/10/outside-of-urth-cafe-in-santa-monica.html' title='Outside of Urth Cafe in Santa Monica '/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_TSBOnmqGwXs/SPq07C6qWdI/AAAAAAAABQ0/OfIO3czliBI/s72-c/Photo_101808_002-768151.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-2513848541515529640</id><published>2008-01-08T12:36:00.001-08:00</published><updated>2008-01-08T12:36:36.819-08:00</updated><title type='text'>Test from versaamail</title><content type='html'>&lt;p class="mobile-photo"&gt;&lt;a href="http://4.bp.blogspot.com/_TSBOnmqGwXs/R4Pe1NNeKWI/AAAAAAAABP4/4CHKoGRI8e8/s1600-h/f1162242330-796821.jpg"&gt;&lt;img src="http://4.bp.blogspot.com/_TSBOnmqGwXs/R4Pe1NNeKWI/AAAAAAAABP4/4CHKoGRI8e8/s320/f1162242330-796821.jpg"  border="0" alt="" id="BLOGGER_PHOTO_ID_5153207404302575970" /&gt;&lt;/a&gt;&lt;/p&gt;Test&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-2513848541515529640?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/2513848541515529640/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=2513848541515529640' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/2513848541515529640'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/2513848541515529640'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2008/01/test-from-versaamail.html' title='Test from versaamail'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_TSBOnmqGwXs/R4Pe1NNeKWI/AAAAAAAABP4/4CHKoGRI8e8/s72-c/f1162242330-796821.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-6507879820314996026</id><published>2007-12-31T21:17:00.001-08:00</published><updated>2007-12-31T21:17:34.194-08:00</updated><title type='text'>test from mobile</title><content type='html'>test from mobile&lt;p&gt;-- &lt;br&gt;..::Jarrett::..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-6507879820314996026?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/6507879820314996026/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=6507879820314996026' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/6507879820314996026'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/6507879820314996026'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2007/12/test-from-mobile.html' title='test from mobile'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-5001437661715162396</id><published>2007-12-31T15:02:00.000-08:00</published><updated>2007-12-31T15:12:24.447-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='California'/><category scheme='http://www.blogger.com/atom/ns#' term='vacation'/><category scheme='http://www.blogger.com/atom/ns#' term='Big Sur'/><title type='text'>The world is round!</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_TSBOnmqGwXs/R3l1C9NeKVI/AAAAAAAABO0/_nhgqdcrqyU/s1600-h/CIMG1232.JPG"&gt;&lt;img src="http://1.bp.blogspot.com/_TSBOnmqGwXs/R3l1C9NeKVI/AAAAAAAABO0/_nhgqdcrqyU/s320/CIMG1232.JPG" alt="" id="BLOGGER_PHOTO_ID_" style="margin: 0px 10px 10px 0pt; clear: both;" border="0" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;div style="text-align: center;"&gt; A picture we have taken up in Big Sur, CA on PCH1.  It is quite a sight to see.&lt;/div&gt;&lt;div style="clear: both; text-align: left;"&gt;&lt;a href="http://picasa.google.com/blogger/" target="ext"&gt;&lt;img src="http://photos1.blogger.com/pbp.gif" alt="Posted by Picasa" style="border: 0px none ; padding: 0px; background: transparent none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="middle" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-5001437661715162396?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/5001437661715162396'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/5001437661715162396'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2007/12/world-is-round.html' title='The world is round!'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_TSBOnmqGwXs/R3l1C9NeKVI/AAAAAAAABO0/_nhgqdcrqyU/s72-c/CIMG1232.JPG' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-3604406476972345259</id><published>2007-01-14T05:20:00.000-08:00</published><updated>2009-09-27T21:25:24.813-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Microsoft'/><title type='text'>How to Create a Local User Using PowerShell with ADSI ....</title><content type='html'>&lt;p style="font-family: arial;"&gt;&lt;span style="font-size:85%;"&gt;With so many articles, forums, blogs, groups or whatever you want to call it.  They all talk about creating and modifying users and groups in Active Directory.
&lt;/span&gt;&lt;/p&gt;&lt;span style="font-size:85%;"&gt;&lt;code style="font-family: arial;" class="prettyprint"&gt;
function create-account ([string]$accountName = "testuser") {
$hostname = hostname
$comp = [adsi] "WinNT://$hostname"
$user = $comp.Create("User", $accountName)
$user.SetPassword("Password1")
$user.SetInfo()
}&lt;/code&gt;

&lt;code style="font-family: arial;" class="prettyprint"&gt;
function set-PasswordExpires([string]$accountName, [bool]$expires) {
$wmiuser = Get-WmiObject -class "Win32_UserAccount" -filter "name='$accountName'"
$wmiuser.PasswordExpires = $expires
$wmiuser.Put()
$wmiuser.PasswordExpires
}&lt;/code&gt;
&lt;/span&gt;&lt;p style="font-family: arial;"&gt;&lt;span style="font-size:85%;"&gt;The first function will connect to localhost ADSI and create the user object with the specified username and password.  The second function goes in through get-wmiobject and set the "PasswordExpires" attribute to true or false depending on what you want.  When creating the user it set the "PasswordExpires" to TRUE by default.  You then create your user using the following commands in powershell.&lt;/span&gt;&lt;/p&gt;&lt;span style="font-size:85%;"&gt;

&lt;code style="font-family: arial;" class="prettyprint"&gt;create-account Jarrett password
set-UserPasswordExpires Jarrett $false
&lt;/code&gt;

&lt;/span&gt;&lt;span style="font-family:arial;font-size:85%;"&gt;Have fun,&lt;/span&gt;&lt;span style="font-size:85%;"&gt;


&lt;/span&gt;&lt;span style="font-family:arial;font-size:85%;"&gt;..::Jarrett::..&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-3604406476972345259?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/3604406476972345259/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=3604406476972345259' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/3604406476972345259'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/3604406476972345259'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2007/01/how-to-create-local-user-using.html' title='How to Create a Local User Using PowerShell with ADSI ....'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-972730312182489525</id><published>2006-12-13T02:07:00.000-08:00</published><updated>2008-01-01T15:39:54.290-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Microsoft'/><title type='text'>Powershell</title><content type='html'>Jeffrey Snover came by the office on Friday giving a presentation on Powershell.  It was awesome to see him show it off.  It got me totally inspired to build my own profile.  Powershell is 'the' shell for Windows.  Finally a shell that I can use to fully administrate Windows from the command line.  To find out more about it you can check out Jeffery's blog at  &lt;a title="link to Powershell Blog" href="http://blogs.msdn.com/powershell/"&gt;http://blogs.msdn.com/powershell/&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-972730312182489525?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/972730312182489525/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=972730312182489525' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/972730312182489525'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/972730312182489525'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2006/12/powershell.html' title='Powershell'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-6993445465382811987</id><published>2006-11-22T14:38:00.000-08:00</published><updated>2008-01-01T15:39:53.633-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>Slow Day @ Work</title><content type='html'>Counting down to the final minutes before the office is off for a four day weekend.  I don't even know why I am here.  I should have followed my instincts and just "worked" from home.  Oh well.  You can keep tabs on me and see if I am at my computer at the office by checking out the webcam.

Good Times,

..::Jarrett::..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-6993445465382811987?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/6993445465382811987/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=6993445465382811987' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/6993445465382811987'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/6993445465382811987'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2006/11/slow-day-work.html' title='Slow Day @ Work'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-9029984123427239791</id><published>2006-10-14T08:47:00.000-07:00</published><updated>2008-01-01T15:39:52.939-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>Linux Flash Player Beta ......</title><content type='html'>Adobe is releasing Linux Flash Player 9 Beta in there 'Adobe Labs' in the next couple of weeks according to adobe dot com's &lt;a title="penguin.swf" href="http://blogs.adobe.com/penguin.swf/2006/10/chatter.html"&gt;penguin.swf&lt;/a&gt;.  This is exciting for Linux users especially for someone who works at Myspace and can't watch any videos since they have updated all of theme to run on Flash Player 9 for security purposes.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-9029984123427239791?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/9029984123427239791/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=9029984123427239791' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/9029984123427239791'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/9029984123427239791'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2006/10/linux-flash-player-beta.html' title='Linux Flash Player Beta ......'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-8796007419502307845</id><published>2006-08-19T21:14:00.000-07:00</published><updated>2008-01-01T15:39:52.200-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>Just Got Back From the Sequoia's</title><content type='html'>Just got back from the Sequoia National Forest in Central California on a camping trip for four days.  While Karen and I were up there we got the chance to check Crystal Cave, a cave made of marble not crystal.  It was awsome!  It was very cold in there and we got a few pictures of it in my &lt;a href="http://jarrettirons.com/gallery2/v/sequoia"&gt;gallery&lt;/a&gt;.  We also got to hike on a trail where we could check out a giant red wood called Boole Tree.  It was so huge you would probably need over fifty people to be able to hold hands around it.  Maybe even a hundred!  So check out the pictures and I'll try and write a blog about some power shell scripts I am in the middle of researching.

Later,

..::Jarrett::..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-8796007419502307845?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/8796007419502307845/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=8796007419502307845' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/8796007419502307845'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/8796007419502307845'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2006/08/just-got-back-from-sequoia.html' title='Just Got Back From the Sequoia&amp;#39;s'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-3096307226963560695</id><published>2006-08-06T21:19:00.000-07:00</published><updated>2008-01-01T15:39:51.295-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>My Banner is Finally Up!!!</title><content type='html'>As you may have noticed, I have finally finished my banner!  It took me about 3 weekends to do the whole thing from sketching it out to the final image.  I still need to do some final touch ups and maybe make a few more changes in the colors I chose but all in all it's done.  I'll be posting the steps that were taken to make this banner soon.

..::Jarrett::..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-3096307226963560695?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/3096307226963560695/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=3096307226963560695' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/3096307226963560695'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/3096307226963560695'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2006/08/my-banner-is-finally-up.html' title='My Banner is Finally Up!!!'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-7550501253136282459</id><published>2006-08-01T21:36:00.000-07:00</published><updated>2008-01-01T15:39:50.573-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>Google Picasa available for Linux!</title><content type='html'>For those of you who do not know about Picasa.  Picasa is a really cool photo organizing/editing software that is offered for free from Google.  It is really cool and I personally have it installed on all of my computers.  Now Picasa is available for Linux as Beta.  I have been using it personally and it has all the functionality that the Windows version has.  Finally something that has been developed for Linux before Mac.

&lt;a title="link to Google Picasa!" href="http://picasa.google.com/"&gt;http://picasa.google.com/ &lt;/a&gt;

..::Jarrett::..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-7550501253136282459?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/7550501253136282459/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=7550501253136282459' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/7550501253136282459'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/7550501253136282459'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2006/08/google-picasa-available-for-linux.html' title='Google Picasa available for Linux!'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-4631850866202587014</id><published>2006-07-24T13:27:00.000-07:00</published><updated>2008-01-01T15:39:48.449-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>Power Outages in Los Angeles and Myspace</title><content type='html'>This last weekend was the hottest weekend I have felt in two years living in West Los Angeles.  The humidity was really bad too.  It even got to 119 degrees in Woodland Hills.  My wife Karen went to Tarzana on Saturday and said that it just hurt walking from the car to the front door.  Well with all this heat people used there AC's and as usual our power grids could not take the load.  With it came rolling black outs which eventually hit one of the buildings where Myspace.com is hosted.  Having the power go out is the worst thing to happen for someone who works in the Information Industry.  Fortunately the backup generators kicked in and we sustained power.  However without saying too much, lets just say you also need air conditioners to keep the servers cool too!  Thats all for now.  I'm still working on my banner, perhaps I'll post my update of the banner later.

..::Jarrett::..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-4631850866202587014?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/4631850866202587014/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=4631850866202587014' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/4631850866202587014'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/4631850866202587014'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2006/07/power-outages-in-los-angeles-and.html' title='Power Outages in Los Angeles and Myspace'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-2046690895556459023</id><published>2006-07-06T14:34:00.000-07:00</published><updated>2008-01-01T15:39:45.825-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>Hot Lunch Today!!!</title><content type='html'>For the past three weeks here at the new office we have had no cafeteria to goto for lunch or breakfast.  Fortunatly, the company has been providing catered lunches everyday.  Unfortunatly there has not been much variety until today.  Today we actually had a choice to have chicken and beans!  Unfortunalty for me, I do not eat chicken :(.

Sigh.

Oh well.  I finally got a scanner to work here at the office.  Here is what I have started with for my banner.  Let me know what you think.

Later,

..::Jarrett::..

&lt;img width="400" id="image44" alt="banner-pencil" src="http://www.jarrettirons.com/blog/wp-content/uploads/2006/07/banner.jpg" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-2046690895556459023?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/2046690895556459023/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=2046690895556459023' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/2046690895556459023'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/2046690895556459023'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2006/07/hot-lunch-today.html' title='Hot Lunch Today!!!'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-5755384517664115275</id><published>2006-07-06T14:30:00.000-07:00</published><updated>2008-01-01T15:39:46.478-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Uncategorized'/><title type='text'>banner-pencil</title><content type='html'>&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-5755384517664115275?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/5755384517664115275/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=5755384517664115275' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/5755384517664115275'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/5755384517664115275'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2006/07/banner-pencil.html' title='banner-pencil'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-7904864332082902282</id><published>2006-07-05T10:36:00.000-07:00</published><updated>2008-01-01T15:39:45.154-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>Working on a banner for real this time.</title><content type='html'>I'll try and get some sort of mock up of what its going to look like and perhaps show the different stages of what it goes through later.  Right now I am trying to find a scanner so I can at least post a penciled version of it.

Later,

..::Jarrett::..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-7904864332082902282?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/7904864332082902282/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=7904864332082902282' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/7904864332082902282'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/7904864332082902282'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2006/07/working-on-banner-for-real-this-time.html' title='Working on a banner for real this time.'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-3252460467805485881</id><published>2006-06-26T07:58:00.000-07:00</published><updated>2008-01-01T15:39:44.417-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>Third Week at Myspace ....</title><content type='html'>Well, this is my 3rd week in working for MySpace.  I have to say, it is different then working at Affinity.  I thought Affinity was cool and casual but Myspace takes the cake!  Working here reminds me of High School but in a good way.  There are some clicks around the office but everyone seems approachable and even though it may seem like a party all the time, everyone works long and hard around here.  You kind of need that casual environment to be able to work that hard, else you would probably see a huge turn over in the office.   Speaking of working hard, I have to get back to it.

Later,

..::Jarrett::..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-3252460467805485881?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/3252460467805485881/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=3252460467805485881' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/3252460467805485881'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/3252460467805485881'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2006/06/third-week-at-myspace.html' title='Third Week at Myspace ....'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-8745680709634776160</id><published>2006-05-25T14:41:00.000-07:00</published><updated>2008-01-01T15:39:43.767-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>I'm leaving Affinity!</title><content type='html'>I have to admit this is bitter sweet for me.  Affinity Internet is a great company to work for.  There were many challenges to overcome and skills to be learned.  However with the office/data center that I am working at slowly coming to an end, I had to start thinking about other opportunities that does not require me to move outside of California.  I wanted to leave Affinity only if it was one of those 'too good to be true' opportunities.  Well, I found that opportunity at MySpace.com.  My boss at Affinity understood right away when I gave my two week notice on Thursday.  So after saying that I will be starting at MySpace.com on the twelfth of June.  Maybe I'll let you guys know of any Easter Eggs to be had at MySpace if it's permitted.

Till then,
..::Jarrett::..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-8745680709634776160?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/8745680709634776160/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=8745680709634776160' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/8745680709634776160'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/8745680709634776160'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2006/05/i-leaving-affinity.html' title='I&amp;#39;m leaving Affinity!'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-5965880375966553771</id><published>2006-04-30T13:22:00.000-07:00</published><updated>2008-01-01T15:39:43.024-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>A wedding in Big Sur</title><content type='html'>A small wedding in Big Sur is the way to go if you want to have a nice, small, pleasant wedding.  Everything had gone smoothly during the ceremony for the most part and everyone had fun up there.  Granted it was overcast almost the whole time we were up there for the wedding and honeymoon, so that put a damper on a couple of our outdoor activities.  There are a lot of pictures of the wedding.  &lt;a title="Jarrett Irons wedding pictures" href="http://www.jarrettirons.com/gallery2/v/wedding"&gt;Click here&lt;/a&gt; if you want to see them.

Later,
..::Jarrett::..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-5965880375966553771?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/5965880375966553771/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=5965880375966553771' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/5965880375966553771'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/5965880375966553771'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2006/04/wedding-in-big-sur.html' title='A wedding in Big Sur'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-7622239645951021551</id><published>2006-04-21T20:04:00.000-07:00</published><updated>2008-01-01T15:39:42.156-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>Im Getting Hitched!</title><content type='html'>It's been a while since I wrote something in my blog.  For the past 2 weeks I was having to deal with a server going down twice in a row within 5 days of each other.  That was not fun but it did give me a chance to write some Perl scripts.  In the meantime my fiance Karen was not feeling great and I was taking care of her while taking care of this server, especially when getting called around four in the morning.  On top of all of that, Karen and I have been getting ready for our wedding this weekend.  That's right, I am getting married this Sunday up in Big Sur, California.  It is going to be awsome.  I have been getting more and more excited in going this whole week.  Anyway, the next blog I post I will be a married man.

Peace,

..::Jarrett::..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-7622239645951021551?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/7622239645951021551/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=7622239645951021551' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/7622239645951021551'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/7622239645951021551'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2006/04/im-getting-hitched.html' title='Im Getting Hitched!'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6569019668746164093.post-3156880483098299982</id><published>2006-04-04T09:44:00.000-07:00</published><updated>2008-01-01T15:39:41.475-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>Crazy Nation</title><content type='html'>A buddy at work pointed me to this &lt;a target="_blank" href="http://www.theconservativevoice.com/article/13543.html"&gt;website article&lt;/a&gt;.  Since when is it intimidating to raise your own flag in your own country?  Is it really PC to let other people raise there flag on foreign soil and not be allowed to raise yours in a peaceful manner.  Although I do not know the details of this story I have heard far worse things being done to our own flag here in Los Angeles, but I guess that's okay.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6569019668746164093-3156880483098299982?l=blog.jarrettirons.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.jarrettirons.com/feeds/3156880483098299982/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=6569019668746164093&amp;postID=3156880483098299982' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/3156880483098299982'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6569019668746164093/posts/default/3156880483098299982'/><link rel='alternate' type='text/html' href='http://blog.jarrettirons.com/2006/04/crazy-nation.html' title='Crazy Nation'/><author><name>Jarrett</name><uri>http://www.blogger.com/profile/05358499820545668937</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03548103831806256862'/></author><thr:total>0</thr:total></entry></feed>