<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>My name’s Josh and I’m a SysAdmin.  I post stuff that I think will be helpful to others.  

My opinions/posts on my blog and Twitter are my own and do not reflect the views of my current or former employer(s).</description><title>cat brain | grep interesting &gt;&gt; blog</title><generator>Tumblr (3.0; @userdel)</generator><link>http://www.userdel.com/</link><item><title>line editing tricks and shortcuts for powershell</title><description>&lt;a href="http://technet.microsoft.com/en-us/magazine/ff678293.aspx"&gt;line editing tricks and shortcuts for powershell&lt;/a&gt;: &lt;p&gt;I’ve been using PowerShell for a couple years now and I didn’t know hitting Esc cleared the current line…&lt;/p&gt;</description><link>http://www.userdel.com/post/49265653071</link><guid>http://www.userdel.com/post/49265653071</guid><pubDate>Tue, 30 Apr 2013 11:44:53 -0500</pubDate><category>powershell</category><category>psh</category><category>windows</category><category>tips and tricks</category></item><item><title>export and import ou's and users from ad</title><description>&lt;a href="http://support.microsoft.com/kb/237677"&gt;export and import ou's and users from ad&lt;/a&gt;: &lt;p&gt;Perfect for setting up a lab.&lt;/p&gt;</description><link>http://www.userdel.com/post/49201846592</link><guid>http://www.userdel.com/post/49201846592</guid><pubDate>Mon, 29 Apr 2013 15:53:51 -0500</pubDate><category>Active Directory</category><category>handy</category><category>windows</category></item><item><title>install any version of vsphere client on win8</title><description>&lt;a href="http://www.nextofwindows.com/how-to-install-vmware-vsphere-client-on-windows-8/"&gt;install any version of vsphere client on win8&lt;/a&gt;</description><link>http://www.userdel.com/post/47804277187</link><guid>http://www.userdel.com/post/47804277187</guid><pubDate>Fri, 12 Apr 2013 15:47:13 -0500</pubDate><category>windows</category><category>win8</category><category>vmware</category><category>nice</category></item><item><title>change win7 explorer default view to my computer</title><description>&lt;a href="http://leonmeijer.nl/archive/2009/02/10/140.aspx"&gt;change win7 explorer default view to my computer&lt;/a&gt;: &lt;p&gt;This always bugged me but it’s taken me this long to actually google how to fix it…&lt;/p&gt;</description><link>http://www.userdel.com/post/46851110116</link><guid>http://www.userdel.com/post/46851110116</guid><pubDate>Mon, 01 Apr 2013 10:10:58 -0500</pubDate><category>Windows</category><category>annoying</category><category>hurrrr</category></item><item><title>change windows server edition with dism</title><description>&lt;a href="http://workinghardinit.wordpress.com/2011/09/20/upgrading-windows-server-2008r2-editions-with-dism/"&gt;change windows server edition with dism&lt;/a&gt;</description><link>http://www.userdel.com/post/45347954102</link><guid>http://www.userdel.com/post/45347954102</guid><pubDate>Thu, 14 Mar 2013 10:57:13 -0500</pubDate><category>windows</category><category>licensing</category></item><item><title>spiceworks - free monitoring and alerting for windows and linux</title><description>&lt;a href="http://www.spiceworks.com/"&gt;spiceworks - free monitoring and alerting for windows and linux&lt;/a&gt;: &lt;p&gt;How am I just now discovering Spiceworks?  This is amazing, can’t believe it’s free*.&lt;/p&gt;

&lt;p&gt;*they do collect info/data but it’s supposedly anonymized&lt;/p&gt;</description><link>http://www.userdel.com/post/44876250688</link><guid>http://www.userdel.com/post/44876250688</guid><pubDate>Fri, 08 Mar 2013 13:44:00 -0600</pubDate><category>monitoring</category><category>windows</category><category>linux</category><category>free</category><category>awesome</category><category>spiceworks</category></item><item><title>change time zone for all computers in an ou with powershell</title><description>&lt;p&gt;Here&amp;#8217;s a little PowerShell script you can use to change the time zone for all computers in a certain OU.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Start-Transcript&lt;/p&gt;
&lt;p&gt;Import-Module ActiveDirectory&lt;/p&gt;
&lt;p&gt;$cred = Get-Credential&lt;/p&gt;

&lt;p&gt;$arr = Get-ADComputer -SearchBase &amp;#8216;OU=Servers,OU=example,dc=blah,dc=com&amp;#8217; &lt;span&gt;-Filter &amp;#8216;*&amp;#8217; | Select-Object -ExpandProperty Name&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;#for debugging - manually set the array for testing&lt;/p&gt;
&lt;p&gt;#$arr = &amp;#8220;server01&amp;#8221;, &amp;#8220;server02&amp;#8221;&lt;/p&gt;

&lt;p&gt;foreach ($a in $arr)&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span"&gt; &lt;/span&gt;{&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span"&gt; &lt;/span&gt;Write $a&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span"&gt; &lt;/span&gt;Write &amp;#8220;current time zone is&amp;#8221;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span"&gt; &lt;/span&gt;invoke-command -cn $a -cred $cred {tzutil /g}&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span"&gt; &lt;/span&gt;Write &amp;#8220;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8221;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span"&gt; &lt;/span&gt;Write &amp;#8220;overwriting time zone&amp;#8221;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span"&gt; &lt;/span&gt;invoke-command -cn $a -cred $cred {tzutil /s &amp;#8220;Central Standard Time&amp;#8221;}&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span"&gt; &lt;/span&gt;Write &amp;#8220;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8221;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span"&gt; &lt;/span&gt;}&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-tab-span"&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Stop-Transcript&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://www.userdel.com/post/44807327889</link><guid>http://www.userdel.com/post/44807327889</guid><pubDate>Thu, 07 Mar 2013 15:39:49 -0600</pubDate><category>powershell</category><category>psh</category><category>windows</category><category>ad</category></item><item><title>vmware file level restores with netapp datastores</title><description>&lt;a href="https://communities.netapp.com/docs/DOC-4865"&gt;vmware file level restores with netapp datastores&lt;/a&gt;: &lt;p&gt;Works great for Windows MBR disks, but not so much for GPT disks.  Anyone have a solution for GPT disks?&lt;/p&gt;</description><link>http://www.userdel.com/post/44712849800</link><guid>http://www.userdel.com/post/44712849800</guid><pubDate>Wed, 06 Mar 2013 10:56:18 -0600</pubDate><category>windows</category><category>netapp</category><category>vmware</category><category>gpt</category><category>mbr</category><category>vmdk</category><category>snapshots</category></item><item><title>add users to a group based on an ad attribute</title><description>&lt;p&gt;Props to &lt;a href="http://social.technet.microsoft.com/Forums/en-US/winserverDS/thread/e76f72a6-456c-4aa5-b69c-d581748e796f/#461a60d9-f924-4719-a68d-a60051a3a7a0" title="TechNet Forums - Assign Security Group membership based on Active Directory user attribute" target="_blank"&gt;TechNet forums user philldogger&lt;/a&gt; for this one.  If you want to build a group in AD based on the value of an attribute that the users will have (e.g. make a DFS group based on Department) you can do this:&lt;a href="http://social.technet.microsoft.com/profile/philldogger/?ws=usercard-mini" target="_blank"&gt;&lt;br/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Import-Module ActiveDirectory&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Get-ADUser -filter{department -like &amp;#8220;Accounting&amp;#8221;} | %{Add-ADGroupMember dfs_dept_Accounting $_.SamAccountName}&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;span&gt;In this example I am specifying the &amp;#8220;department&amp;#8221; AD attribute and looking for anyone who&amp;#8217;s Department is set to &amp;#8220;Accounting&amp;#8221; and adding them to my AD group named &amp;#8220;dfs_dept_Accounting&amp;#8221;.  &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;If you want to script it so the group membership is updated as new people join, add this line below the importing of the &lt;a href="http://technet.microsoft.com/en-us/library/dd378937(v=ws.10).aspx" title="Active Directory Administration with Windows PowerShell" target="_blank"&gt;AD PowerShell module&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;span&gt;Get-ADGroupMember dfs_dept_Accounting | %{remove-adgroupmember dfs_dept_Accounting $_.SamAccountName -Confirm:$false}&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;span&gt;This will wipe out the group and then re-add everyone.  You can have one script per group you&amp;#8217;d like to be updated, or combine multiple into one script.  Fair warning though, if you have a good sized AD the script&amp;#8217;s could take a long time to run and may hammer your DC&amp;#8217;s so do due diligence.&lt;/span&gt;&lt;/p&gt;</description><link>http://www.userdel.com/post/44630608667</link><guid>http://www.userdel.com/post/44630608667</guid><pubDate>Tue, 05 Mar 2013 09:28:06 -0600</pubDate><category>windows</category><category>powershell</category><category>psh</category><category>Active Directory</category><category>AD</category></item><item><title>wpkg - free software deployment and management for windows</title><description>&lt;a href="http://wpkg.org/"&gt;wpkg - free software deployment and management for windows&lt;/a&gt;: &lt;p&gt;Haven’t tried it out yet but this looks really handy.&lt;/p&gt;</description><link>http://www.userdel.com/post/44374617390</link><guid>http://www.userdel.com/post/44374617390</guid><pubDate>Sat, 02 Mar 2013 09:51:55 -0600</pubDate><category>windows</category><category>config management</category><category>cool tools</category></item><item><title>deprecated linux commands and their replacements</title><description>&lt;a href="http://dougvitale.wordpress.com/2011/12/21/deprecated-linux-networking-commands-and-their-replacements/"&gt;deprecated linux commands and their replacements&lt;/a&gt;</description><link>http://www.userdel.com/post/44374494766</link><guid>http://www.userdel.com/post/44374494766</guid><pubDate>Sat, 02 Mar 2013 09:49:58 -0600</pubDate><category>linux</category><category>nice</category><category>handy</category></item><item><title>the rosetta stone for unix - common equivalents across *nix</title><description>&lt;a href="http://bhami.com/rosetta.html"&gt;the rosetta stone for unix - common equivalents across *nix&lt;/a&gt;: &lt;p&gt;This is so god damn handy that anyone who works on any kind of *nix system should bookmark it.&lt;/p&gt;</description><link>http://www.userdel.com/post/44374450774</link><guid>http://www.userdel.com/post/44374450774</guid><pubDate>Sat, 02 Mar 2013 09:49:00 -0600</pubDate><category>linux</category><category>unix</category><category>nix</category><category>*nix</category><category>rosetta stone</category><category>handy</category></item><item><title>bginfo and group policy preferences</title><description>&lt;p&gt;After you download &lt;a href="http://technet.microsoft.com/en-us/sysinternals/bb897557.aspx" title="BgInfo" target="_blank"&gt;BgInfo&lt;/a&gt; and get your &lt;a href="http://www.windowsitpro.com/article/desktop-management/bginfo-46950" title="Create a Configuration File for BgInfo" target="_blank"&gt;configuration file created&lt;/a&gt; you can easily create a &lt;a href="http://www.dedoimedo.com/computers/policies.html" title="Group Policies Beginners Primer" target="_blank"&gt;GPO&lt;/a&gt; using &lt;a href="http://technet.microsoft.com/en-us/library/cc731892(v=ws.10).aspx" title="Group Policy Preferences" target="_blank"&gt;Group Policy Preferences&lt;/a&gt; to have it load on any computer on your domain.  &lt;/p&gt;
&lt;ol&gt;&lt;li&gt;Copy the BgInfo.exe and your config.bgi to &amp;#92;your.domain\NETLOGON share.&lt;/li&gt;
&lt;li&gt;Create a new GPO and goto Computer &amp;gt; Preferences &amp;gt; Windows Settings &amp;gt; Files&lt;/li&gt;
&lt;li&gt;Right and click and goto New &amp;gt; File&lt;/li&gt;
&lt;li&gt;Under Action make sure it says Update&lt;/li&gt;
&lt;li&gt;Under source file put &amp;#8220;&amp;#92;your.domain\NETLOGON\Bginfo.exe&amp;#8221;&lt;/li&gt;
&lt;li&gt;Under destination file put &amp;#8220;C:\Program Files\BgInfo\Bginfo.exe&amp;#8221;&lt;/li&gt;
&lt;li&gt;Click OK to close and then repeat step 3 to add another file&lt;/li&gt;
&lt;li&gt;Again under Action make sure it says Update&lt;/li&gt;
&lt;li&gt;Under source file put &amp;#8220;&amp;#92;your.domain\NETLOGON\yourConfig.bgi&amp;#8221;&lt;/li&gt;
&lt;li&gt;Under destination file put &amp;#8220;C:\Program Files\BgInfo\yourConfig.bgi&amp;#8221;&lt;/li&gt;
&lt;li&gt;Click OK to close&lt;/li&gt;
&lt;li&gt;Now back in the GPO window goto the Registry section (Computer &amp;gt; Preferences &amp;gt; Windows Settings &amp;gt; Registry)&lt;/li&gt;
&lt;li&gt;Right and click and goto New &amp;gt; Registry Item&lt;/li&gt;
&lt;li&gt;Under Action make sure it says Update&lt;/li&gt;
&lt;li&gt;Change Hive to &amp;#8220;HKEY_LOCAL_MACHINE&amp;#8221;&lt;/li&gt;
&lt;li&gt;For key path add &amp;#8220;SOFTWARE\Microsoft\Windows\CurrentVersion\Run&amp;#8221;&lt;/li&gt;
&lt;li&gt;For Value Name add &amp;#8220;BgInfo&amp;#8221;&lt;/li&gt;
&lt;li&gt;For Value Type set it to &amp;#8220;REG_SZ&amp;#8221;&lt;/li&gt;
&lt;li&gt;In Value Data put (including the quotes) &amp;#8220;C:\Program Files\BgInfo\Bginfo.exe&amp;#8221; &amp;#8220;C:\Program Files\BgInfo\yourConfig.bgi&amp;#8221; /silent /timer:0 /NOLICPROMPT&amp;#8221;&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Your GPO is now ready, add a scope and test it out.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://media.tumblr.com/47bb02c830aa04073019fa36377347ed/tumblr_inline_mj0088TR7X1qz4rgp.jpg"/&gt;&lt;/p&gt;</description><link>http://www.userdel.com/post/44310748159</link><guid>http://www.userdel.com/post/44310748159</guid><pubDate>Fri, 01 Mar 2013 14:09:00 -0600</pubDate><category>windows</category><category>group policy</category></item><item><title>how to use perfmon to checkout your server</title><description>&lt;a href="http://technet.microsoft.com/en-us/magazine/2008.08.pulse.aspx"&gt;how to use perfmon to checkout your server&lt;/a&gt;: &lt;p&gt;Great summary article on what to look for using a handful of useful counters in perfmon on a Windows server.&lt;/p&gt;</description><link>http://www.userdel.com/post/42037956574</link><guid>http://www.userdel.com/post/42037956574</guid><pubDate>Fri, 01 Feb 2013 13:38:16 -0600</pubDate><category>windows</category><category>tools</category></item><item><title>various sccm 2012 device collection queries</title><description>&lt;a href="http://www.toolzz.com/?p=185"&gt;various sccm 2012 device collection queries&lt;/a&gt;</description><link>http://www.userdel.com/post/41725867617</link><guid>http://www.userdel.com/post/41725867617</guid><pubDate>Mon, 28 Jan 2013 15:23:27 -0600</pubDate><category>sccm</category><category>microsoft</category><category>Windows</category></item><item><title>my recent job interviewing experience</title><description>&lt;p&gt;I&amp;#8217;m happy to say that I&amp;#8217;ve just accepted a position with a great company and will be relocating to Chicago for it.  I started looking for a job pretty seriously about 8 months ago after having been with a previous employer over six years (my first job out of college).  I actually accepted a new position about 3 months ago, and now I&amp;#8217;m leaving it. Yes I know in the traditional sense this looks bad, but does it really?  Beyond my initial call with the recruiter, the job I&amp;#8217;m taking now they didn&amp;#8217;t seem to care I had only been there a short time.  Hell when I did my first phone interview it hadn&amp;#8217;t even been a month!&lt;/p&gt;
&lt;p&gt;In the last 8 months I&amp;#8217;ve done probably 30 phone interviews (including multiple with the same potential employer), I&amp;#8217;ve had 3 in person interviews (all of which I was offered the job), and sent my resume out to over 50 job advertisements.  I&amp;#8217;m not posting this to brag, but rather to share my experiences in the recent job hunt and maybe give some advice.  I&amp;#8217;ve interviewed with some big companies (Amazon Web Services) and lots of smaller to medium sized ones too, and for the most part it was a similar experience across the board.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;m a SysAdmin if you don&amp;#8217;t know already so that&amp;#8217;s the type of jobs I&amp;#8217;ve been applying for.  All the initial phone interviews are the same.  Always a technical benchmark, with mostly straightforward answers with the occasional open ended or &amp;#8220;what would you do&amp;#8221; type of scenario question.  These are the minimum barrier of entry, weed out the crap type interviews, and I can only remember one from a security company that was difficult for me because quite honestly the job was out of my league (they called me back and said no thanks).  If you are applying for a job you better be able to answer questions on every single technology they list in the advertisement because you can pretty much count on being asked about each during a phone interview.&lt;/p&gt;
&lt;p&gt;What I learned most was that personality is everything.  Today there are so many IT professionals and, especially with big companies, the only thing to differentiate you from everyone else is your personality.  There is always someone better and smarter than you, so if you can meet the qualifications, speak with confidence, and mesh well with the team you stand a good chance.  I talked to several employers who complained of finding very smart people, but they always ended up being egotistical jerks.  If you&amp;#8217;re an IT guy with a big ego and you&amp;#8217;re looking for a job you better learn to tone it down or I can guarantee you won&amp;#8217;t land your dream gig for awesome_startup_01.  Nobody wants to work with you no matter how good you are, and they know there are at least 5 other people out there with a similar skill-set to yours who aren&amp;#8217;t assholes.  The exception being if the job is in some rural craphole, but then again that probably isn&amp;#8217;t your dream job.  At least try and wait 6 months before you turn into a jerk at your new job, don&amp;#8217;t scoff at interview questions or try to show anyone up.  They won&amp;#8217;t be impressed, they won&amp;#8217;t call you back.  Speak with confidence, but not with attitude.  &lt;/p&gt;
&lt;p&gt;The other important thing I learned is that people really only look for the job requirements within your resume.  First line HR types will screen it looking for key information matching the required section of the job ad.  The hiring manager will probably read it all, but everyone else will skim picking out what they want to quiz you on or what they care about most (usually where the most help is needed).  Same goes for the cover letter.  I can only recall one person mentioning something I put in my cover letter.  Not to say that they aren&amp;#8217;t reading it and that you shouldn&amp;#8217;t put effort into it because if you have spelling mistakes or write like a 3rd grader you&amp;#8217;ll probably get filtered, but more to the point that you need to really make sure you are targetting the skills they are interested in inside them.  I thought I had a couple cool things on my resume, and out of all the places I talked to not once were they brought up in any capacity.  The first was a Research Grant I was awarded from a university (I think it&amp;#8217;s cool and it&amp;#8217;s IT security related), and the other was a time when I was invited to MS headquarters in Redmond as a &amp;#8220;Subject Matter Expert.&amp;#8221;  These are two things you won&amp;#8217;t find on everyone&amp;#8217;s resume and I was expecting SOMEONE to mention them, but nope never.  The hiring teams/panels only care about what you will do for them and their immediate needs.  &lt;/p&gt;
&lt;p&gt;My last bit of advice is to listen carefully during phone interviews and take note of the questions they are asking.  Repeatedly asked SQL or VMware questions?  They likely need help there badly.  Pick up on that and be ready to use that if you&amp;#8217;re invited for an in-person interview to capitalize on it.  Then when they inevitably ask you what you bring to the table or what makes you stand out you can say, &amp;#8220;It sounds like you guys really need someone with VMware experience and&amp;#8230;&amp;#8221;  &lt;/p&gt;
&lt;p&gt;I guess the short version of my ramblings is this:&lt;/p&gt;
&lt;p&gt;(resume focused on the job advertisement + demonstrated knowledge to backup claims + ability to pick up on employers needs and ask pointed/relevant questions back + confidence factor) * (personality index) = chance of success for obtaining job&lt;/p&gt;</description><link>http://www.userdel.com/post/40701140051</link><guid>http://www.userdel.com/post/40701140051</guid><pubDate>Wed, 16 Jan 2013 14:28:25 -0600</pubDate><category>blahblah</category><category>jobs</category><category>forumla</category></item><item><title>script to launch armitage teamserver quickly</title><description>&lt;p&gt;Quickly launch an &lt;a href="http://www.fastandeasyhacking.com/" title="Armitage" target="_blank"&gt;Armitage&lt;/a&gt; &lt;a href="http://www.fastandeasyhacking.com/manual#7" title="Multiplayer Hacking" target="_blank"&gt;teamserver&lt;/a&gt; with the servers IP address (eth0 by default, modify the script accordingly) automatically detected and with a pre-set password:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;#!/bin/bash&lt;/p&gt;
&lt;p&gt;echo &amp;#8220;launching multiplayer hacking ;)&amp;#8221;&lt;/p&gt;
&lt;p&gt;echo &amp;#8220;&amp;#8230;&amp;#8221;&lt;/p&gt;

&lt;p&gt;ipaddr=`ip addr show eth0 | grep -w &amp;#8220;inet&amp;#8221; | gawk &amp;#8216;{ print $2 }&amp;#8217; | cut -f1 -d\/`&lt;/p&gt;
&lt;p&gt;echo &amp;#8220;IP is $ipaddr&amp;#8221;&lt;/p&gt;
&lt;p&gt;echo &amp;#8220;&amp;#8230;&amp;#8221;&lt;/p&gt;

&lt;p&gt;cd /opt/metasploit/msf3/data/armitage/&lt;/p&gt;
&lt;p&gt;/opt/metasploit/msf3/data/armitage/teamserver $ipaddr password&lt;/p&gt;
&lt;div&gt;&lt;/div&gt;
&lt;/blockquote&gt;</description><link>http://www.userdel.com/post/40211420612</link><guid>http://www.userdel.com/post/40211420612</guid><pubDate>Thu, 10 Jan 2013 18:14:27 -0600</pubDate><category>armitage</category><category>metasploit</category><category>script</category><category>linux</category></item><item><title>adb driver for samsung galaxy s3 for windows</title><description>&lt;a href="http://developer.samsung.com/android/tools-sdks/Samsung-Andorid-USB-Driver-for-Windows"&gt;adb driver for samsung galaxy s3 for windows&lt;/a&gt;</description><link>http://www.userdel.com/post/38957929333</link><guid>http://www.userdel.com/post/38957929333</guid><pubDate>Thu, 27 Dec 2012 10:51:00 -0600</pubDate><category>android</category><category>s3</category><category>samsung</category><category>tools</category><category>windows</category></item><item><title>install adb driver for nexus 7 on windows</title><description>&lt;p&gt;If you have a Nexus 7 and you are following the &lt;a href="http://developer.android.com/training/basics/firstapp/running-app.html" title="Running your first app" target="_blank"&gt;developer.android.com&lt;/a&gt; tutorial and trying to run your first Android app you may be wondering why ADT won&amp;#8217;t see your device.  Thanks to this &lt;a href="http://zacktutorials.blogspot.com/2012/08/nexus7-android-development.html" title="Zack Tutorials" target="_blank"&gt;helpful article&lt;/a&gt; I found the solution:&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;In ADT go to the &amp;#8216;Window&amp;#8217; menu at the top and then select &amp;#8216;Android SDK Manager&amp;#8217; from the dropdown.  A new window should open and start loading available things to download.&lt;/li&gt;
&lt;li&gt;Under the &amp;#8216;Extras&amp;#8217; section, look for &amp;#8216;Google USB Driver&amp;#8217; then install it by ticking the box and clicking &amp;#8220;Install packages&amp;#8230;&amp;#8221;.&lt;/li&gt;
&lt;li&gt;Go to Device Manager in Windows and you should see your Nexus under &amp;#8216;Other devices&amp;#8217; with a yellow exclamation mark indicating its missing a driver.  Right click on it and choose &amp;#8216;Update driver software&amp;#8217;.  When it asks for the driver location it will be in your ADT bundle directory at &amp;#8221;adt-bundle-windows\sdk\extras\google\usb_driver&amp;#8221;.&lt;/li&gt;
&lt;li&gt;Finish through the driver wizard and plug in your Nexus 7.  Be sure USB debugging is enabled.&lt;/li&gt;
&lt;/ol&gt;</description><link>http://www.userdel.com/post/38893898715</link><guid>http://www.userdel.com/post/38893898715</guid><pubDate>Wed, 26 Dec 2012 15:25:33 -0600</pubDate><category>android</category><category>windows</category><category>nexus</category><category>blerg</category></item><item><title>lunch at the hp cafeteria</title><description>&lt;a href="http://incompetech.com/gallimaufry/lunchtime.html"&gt;lunch at the hp cafeteria&lt;/a&gt;</description><link>http://www.userdel.com/post/37912048433</link><guid>http://www.userdel.com/post/37912048433</guid><pubDate>Fri, 14 Dec 2012 10:10:05 -0600</pubDate><category>funny</category><category>link</category><category>hp</category></item></channel></rss>
