<?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:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-370190014146736633</id><updated>2011-12-23T07:02:11.660-08:00</updated><category term='iPhone'/><category term='Google Voice'/><category term='T-Mobile'/><title type='text'>jamsignal</title><subtitle type='html'>Technology, linux, mac, windows, scripting</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>25</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-3014130333410467102</id><published>2011-12-22T14:08:00.000-08:00</published><updated>2011-12-23T07:02:11.668-08:00</updated><title type='text'>Simple ASP page for unlocking Active Directory accounts</title><content type='html'>&lt;div&gt;This is quick way to unlock AD accounts on the PC or smartphone. The page will display all currently locked accounts. Type the username and click the unlock button.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;You need these two files.&lt;/div&gt;unlock.exe from Joeware.net&lt;br /&gt;LoginAdmin.dll mentioned on this page. -&amp;gt; &lt;a href="http://www.codeproject.com/KB/asp/webactivedirlogin.aspx?display=PrintAll&amp;amp;fid=24361&amp;amp;df=90&amp;amp;mpp=25&amp;amp;noise=3&amp;amp;sort=Position&amp;amp;view=Quick&amp;amp;fr=26"&gt;Code Project&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;unlock.asp&lt;/b&gt;&lt;br /&gt;&lt;textarea style="margin-top: 2px; margin-bottom: 2px; height: 80px; margin-left: 2px; margin-right: 2px; width: 584px; "&gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;My unlocker&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;% Response.Buffer = true %&amp;gt; &amp;lt;br&amp;gt;&amp;lt;%            Set objWShell = CreateObject("WScript.Shell")      Set objCmd = objWShell.Exec("c:\inetpub\unlock.exe domaincontroller  * -view")      strPResult = objCmd.StdOut.Readall()      set objCmd = nothing: Set objWShell = nothing        strStatus = "offline"      if InStr(strPResult,"TTL=")&amp;gt;0 then strStatus = "online" &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;    response.write "&amp;lt;br&amp;gt;" &amp;amp; replace(strPResult,vbCrLf,"&amp;lt;br&amp;gt;") &amp;lt;br&amp;gt;%&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;form name="input" action="unlock2.asp" method="post"&amp;gt;&amp;lt;br&amp;gt;Username: &amp;lt;br&amp;gt;&amp;lt;input type="text" name="user"&amp;gt;&amp;lt;br&amp;gt;&amp;lt;input type="submit" value="unlock"&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/form&amp;gt;&amp;lt;br&amp;gt;&lt;/textarea&gt;&lt;br /&gt;&lt;b&gt;unlock2.asp&lt;/b&gt;&lt;br /&gt;&lt;textarea style="margin-left: 2px; margin-right: 2px; width: 583px; margin-top: 2px; margin-bottom: 2px; height: 79px; "&gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;textarea&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;My unlocker&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;% user=Request.Form("user") %&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;% Set objLogon = Server.CreateObject("LoginAdmin.ImpersonateUser") objLogon.Logon "user", "pass", "domain"  UserName = user DomainName = "example.com"  Set UserObj = GetObject("WinNT://"&amp;amp; DomainName &amp;amp;"/domaincontroller/"&amp;amp; UserName &amp;amp;"") 'If Err.Number = 0 then   If UserObj.IsAccountLocked = -1 then UserObj.IsAccountLocked = 0   UserObj.SetInfo 'else   Set UserObj = Nothing 'end if  'If err.number = 0 Then '    response.write "The Account Unlock Failed.  Check that the account is, in fact, locked-out." 'Else '    response.write "The Account Unlock was Successful" 'End if  objLogon.Logoff Set objLogon = Nothing %&amp;gt;&amp;lt;br&amp;gt;&lt;/textarea&gt;&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;div&gt;&lt;b&gt;The finished product.&lt;/b&gt;&lt;br /&gt;&lt;div&gt;        &lt;p class="p1"&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p class="p1"&gt;&lt;b&gt;My unlocker&lt;/b&gt; &lt;/p&gt; &lt;p class="p1"&gt;1: jamsignal 12/19/2011-13:39:03 LOCKED VIEW_ONLY&lt;/p&gt; &lt;p class="p1"&gt;2: Guest 11/09/2011-10:36:49 LOCKED VIEW_ONLY&lt;/p&gt; &lt;p class="p1"&gt;3: Mickey 12/23/2011-07:44:31 LOCKED VIEW_ONLY&lt;/p&gt; &lt;p class="p1"&gt;4: Minnie 12/23/2011-08:38:09 LOCKED VIEW_ONLY&lt;/p&gt; &lt;p class="p1"&gt;5: Donald 12/17/2011-03:27:30 LOCKED VIEW_ONLY&lt;/p&gt;&lt;form name="input" action="unlock2.asp" method="post"&gt;Username: &lt;input type="text" name="user"&gt;&lt;input type="submit" value="unlock"&gt;&lt;br /&gt;&lt;/form&gt;&lt;p&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p class="p1"&gt;&lt;/p&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-3014130333410467102?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/3014130333410467102/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=3014130333410467102' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/3014130333410467102'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/3014130333410467102'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2011/12/simple-asp-page-for-unlocking-active.html' title='Simple ASP page for unlocking Active Directory accounts'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-2140294921696903202</id><published>2011-08-24T12:34:00.001-07:00</published><updated>2011-08-24T12:37:46.633-07:00</updated><title type='text'>Restart Windows server using the AT command.</title><content type='html'>&lt;p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 10.0px Tahoma"&gt;&lt;span class="Apple-style-span"  style="font-size:100%;"&gt;at 22:11 shutdown /r /f /t 0 &lt;/span&gt;&lt;/p&gt;&lt;p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 10.0px Tahoma"&gt;&lt;span class="Apple-style-span"  style="font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 10.0px Tahoma"&gt;&lt;span class="Apple-style-span"  style="font-size:100%;"&gt;I have used this on 2003 and 2008 for a quick one time restart after hours.&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-2140294921696903202?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/2140294921696903202/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=2140294921696903202' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/2140294921696903202'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/2140294921696903202'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2011/08/restart-windows-server-using.html' title='Restart Windows server using the AT command.'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-2305960192184928475</id><published>2011-08-01T12:38:00.000-07:00</published><updated>2011-08-01T12:47:51.254-07:00</updated><title type='text'>ws.ourpictures.com</title><content type='html'>Why is this one of the top domains in my firewall log?&lt;br /&gt;&lt;br /&gt;I had one PC posting to this URL every three seconds 24 hours a day. I looked at the PC and found ourpictures.exe in "C:\program files\RitzPix E-Z Print &amp;amp; Share." This might not be spyware but it is annoying. I deleted the exe and no more traffic for now.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-2305960192184928475?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/2305960192184928475/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=2305960192184928475' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/2305960192184928475'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/2305960192184928475'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2011/08/wsourpicturescom.html' title='ws.ourpictures.com'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-48464637540047695</id><published>2011-05-06T13:14:00.000-07:00</published><updated>2011-05-06T13:21:33.777-07:00</updated><title type='text'>SQL 2000 database out of space!</title><content type='html'>The drive is almost full. Shrinking does not help. The transaction log backup fails because there is not enough space. I changed the recovery model to 'Simple' and now I have plenty of space. The log is cleared. I know this is just a work around, but this database is not mission critical so I am good!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-48464637540047695?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/48464637540047695/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=48464637540047695' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/48464637540047695'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/48464637540047695'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2011/05/sql-2000-database-out-of-space.html' title='SQL 2000 database out of space!'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-4925126913070067932</id><published>2011-05-05T13:47:00.000-07:00</published><updated>2011-05-05T14:48:24.031-07:00</updated><title type='text'>I need a 'top' for windows.</title><content type='html'>&lt;div&gt;I will use tasklist and sort by ram usage:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;tasklist | sort /+60&lt;span class="Apple-tab-span" style="white-space:pre"&gt;  (&lt;/span&gt;XP)&lt;div&gt;tasklist | sort /+65&lt;span class="Apple-tab-span" style="white-space:pre"&gt;  (&lt;/span&gt;2003/2008)&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Then I will sort by CPU Time:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;tasklist /v | sort /+77&lt;span class="Apple-tab-span" style="white-space:pre"&gt;  (&lt;/span&gt;All)&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;&lt;i&gt;chrome.exe                  5708 Console                 0     48,612 K&lt;/i&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;chrome.exe                 31432 Console                 0     78,444 K&lt;/i&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;iexplore.exe               11168 Console                 0    103,052 K&lt;/i&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;Image Name                 PID Session Name   Session#    Mem Usage&lt;/i&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;========================= ====== ================ ======== &lt;/i&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;C:\&amp;gt;&lt;/i&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-4925126913070067932?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/4925126913070067932/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=4925126913070067932' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/4925126913070067932'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/4925126913070067932'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2011/05/i-need-top-for-windows.html' title='I need a &apos;top&apos; for windows.'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-2261937545997275215</id><published>2011-02-04T11:54:00.000-08:00</published><updated>2011-02-04T12:15:52.862-08:00</updated><title type='text'>How to use psexec with non-domain machine.</title><content type='html'>I use psexec daily and have for a long time. It has has never worked with computers which are not in the domain until now. I have only tried this with Windows XP.&lt;div&gt;&lt;br /&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: arial; font-size: 13px; color: rgb(39, 61, 73); "&gt;Under Administrative Tools:&lt;br /&gt;LOCAL SECURITY SETTINGS&lt;br /&gt;LOCAL POLICIES&lt;br /&gt;SECURITY OPTIONS&lt;br /&gt;Network Access: Sharing and security model for local&lt;br /&gt;accounts.&lt;br /&gt;&lt;br /&gt;Change from "Guest Only" to "Classic"&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: arial; font-size: 13px; color: rgb(39, 61, 73); "&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   &gt;Both of these commands now work!&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: arial; font-size: 13px; color: rgb(39, 61, 73); "&gt;psexec \\10.1.2.3 -u 10.1.2.3\administrator -p localpass cmd&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: arial; font-size: 13px; color: rgb(39, 61, 73); "&gt;net use j: \\10.1.2.3\c$ /user:10.1.2.3\administrator localpass&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-2261937545997275215?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/2261937545997275215/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=2261937545997275215' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/2261937545997275215'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/2261937545997275215'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2011/02/how-to-use-psexec-with-non-domain.html' title='How to use psexec with non-domain machine.'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-8565050320033561921</id><published>2011-02-02T07:59:00.000-08:00</published><updated>2011-02-02T08:50:29.058-08:00</updated><title type='text'>Active Directory failed logon auditing.</title><content type='html'>I need to see failed logon attempts and account lockouts in the event log.  This was somehow recently disabled. To enable, edit the Default Domain Controllers Policy, NOT the Default Domain Policy. &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="sectionTitle" tabindex="0"&gt;Computer Configuration /  Policies / Windows Settings / Security Settings / Audit Policy&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="sectionTitle" tabindex="0"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;table class="info" cellspacing="0" cellpadding="0"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;th scope="col"&gt;Policy&lt;/th&gt;&lt;th scope="col"&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;Setting&lt;/th&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Audit account logon events&lt;/td&gt; &lt;td&gt; &lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;Failure&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Audit account management&lt;/td&gt; &lt;td&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;Success&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Audit logon events&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;Failure&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;If you are troubleshooting account lockouts, use EventCombMT!&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-8565050320033561921?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/8565050320033561921/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=8565050320033561921' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/8565050320033561921'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/8565050320033561921'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2011/02/active-directory-failed-logon-auditing.html' title='Active Directory failed logon auditing.'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-4018995879363489952</id><published>2010-12-10T07:54:00.000-08:00</published><updated>2010-12-23T09:10:35.756-08:00</updated><title type='text'>Acrobat 9 does not display PDF in browser</title><content type='html'>This could be a problem after upgrading Acrobat Reader or running multiple versions of Acrobat. In my case,  I have Acrobat 7 and Acrobat Reader 9 installed on the same machine. &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;I changed this key to 1 and it is fixed. &lt;/div&gt;&lt;div&gt;HKCU\Software\Adobe\Adobe Acrobat\7.0\Originals\bBrowserIntegration &lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;http://kb2.adobe.com/cps/406/kb406119.html&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-4018995879363489952?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/4018995879363489952/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=4018995879363489952' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/4018995879363489952'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/4018995879363489952'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2010/12/acrobat-9-does-not-display-pdf-in.html' title='Acrobat 9 does not display PDF in browser'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-8325624227872556208</id><published>2010-11-24T11:25:00.001-08:00</published><updated>2011-06-03T13:22:11.244-07:00</updated><title type='text'>Creating music on hold for Mitel with Audacity.</title><content type='html'>The Mitel 3300 is very picky about the format of MOH files you can upload. First I find free music from somewhere like archive.org. Open the file with Audacity and convert track to mono.  Change the Project Rate to 8000 Hz and then export as WAV (Microsoft)  and U-law.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Update:&lt;/div&gt;&lt;div&gt;Check Ghost Notes for some interesting hold music. The artist gave me permission to use his stuff.&lt;/div&gt;&lt;div&gt;&lt;a href="http://ghostnotes.blogspot.com/"&gt;http://ghostnotes.blogspot.com/&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/370190014146736633-8325624227872556208?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/8325624227872556208/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=8325624227872556208' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/8325624227872556208'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/8325624227872556208'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2010/11/creating-music-on-hold-for-mitel-with.html' title='Creating music on hold for Mitel with Audacity.'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-391319579769701523</id><published>2010-11-15T21:05:00.000-08:00</published><updated>2010-11-15T21:46:55.559-08:00</updated><title type='text'>Using old 50 pair phone cable for VOIP</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nvY8XTW3qpA/TOIaYk553kI/AAAAAAAAACY/ZuULOnB7vzc/s1600/twisted%2Bpear%2Bsmall.png"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 288px; height: 266px;" src="http://4.bp.blogspot.com/_nvY8XTW3qpA/TOIaYk553kI/AAAAAAAAACY/ZuULOnB7vzc/s320/twisted%2Bpear%2Bsmall.png" alt="" id="BLOGGER_PHOTO_ID_5540019501144858178" border="0" /&gt;&lt;/a&gt;I have a few hard to get locations for voip. Wireless is an option but it is bulky and requires wall power for the phone. There is plenty of old 50 pair phone cable. I took the first four pair from one cable and patched it into a POE switch. Instant power but no ethernet. I changed the switch port to 10mb and it works!!! Of course I will not be using this for data because of the 10mb limit.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-391319579769701523?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/391319579769701523/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=391319579769701523' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/391319579769701523'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/391319579769701523'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2010/11/using-old-50-pair-phone-cable-for-voip.html' title='Using old 50 pair phone cable for VOIP'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_nvY8XTW3qpA/TOIaYk553kI/AAAAAAAAACY/ZuULOnB7vzc/s72-c/twisted%2Bpear%2Bsmall.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-5003493442976404245</id><published>2010-11-14T16:44:00.000-08:00</published><updated>2010-11-14T16:55:41.302-08:00</updated><title type='text'>smb_mount: mount failed to ubuntu/share :syserr = Broken pipe</title><content type='html'>&lt;div style="text-align: left;"&gt;I had a problem connecting to an smb share using osx. I found the fix below and all is well!&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Lucida Grande', Geneva, Arial, Verdana, sans-serif; font-size: 12px; border-collapse: collapse; color: rgb(51, 51, 51); line-height: 16px; "&gt;macbook:/$ ps -A | grep NetAuth&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Lucida Grande', Geneva, Arial, Verdana, sans-serif; font-size: 12px; border-collapse: collapse; color: rgb(51, 51, 51); line-height: 16px; "&gt;2028 ?? 0:11.22 /System/Library/CoreServices/NetAuthAgent.app/Contents/MacOS/NetAuthAgent&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Lucida Grande', Geneva, Arial, Verdana, sans-serif; font-size: 12px; border-collapse: collapse; color: rgb(51, 51, 51); line-height: 16px; "&gt;11282 ttys000 0:00.00 grep NetAuth&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Lucida Grande', Geneva, Arial, Verdana, sans-serif; font-size: 12px; border-collapse: collapse; color: rgb(51, 51, 51); line-height: 16px; "&gt;macbook:/System/Library/CoreServices$ kill -9 2028&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   &gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; font-size: 12px; line-height: 16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Lucida Grande', Geneva, Arial, Verdana, sans-serif; font-size: 12px; border-collapse: collapse; color: rgb(51, 51, 51); line-height: 16px; "&gt;After killing the NetAuthAgent application, everything works well again:&lt;/span&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;span class="Apple-style-span"   &gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; font-size: 12px; line-height: 16px;"&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;a href="http://discussions.info.apple.com/thread.jspa?threadID=2131955&amp;amp;start=30&amp;amp;tstart=0"&gt;http://discussions.info.apple.com/thread.jspa?threadID=2131955&amp;amp;start=30&amp;amp;tstart=0&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;span class="Apple-style-span" style="font-family: 'Lucida Grande', Geneva, Arial, Verdana, sans-serif; font-size: 12px; border-collapse: collapse; color: rgb(51, 51, 51); line-height: 16px; "&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-5003493442976404245?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/5003493442976404245/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=5003493442976404245' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/5003493442976404245'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/5003493442976404245'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2010/11/smbmount-mount-failed-to-ubuntushare.html' title='smb_mount: mount failed to ubuntu/share :syserr = Broken pipe'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-6065991309335899962</id><published>2009-12-08T09:51:00.000-08:00</published><updated>2009-12-08T09:59:19.038-08:00</updated><title type='text'>Remote call forwarding on the Meridian.</title><content type='html'>This is just a copy and paste from the site below.&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;a href="http://www.tek-tips.com/viewthread.cfm?qid=1560875&amp;amp;page=6"&gt;http://www.tek-tips.com/viewthread.cfm?qid=1560875&amp;amp;page=6&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;RCFW requires the following:&lt;br /&gt;• set the password length in LD 15, at the SCPL prompt&lt;br /&gt;• add passwords in LD 10 and LD 11, at the SCPW prompt&lt;br /&gt;• allow Call Forward All Calls in LD 10 and LD 11, and&lt;br /&gt;• define Remote Call Forward Activate (RCFA), Deactivate (RCFD), and&lt;br /&gt;Verify (RCFV) Flexible Feature Codes (FFC) in LD 57. &lt;br /&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-6065991309335899962?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/6065991309335899962/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=6065991309335899962' title='20 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/6065991309335899962'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/6065991309335899962'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2009/12/remote-call-forwarding-on-meridian.html' title='Remote call forwarding on the Meridian.'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>20</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-4049417918091730204</id><published>2009-11-03T16:53:00.000-08:00</published><updated>2009-11-04T07:08:50.831-08:00</updated><title type='text'>Changing "pre-Windows 2000" group name with ADModify.</title><content type='html'>I have 2000+ groups in AD where the (pre-Windows 2000) group name looks like random generated characters. I am lucky enough to have an application that still uses this name. Here is my fix.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Run ADModify and select Modify Attributes. Select a domain and domain controller. Show only Groups and Containers. Find the groups that need to be changed. Select the Custom tab and fill the blanks like below.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;img style="cursor:pointer; cursor:hand;width: 400px; height: 175px;" src="http://1.bp.blogspot.com/_nvY8XTW3qpA/SvGY4GDtxMI/AAAAAAAAAB0/L1JpWA2tdjw/s400/admodify.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5400265517660226754" /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;20 seconds to change 2000 groups!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-4049417918091730204?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/4049417918091730204/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=4049417918091730204' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/4049417918091730204'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/4049417918091730204'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2009/11/changing-pre-windows-2000-group-name.html' title='Changing &quot;pre-Windows 2000&quot; group name with ADModify.'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_nvY8XTW3qpA/SvGY4GDtxMI/AAAAAAAAAB0/L1JpWA2tdjw/s72-c/admodify.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-4154567755471909784</id><published>2009-10-11T19:22:00.000-07:00</published><updated>2009-10-11T19:47:04.954-07:00</updated><title type='text'>How to count active users on a Citrix farm and display on a web page.</title><content type='html'>&lt;div&gt;Get grep.exe and wc.exe for windows at &lt;a href="http://unxutils.sourceforge.net/"&gt;unxutils.sourceforge.net&lt;/a&gt;. Create two batch files as below and setup a scheduled task for count.bat.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;list.bat&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;quser /server:citrixa&lt;/div&gt;&lt;div&gt;quser /server:citrixb&lt;/div&gt;&lt;div&gt;quser /server:citrixc&lt;/div&gt;&lt;div&gt;(add more servers)&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;count.bat&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;list.bat | grep Active | wc -l &gt; temp&lt;/div&gt;&lt;div&gt;&lt;div&gt;copy a+temp+b /b  count.html&lt;/div&gt;&lt;div&gt;copy count.html /b c:\inetpub\www&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;br /&gt;The files a and b are just some simple html. I now have a simple banner like below that is updated every five minutes.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Citrix Active  34 &lt;/b&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-4154567755471909784?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/4154567755471909784/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=4154567755471909784' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/4154567755471909784'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/4154567755471909784'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2009/10/how-to-count-active-users-on-citrix.html' title='How to count active users on a Citrix farm and display on a web page.'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-4418020367308693717</id><published>2009-10-08T21:43:00.000-07:00</published><updated>2009-10-08T22:00:43.750-07:00</updated><title type='text'>Aiming a satellite dish with Google Earth.</title><content type='html'>&lt;div&gt;Lookup the azimuth for your zip code. Use the ruler tool in Google Earth to draw a line in the direction needed. Find an object on the line to use for aiming. I used the corner of a building.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nvY8XTW3qpA/Ss7AGYGuOhI/AAAAAAAAAA8/M-tI2FgQ1zE/s1600-h/Google+earth+ruler+205.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 400px; height: 236px;" src="http://4.bp.blogspot.com/_nvY8XTW3qpA/Ss7AGYGuOhI/AAAAAAAAAA8/M-tI2FgQ1zE/s400/Google+earth+ruler+205.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5390457019791456786" /&gt;&lt;/a&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;  I found a small piece of pipe and placed it on the mounting bracket. Then I looked through the pipe to view the corner of the building. I have 90% signal and it works great.&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:'Lucida Grande', Arial, Helvetica, sans-serif;font-size:100%;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 19px;font-size:13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nvY8XTW3qpA/Ss7AGYGuOhI/AAAAAAAAAA8/M-tI2FgQ1zE/s1600-h/Google+earth+ruler+205.jpg"&gt;&lt;/a&gt;&lt;img style="cursor:pointer; cursor:hand;width: 300px; height: 400px;" src="http://1.bp.blogspot.com/_nvY8XTW3qpA/Ss7BqpFeANI/AAAAAAAAABM/qkF3g-bLlpc/s400/dish+with+pipe.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5390458742336520402" /&gt;&lt;div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-4418020367308693717?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/4418020367308693717/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=4418020367308693717' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/4418020367308693717'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/4418020367308693717'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2009/10/aiming-satellite-dish-with-google-earth.html' title='Aiming a satellite dish with Google Earth.'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_nvY8XTW3qpA/Ss7AGYGuOhI/AAAAAAAAAA8/M-tI2FgQ1zE/s72-c/Google+earth+ruler+205.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-2857729433052856005</id><published>2009-10-06T14:01:00.000-07:00</published><updated>2009-10-06T14:32:19.673-07:00</updated><title type='text'>USB to serial adapter with OSX</title><content type='html'>I have a hawking USB to Serial converter I need to use with my MacBook. There is always a console port calling my name.&lt;br /&gt;&lt;br /&gt;First I installed the Prolific driver from this page, &lt;a href="http://www.prolific.com.tw/eng/downloads.asp?ID=31"&gt;Prolific.&lt;/a&gt;  Now I just open terminal and type the command below.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;screen /dev/tty.usbserial&lt;/i&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;&lt;div&gt;I had to search for the command to close screen when I was done. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;Ctrl-a k&lt;/i&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-2857729433052856005?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/2857729433052856005/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=2857729433052856005' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/2857729433052856005'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/2857729433052856005'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2009/10/usb-to-serial-adapter-with-osx.html' title='USB to serial adapter with OSX'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-3959434235036499477</id><published>2009-10-02T20:00:00.000-07:00</published><updated>2009-10-02T20:04:52.668-07:00</updated><title type='text'>iPhone camera + magnifying glass</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nvY8XTW3qpA/Ssa-9umJgJI/AAAAAAAAAAs/vXOKwSd-LSY/s1600-h/iphone-mag+glass.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_nvY8XTW3qpA/Ssa-9umJgJI/AAAAAAAAAAs/vXOKwSd-LSY/s400/iphone-mag+glass.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5388203971884712082" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Try this out for some cool shots.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-3959434235036499477?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/3959434235036499477/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=3959434235036499477' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/3959434235036499477'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/3959434235036499477'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2009/10/iphone-camera-magnifying-glass.html' title='iPhone camera + magnifying glass'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_nvY8XTW3qpA/Ssa-9umJgJI/AAAAAAAAAAs/vXOKwSd-LSY/s72-c/iphone-mag+glass.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-3608316141582647134</id><published>2009-09-28T22:06:00.000-07:00</published><updated>2009-09-28T22:36:59.144-07:00</updated><title type='text'>554 5.3.5 Local configuration error</title><content type='html'>&lt;p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 20.0px; font: 13.0px Georgia; color: #333233"&gt;I spent a few hours tonight trying to get rid of this error from sendmail on Linux. I added the new domain to the file below and all is good.&lt;/p&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-size:100%;color:#333233;"&gt;&lt;span class="Apple-style-span"  style="font-size:13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-size:100%;color:#333233;"&gt;&lt;span class="Apple-style-span"  style="font-size:13px;"&gt;&lt;p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 20.0px; font: 16.0px Georgia; color: #333233"&gt;&lt;i&gt;/etc/mail/local-host-names&lt;/i&gt;&lt;/p&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:130%;"&gt;&lt;span class="Apple-style-span"  style="font-size:16px;"&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:130%;"&gt;&lt;span class="Apple-style-span"  style="font-size:16px;"&gt;&lt;p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 16.0px Georgia; color: #333233"&gt;This was a BlueQuartz server that should do everything for you from the web interface. Once in a while, it gets confused. The domain was listed in the file as www.example.com. I added example.com&lt;/p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-3608316141582647134?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/3608316141582647134/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=3608316141582647134' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/3608316141582647134'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/3608316141582647134'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2009/09/554-535-local-configuration-error.html' title='554 5.3.5 Local configuration error'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-1514201769448265450</id><published>2009-09-10T21:10:00.000-07:00</published><updated>2009-09-10T21:29:08.611-07:00</updated><title type='text'>How to use a Voice Memo as a ringtone on the iPhone</title><content type='html'>You need to use terminal or SSH.&lt;br /&gt;&lt;br /&gt;The voice memos are located in this folder as .m4a files.&lt;br /&gt;/private/var/mobile/Media/Recordings&lt;br /&gt;&lt;br /&gt;My ringtones are located in this folder as .m4r files. (Is this folder different for everyone?)&lt;br /&gt;/private/var/stash/Ringtones.z8OJCu&lt;br /&gt;&lt;br /&gt;Copy the m4a files to the ringtone folder and rename them as m4r. It worked but I might look for a GUI file manager next time.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-1514201769448265450?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/1514201769448265450/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=1514201769448265450' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/1514201769448265450'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/1514201769448265450'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2009/09/how-to-use-voice-memo-as-ringtone-on.html' title='How to use a Voice Memo as a ringtone on the iPhone'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-9055637714059726727</id><published>2009-08-03T21:06:00.000-07:00</published><updated>2009-08-03T21:41:23.625-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='T-Mobile'/><category scheme='http://www.blogger.com/atom/ns#' term='iPhone'/><category scheme='http://www.blogger.com/atom/ns#' term='Google Voice'/><title type='text'>iPhone + T-Mobile + Google Voice</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_nvY8XTW3qpA/Sne6-vsnLyI/AAAAAAAAAAk/ApgqVyekVhw/s1600-h/water.jpg"&gt;&lt;img style="cursor: pointer; width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_nvY8XTW3qpA/Sne6-vsnLyI/AAAAAAAAAAk/ApgqVyekVhw/s400/water.jpg" alt="" id="BLOGGER_PHOTO_ID_5365963068153474850" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: left;"&gt;&lt;span style="font-style: italic;"&gt;(first photo with my iPhone)&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;I just wanted to jot this down in case I need it again soon.&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Purchased an iPhone 3G from Ebay.&lt;/li&gt;&lt;li&gt;Plugged in an old AT&amp;amp;T sim card with no service to get to the home screen.&lt;/li&gt;&lt;li&gt;Used iTunes to upgrade the phone to 3.0.&lt;/li&gt;&lt;li&gt;With instructions from iphone-hacks.com, I ran Redsn0w to jailbreak and ultrasn0w to unlock.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Installed Google Voice with Cydia and it works!&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;You can not get 3G with T-Mobile but Edge works. Email works great, Safari is a little slow, Youtube is very slow.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-9055637714059726727?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/9055637714059726727/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=9055637714059726727' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/9055637714059726727'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/9055637714059726727'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2009/08/iphone-t-mobile-google-voice.html' title='iPhone + T-Mobile + Google Voice'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_nvY8XTW3qpA/Sne6-vsnLyI/AAAAAAAAAAk/ApgqVyekVhw/s72-c/water.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-1522777949842296392</id><published>2009-05-22T12:18:00.000-07:00</published><updated>2009-05-23T21:42:50.934-07:00</updated><title type='text'>Free AIS message decoder.</title><content type='html'>This will decode AIVDM and AIVDO messages from the command line. I was inspired by the&lt;a href="http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=71432&amp;amp;lngWId=1"&gt; Joe Petrix decoder in Basic&lt;/a&gt; and tried to do the same thing in c++.&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://jamsignal.googlepages.com/ais-decode.exe"&gt;Windows Binary&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://jamsignal.googlepages.com/ais-decode.cpp"&gt;Source code&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://jamsignal.googlepages.com/ais-decode"&gt;Linux Binary(Ubuntu)&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;div&gt;Sample program output:&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;c:\&gt;ais-decode&lt;/div&gt;&lt;div&gt;Enter AIS string. (Example !AIVDM,1,1,,A,1000vV@P00Idw98ATMk00?wj0&lt;0n,0*0f)&lt;/div&gt;&lt;div&gt;AIS string: !AIVDM,1,1,,A,15LWgHpP00qdupBATUBbk?v00H0p,0*2E&lt;/div&gt;&lt;div&gt;ais_string= !AIVDM,1,1,,A,15LWgHpP00qdupBATUBbk?v00H0p,0*2E&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;message type =          1&lt;/div&gt;&lt;div&gt;repeat indicator =      0&lt;/div&gt;&lt;div&gt;MMSI =                  365555555&lt;/div&gt;&lt;div&gt;navagation status =     8&lt;/div&gt;&lt;div&gt;rate of turn =          128&lt;/div&gt;&lt;div&gt;speed over ground =     0&lt;/div&gt;&lt;div&gt;position accuracy =     1&lt;/div&gt;&lt;div&gt;longitude =             -88.043930&lt;/div&gt;&lt;div&gt;latitude =              30.708603&lt;/div&gt;&lt;div&gt;course over ground =    2764&lt;/div&gt;&lt;div&gt;true heading =          511&lt;/div&gt;&lt;div&gt;c:\&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-1522777949842296392?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/1522777949842296392/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=1522777949842296392' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/1522777949842296392'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/1522777949842296392'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2009/05/free-ais-message-decoder.html' title='Free AIS message decoder.'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-3788356684524451896</id><published>2009-03-12T10:06:00.000-07:00</published><updated>2009-03-12T10:28:23.957-07:00</updated><title type='text'>Tracking network printer usage with SNMP.</title><content type='html'>Get a list of printer names or IP addresses. This is what I used but my printer descriptions all have the IP address listed.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;net view \\printserver &gt; printerlist.txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;printerA  Print  IP: 192.168.3.1&lt;br /&gt;printerB  Print  IP: 192.168.3.5&lt;br /&gt;&lt;br /&gt;I installed Net-SNMP and created checkusage.bat.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;for /F "tokens=4" %%a in (printerlist.txt) do (&lt;br /&gt;  echo %%a&lt;br /&gt;  snmpget -v 1 -c public %%a 1.3.6.1.2.1.43.10.2.1.4.1.1&lt;br /&gt;)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;This will give output like.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;192.168.3.1&lt;br /&gt;SNMPv2-SMI::mib-2.43.10.2.1.4.1.1 = Counter32: 288975&lt;br /&gt;192.168.3.5&lt;br /&gt;SNMPv2-SMI::mib-2.43.10.2.1.4.1.1 = Counter32: 19710&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I tried this with various HP, Minolta, Savin, Ricoh and Canon printers. Now I can run this monthly and import into a spreadsheet.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-3788356684524451896?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/3788356684524451896/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=3788356684524451896' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/3788356684524451896'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/3788356684524451896'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2009/03/tracking-network-printer-usage-with.html' title='Tracking network printer usage with SNMP.'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-9069018464981327107</id><published>2009-02-18T20:47:00.000-08:00</published><updated>2009-02-18T21:05:27.862-08:00</updated><title type='text'>How to restart all the computers on your network with PsShutdown.</title><content type='html'>net view &gt; computers.txt&lt;br /&gt;&lt;br /&gt;I used Wordpad to cleanup this file. Replace all "\\" with nothing. Replace all " " with nothing. There were a lot of extra spaces in the file and psshutdown did not like this. If descriptions show up in your file, you may need to use Excel for the cleanup.&lt;br /&gt;&lt;br /&gt;psshutdown -c -r @computers.txt &gt;&gt; log.txt&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-9069018464981327107?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/9069018464981327107/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=9069018464981327107' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/9069018464981327107'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/9069018464981327107'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2009/02/how-to-restart-all-computers-on-your.html' title='How to restart all the computers on your network with PsShutdown.'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-6258388451972702622</id><published>2008-08-05T21:35:00.000-07:00</published><updated>2008-08-05T22:06:44.299-07:00</updated><title type='text'>How to combine many jpeg pics to make a video.</title><content type='html'>I used Zoneminder to pull an image from an Axis camera every 15 seconds. This captured 124k jpeg files. I then found &lt;a href="http://mandrivausers.org/index.php?s=3fb5c262200483bec5fbe1590436eafa&amp;showtopic=45309&amp;st=15"&gt;this forum&lt;/a&gt; with help on creating the video. Here is the command I used to combine the jpegs into an avi.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;mencoder "mf://??/*.jpg" -mf fps=25 -o output.avi -ovc lavc -lavcopts vcodec=mpeg4&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;And this is a sample of my video.&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/OCYtNI2Wipw&amp;hl=en&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/OCYtNI2Wipw&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-6258388451972702622?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/6258388451972702622/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=6258388451972702622' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/6258388451972702622'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/6258388451972702622'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2008/08/how-to-combine-many-jpeg-pics-to-make.html' title='How to combine many jpeg pics to make a video.'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-370190014146736633.post-6174795595088229911</id><published>2008-05-21T09:30:00.000-07:00</published><updated>2008-12-10T02:13:05.938-08:00</updated><title type='text'>Inland waterway mile markers in kml.</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nvY8XTW3qpA/SDR46ssFetI/AAAAAAAAAAU/MFjJucoZMFc/s1600-h/milemarkers.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_nvY8XTW3qpA/SDR46ssFetI/AAAAAAAAAAU/MFjJucoZMFc/s400/milemarkers.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5202916419343579858" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Do you need mile markers in kml? I created a kml file of mile markers for Google Earth with over 10,000 push pins.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.iwr.usace.army.mil/ndc/db/watermil/data/"&gt;This is where I found the coordinates.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://jamsignal.googlepages.com/milemarkers.kml"&gt;The kml file I created.&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/370190014146736633-6174795595088229911?l=jamsignal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jamsignal.blogspot.com/feeds/6174795595088229911/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=370190014146736633&amp;postID=6174795595088229911' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/6174795595088229911'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/370190014146736633/posts/default/6174795595088229911'/><link rel='alternate' type='text/html' href='http://jamsignal.blogspot.com/2008/05/inland-waterway-mile-markers-in-kml.html' title='Inland waterway mile markers in kml.'/><author><name>jamsignal.com</name><uri>http://www.blogger.com/profile/03066473935318850742</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_nvY8XTW3qpA/SDR46ssFetI/AAAAAAAAAAU/MFjJucoZMFc/s72-c/milemarkers.jpg' height='72' width='72'/><thr:total>0</thr:total></entry></feed>
