
<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Lead, Follow, or Move</title>
	<atom:link href="http://www.leadfollowmove.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.leadfollowmove.com</link>
	<description>Adam Bell on Deployment, Automation, PowerShell et al</description>
	<lastBuildDate>Mon, 03 Dec 2012 04:03:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Converting a GUID string to octet string by David Lundell</title>
		<link>http://www.leadfollowmove.com/archives/powershell/converting-a-guid-string-to-octet-string/comment-page-1#comment-12305</link>
		<dc:creator>David Lundell</dc:creator>
		<pubDate>Mon, 03 Dec 2012 04:03:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.leadfollowmove.com/archives/powershell/converting-a-guid-string-to-octet-string#comment-12305</guid>
		<description><![CDATA[Thanks for this post. I used the info from here are and other sources to build a little library on going from the canonical form of GUIDs to Octet String and also to base 64 encoding and back again. http://blog.ilmbestpractices.com/2012/12/revisiting-guids-octets-and-base64.html]]></description>
		<content:encoded><![CDATA[<p>Thanks for this post. I used the info from here are and other sources to build a little library on going from the canonical form of GUIDs to Octet String and also to base 64 encoding and back again. <a href="http://blog.ilmbestpractices.com/2012/12/revisiting-guids-octets-and-base64.html" rel="nofollow">http://blog.ilmbestpractices.com/2012/12/revisiting-guids-octets-and-base64.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on KMS autodiscovery with multiple Activation Servers by Clint Boessen</title>
		<link>http://www.leadfollowmove.com/archives/windows-client/kms-autodiscovery-with-multiple-activation-servers/comment-page-1#comment-11639</link>
		<dc:creator>Clint Boessen</dc:creator>
		<pubDate>Wed, 24 Oct 2012 13:58:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.leadfollowmove.com/?p=481#comment-11639</guid>
		<description><![CDATA[Hi Adam,

Nice work, thanks for the post.

Regards,
Clint Boessen]]></description>
		<content:encoded><![CDATA[<p>Hi Adam,</p>
<p>Nice work, thanks for the post.</p>
<p>Regards,<br />
Clint Boessen</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up Beryl on Ubuntu (Feisty) by Beryl configurations &#124; Janesfreedman</title>
		<link>http://www.leadfollowmove.com/archives/linux/setting-up-beryl-on-ubuntu-feisty/comment-page-1#comment-11144</link>
		<dc:creator>Beryl configurations &#124; Janesfreedman</dc:creator>
		<pubDate>Tue, 04 Sep 2012 07:36:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.leadfollowmove.com/archives/linux/setting-up-beryl-on-ubuntu-feisty#comment-11144</guid>
		<description><![CDATA[[...] Setting up Beryl on Ubuntu (Feisty) &#124; Lead, Follow, or MoveMay 8, 2007 &#8230; Next we want to install the Beryl Manager, and Beryl Settings Manager. This enables us to have much more control over the configuration of the &#8230; [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Setting up Beryl on Ubuntu (Feisty) | Lead, Follow, or MoveMay 8, 2007 &#8230; Next we want to install the Beryl Manager, and Beryl Settings Manager. This enables us to have much more control over the configuration of the &#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PowerShell Toolbox by Episode 7 &#8211; Don&#8217;t Forget What You Already Know &#171; PowerScripting Podcast</title>
		<link>http://www.leadfollowmove.com/powershell-toolbox/comment-page-1#comment-10588</link>
		<dc:creator>Episode 7 &#8211; Don&#8217;t Forget What You Already Know &#171; PowerScripting Podcast</dc:creator>
		<pubDate>Fri, 06 Jul 2012 00:05:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.leadfollowmove.com/powershell-toolbox/#comment-10588</guid>
		<description><![CDATA[[...] blog post listing PowerShell [...]]]></description>
		<content:encoded><![CDATA[<p>[...] blog post listing PowerShell [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting a GUID string to octet string by faruk demirel</title>
		<link>http://www.leadfollowmove.com/archives/powershell/converting-a-guid-string-to-octet-string/comment-page-1#comment-10055</link>
		<dc:creator>faruk demirel</dc:creator>
		<pubDate>Thu, 26 Apr 2012 12:50:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.leadfollowmove.com/archives/powershell/converting-a-guid-string-to-octet-string#comment-10055</guid>
		<description><![CDATA[Here is the Delphi Way


Function GUID2OctetString(GUIDstr:string):string;


Function reversestring(s:string):string;
var
  l:integer;
  tmpstr:string;
begin
  while length(s)&gt;2 do
  begin
     tmpstr:=tmpstr+copy(s,length(s)-1, length(s));
     s:=copy(s,1,length(s)-2);
  end;
  result:=tmpstr  +s;
end;

var
  parcaA,ParcaB,ParcaC, Gerisi:string;
  OctetStr,tmp:string;
  i:integer;
begin
  GUIDstr:=StringReplace(GUIDstr,&#039;{&#039;,&#039;&#039;,[rfReplaceAll, rfIgnoreCase]);
  GUIDstr:=StringReplace(GUIDstr,&#039;}&#039;,&#039;&#039;,[rfReplaceAll, rfIgnoreCase]);

  ParcaA:=copy(GUIDstr,1,pos(&#039;-&#039;,GUIDstr)-1);
  GUIDstr:=copy(GUIDstr,pos(&#039;-&#039;,GUIDstr)+1, length(GUIDstr));

  ParcaB:=copy(GUIDstr,1,pos(&#039;-&#039;,GUIDstr)-1);
  GUIDstr:=copy(GUIDstr,pos(&#039;-&#039;,GUIDstr)+1, length(GUIDstr));

  ParcaC:=copy(GUIDstr,1,pos(&#039;-&#039;,GUIDstr)-1);
  GUIDstr:=copy(GUIDstr,pos(&#039;-&#039;,GUIDstr)+1, length(GUIDstr));

  Gerisi:=StringReplace(GUIDstr,&#039;-&#039;,&#039;&#039;,[rfReplaceAll, rfIgnoreCase]);
  Octetstr:= reversestring(ParcaA)+reversestring(ParcaB)+reversestring(ParcaC)+Gerisi;
  // 1,3,5 add back slashes
  while length(octetstr)&gt;2 do
  begin
    tmp:=tmp+ &#039;\&#039;+ copy(octetstr,1,2);
    octetstr:=copy(octetstr,3,length(octetstr))
  end;
  result:=tmp+&#039;\&#039;+octetstr;
end;]]></description>
		<content:encoded><![CDATA[<p>Here is the Delphi Way</p>
<p>Function GUID2OctetString(GUIDstr:string):string;</p>
<p>Function reversestring(s:string):string;<br />
var<br />
  l:integer;<br />
  tmpstr:string;<br />
begin<br />
  while length(s)&gt;2 do<br />
  begin<br />
     tmpstr:=tmpstr+copy(s,length(s)-1, length(s));<br />
     s:=copy(s,1,length(s)-2);<br />
  end;<br />
  result:=tmpstr  +s;<br />
end;</p>
<p>var<br />
  parcaA,ParcaB,ParcaC, Gerisi:string;<br />
  OctetStr,tmp:string;<br />
  i:integer;<br />
begin<br />
  GUIDstr:=StringReplace(GUIDstr,&#8217;{&#8216;,&#8221;,[rfReplaceAll, rfIgnoreCase]);<br />
  GUIDstr:=StringReplace(GUIDstr,&#8217;}',&#8221;,[rfReplaceAll, rfIgnoreCase]);</p>
<p>  ParcaA:=copy(GUIDstr,1,pos(&#8216;-&#8217;,GUIDstr)-1);<br />
  GUIDstr:=copy(GUIDstr,pos(&#8216;-&#8217;,GUIDstr)+1, length(GUIDstr));</p>
<p>  ParcaB:=copy(GUIDstr,1,pos(&#8216;-&#8217;,GUIDstr)-1);<br />
  GUIDstr:=copy(GUIDstr,pos(&#8216;-&#8217;,GUIDstr)+1, length(GUIDstr));</p>
<p>  ParcaC:=copy(GUIDstr,1,pos(&#8216;-&#8217;,GUIDstr)-1);<br />
  GUIDstr:=copy(GUIDstr,pos(&#8216;-&#8217;,GUIDstr)+1, length(GUIDstr));</p>
<p>  Gerisi:=StringReplace(GUIDstr,&#8217;-',&#8221;,[rfReplaceAll, rfIgnoreCase]);<br />
  Octetstr:= reversestring(ParcaA)+reversestring(ParcaB)+reversestring(ParcaC)+Gerisi;<br />
  // 1,3,5 add back slashes<br />
  while length(octetstr)&gt;2 do<br />
  begin<br />
    tmp:=tmp+ &#8216;\&#8217;+ copy(octetstr,1,2);<br />
    octetstr:=copy(octetstr,3,length(octetstr))<br />
  end;<br />
  result:=tmp+&#8217;\'+octetstr;<br />
end;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Retrieving Active Directory FSMO roles with PowerShell by techibee.com</title>
		<link>http://www.leadfollowmove.com/archives/powershell/retrieving-active-directory-fsmo-roles-with-powershell/comment-page-1#comment-9752</link>
		<dc:creator>techibee.com</dc:creator>
		<pubDate>Sun, 01 Jan 2012 19:16:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.leadfollowmove.com/?p=34#comment-9752</guid>
		<description><![CDATA[We can use built-in activedirectory module to get this information easily...

http://techibee.com/powershell/how-to-get-fsmo-roles-of-a-active-directory-domain-using-powershell/1273]]></description>
		<content:encoded><![CDATA[<p>We can use built-in activedirectory module to get this information easily&#8230;</p>
<p><a href="http://techibee.com/powershell/how-to-get-fsmo-roles-of-a-active-directory-domain-using-powershell/1273" rel="nofollow">http://techibee.com/powershell/how-to-get-fsmo-roles-of-a-active-directory-domain-using-powershell/1273</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error checking in PowerShell by Steve</title>
		<link>http://www.leadfollowmove.com/archives/powershell/error-checking-in-powershell/comment-page-1#comment-9420</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 13 Oct 2011 03:39:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.leadfollowmove.com/archives/powershell/error-checking-in-powershell#comment-9420</guid>
		<description><![CDATA[Fantastic little bit of code.  Exactly what I was looking for.  
Thanks for sharing.

Cheers,
Steve]]></description>
		<content:encoded><![CDATA[<p>Fantastic little bit of code.  Exactly what I was looking for.<br />
Thanks for sharing.</p>
<p>Cheers,<br />
Steve</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PowerShell &#8211; less code, same result by Powershell &#8211; Rename Local Admin Account OR Ecuritysay Oughthray Obscurityway &#124; BlackOps</title>
		<link>http://www.leadfollowmove.com/archives/powershell/powershell-less-code-same-result/comment-page-1#comment-9055</link>
		<dc:creator>Powershell &#8211; Rename Local Admin Account OR Ecuritysay Oughthray Obscurityway &#124; BlackOps</dc:creator>
		<pubDate>Thu, 25 Aug 2011 20:06:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.leadfollowmove.com/?p=52#comment-9055</guid>
		<description><![CDATA[[...] to the creator of the password generator (Adam Bell) but I wish I noticed the comment about the break sooner. I have they adjusted code in my script. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] to the creator of the password generator (Adam Bell) but I wish I noticed the comment about the break sooner. I have they adjusted code in my script. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Managing group membership in Active Directory with PowerShell (Part 2) by JM</title>
		<link>http://www.leadfollowmove.com/archives/powershell/managing-group-membership-in-active-directory-with-powershell-part-2/comment-page-1#comment-8774</link>
		<dc:creator>JM</dc:creator>
		<pubDate>Wed, 13 Jul 2011 15:50:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.leadfollowmove.com/?p=48#comment-8774</guid>
		<description><![CDATA[And you could use for adding a user to rhe Group:

$group.member.Add($user.distinguishedName.ToString())]]></description>
		<content:encoded><![CDATA[<p>And you could use for adding a user to rhe Group:</p>
<p>$group.member.Add($user.distinguishedName.ToString())</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PowerShell &#8211; less code, same result by D</title>
		<link>http://www.leadfollowmove.com/archives/powershell/powershell-less-code-same-result/comment-page-1#comment-8668</link>
		<dc:creator>D</dc:creator>
		<pubDate>Wed, 29 Jun 2011 21:08:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.leadfollowmove.com/?p=52#comment-8668</guid>
		<description><![CDATA[Any chance of seeing a line with the script being use? I&#039;m guessing it would be something like $p=password.ps1 8 is that right?]]></description>
		<content:encoded><![CDATA[<p>Any chance of seeing a line with the script being use? I&#8217;m guessing it would be something like $p=password.ps1 8 is that right?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
