<?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 the Sysadmin Channel	</title>
	<atom:link href="https://thesysadminchannel.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>https://thesysadminchannel.com/</link>
	<description>Documenting My Life as a System Administrator</description>
	<lastBuildDate>Mon, 01 Dec 2025 16:26:37 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		Comment on Get Reboot History Using Powershell by Bill		</title>
		<link>https://thesysadminchannel.com/get-reboot-history-using-powershell/#comment-53591</link>

		<dc:creator><![CDATA[Bill]]></dc:creator>
		<pubDate>Mon, 01 Dec 2025 16:26:37 +0000</pubDate>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=2571#comment-53591</guid>

					<description><![CDATA[Excellent script Paul. THANK YOU for sharing it!]]></description>
			<content:encoded><![CDATA[<p>Excellent script Paul. THANK YOU for sharing it!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on [Solved] SYSVOL and NETLOGON Shares Missing on New DC by Khan		</title>
		<link>https://thesysadminchannel.com/solved-sysvol-and-netlogon-shares-missing-2016-2019-domain-controller/#comment-52550</link>

		<dc:creator><![CDATA[Khan]]></dc:creator>
		<pubDate>Thu, 06 Nov 2025 07:52:48 +0000</pubDate>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=1964#comment-52550</guid>

					<description><![CDATA[Thank You, much appreciated. The Video help me replicating the sysvol and Netlogon.]]></description>
			<content:encoded><![CDATA[<p>Thank You, much appreciated. The Video help me replicating the sysvol and Netlogon.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Get Reboot History Using Powershell by Clarence		</title>
		<link>https://thesysadminchannel.com/get-reboot-history-using-powershell/#comment-50573</link>

		<dc:creator><![CDATA[Clarence]]></dc:creator>
		<pubDate>Tue, 30 Sep 2025 17:14:00 +0000</pubDate>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=2571#comment-50573</guid>

					<description><![CDATA[I added a section before the Function to get Credential and then modified the WinEvent to 
    Get-WinEvent -Credential $cred -ComputerName $Computer

I usually run in Powershell ISE, so I added this comment near the top.
    Execute this in a Powershell ISE, to define the function, then run a command line.]]></description>
			<content:encoded><![CDATA[<p>I added a section before the Function to get Credential and then modified the WinEvent to<br />
    Get-WinEvent -Credential $cred -ComputerName $Computer</p>
<p>I usually run in Powershell ISE, so I added this comment near the top.<br />
    Execute this in a Powershell ISE, to define the function, then run a command line.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Get Application Certificate and Secret Expiration with Graph API by Eduardo Antonio Da Cunha		</title>
		<link>https://thesysadminchannel.com/get-application-certificate-and-secret-expiration-with-graph-api-powershell/#comment-50357</link>

		<dc:creator><![CDATA[Eduardo Antonio Da Cunha]]></dc:creator>
		<pubDate>Thu, 25 Sep 2025 18:28:18 +0000</pubDate>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=4676#comment-50357</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://thesysadminchannel.com/get-application-certificate-and-secret-expiration-with-graph-api-powershell/#comment-34944&quot;&gt;Hrishikesh Chowdhury&lt;/a&gt;.

# Linha corrigida
ThumbPrint          = if ($Cert.CustomKeyIdentifier) { [System.Convert]::ToBase64String($Cert.CustomKeyIdentifier) } else { &#039;N/A&#039; }]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://thesysadminchannel.com/get-application-certificate-and-secret-expiration-with-graph-api-powershell/#comment-34944">Hrishikesh Chowdhury</a>.</p>
<p># Linha corrigida<br />
ThumbPrint          = if ($Cert.CustomKeyIdentifier) { [System.Convert]::ToBase64String($Cert.CustomKeyIdentifier) } else { &#8216;N/A&#8217; }</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Get MFA Methods using MSGraph API and PowerShell SDK by Jeffrey		</title>
		<link>https://thesysadminchannel.com/get-mfa-methods-using-msgraph-api-and-powershell-sdk/#comment-49757</link>

		<dc:creator><![CDATA[Jeffrey]]></dc:creator>
		<pubDate>Mon, 15 Sep 2025 15:38:56 +0000</pubDate>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=3806#comment-49757</guid>

					<description><![CDATA[If you are using External Authentication methods (in preview) then you need to modify this script adding:

&#039;#microsoft.graph.externalAuthenticationMethod&#039;                 {
                            $MethodAuthType     = &#039;ExternalAuthentication&#039;
                            $AdditionalProperties = $Device.AdditionalProperties[&quot;displayName&quot;]
                         }

and using Get-MgBetaUserAuthenticationMethod in place of Get-MgUserAuthenticationMethod]]></description>
			<content:encoded><![CDATA[<p>If you are using External Authentication methods (in preview) then you need to modify this script adding:</p>
<p>&#8216;#microsoft.graph.externalAuthenticationMethod&#8217;                 {<br />
                            $MethodAuthType     = &#8216;ExternalAuthentication&#8217;<br />
                            $AdditionalProperties = $Device.AdditionalProperties[&#8220;displayName&#8221;]<br />
                         }</p>
<p>and using Get-MgBetaUserAuthenticationMethod in place of Get-MgUserAuthenticationMethod</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on [Solved] SYSVOL and NETLOGON Shares Missing on New DC by Dood		</title>
		<link>https://thesysadminchannel.com/solved-sysvol-and-netlogon-shares-missing-2016-2019-domain-controller/#comment-47515</link>

		<dc:creator><![CDATA[Dood]]></dc:creator>
		<pubDate>Fri, 15 Aug 2025 12:14:54 +0000</pubDate>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=1964#comment-47515</guid>

					<description><![CDATA[This helps me temporarily. AFter a reboot or a DFSR service restart it goes back to 0 every time :(]]></description>
			<content:encoded><![CDATA[<p>This helps me temporarily. AFter a reboot or a DFSR service restart it goes back to 0 every time 🙁</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on [Solved] SYSVOL Folders Not Replicating Across Domain Controllers by Tim White		</title>
		<link>https://thesysadminchannel.com/solved-sysvol-folders-not-replicating-across-domain-controllers/#comment-46655</link>

		<dc:creator><![CDATA[Tim White]]></dc:creator>
		<pubDate>Thu, 31 Jul 2025 16:52:20 +0000</pubDate>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=1963#comment-46655</guid>

					<description><![CDATA[thank you for taking the time to create this! I was having a devil of a time with replication- everything was set up correctly, except for the part where it didn&#039;t work. I&#039;d never seen your method before. I followed your instructions and everything worked percetly.]]></description>
			<content:encoded><![CDATA[<p>thank you for taking the time to create this! I was having a devil of a time with replication- everything was set up correctly, except for the part where it didn&#8217;t work. I&#8217;d never seen your method before. I followed your instructions and everything worked percetly.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Get Logged In Users Using Powershell by Alex		</title>
		<link>https://thesysadminchannel.com/get-logged-in-users-using-powershell/#comment-43121</link>

		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Wed, 18 Jun 2025 00:53:55 +0000</pubDate>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=2159#comment-43121</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://thesysadminchannel.com/get-logged-in-users-using-powershell/#comment-42365&quot;&gt;Paul&lt;/a&gt;.

Thanks Paul, I&#039;ll check it out.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://thesysadminchannel.com/get-logged-in-users-using-powershell/#comment-42365">Paul</a>.</p>
<p>Thanks Paul, I&#8217;ll check it out.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on How To Restrict Internet Access Using Group Policy (GPO) by mike snowden		</title>
		<link>https://thesysadminchannel.com/how-to-restrict-internet-access-using-group-policy-gpo/#comment-43043</link>

		<dc:creator><![CDATA[mike snowden]]></dc:creator>
		<pubDate>Mon, 16 Jun 2025 17:57:34 +0000</pubDate>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=1317#comment-43043</guid>

					<description><![CDATA[how would you do this in a entra joined only Azure virtual desktop VM environment with only intune or app control/Wdac?]]></description>
			<content:encoded><![CDATA[<p>how would you do this in a entra joined only Azure virtual desktop VM environment with only intune or app control/Wdac?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on [Solved] Add-WindowsCapability failed. Error code = 0x800f0954 &#8211; RSAT Fix by Taki		</title>
		<link>https://thesysadminchannel.com/solved-add-windowscapability-failed-error-code-0x800f0954-rsat-fix/#comment-42495</link>

		<dc:creator><![CDATA[Taki]]></dc:creator>
		<pubDate>Thu, 05 Jun 2025 14:00:02 +0000</pubDate>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=1566#comment-42495</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://thesysadminchannel.com/solved-add-windowscapability-failed-error-code-0x800f0954-rsat-fix/#comment-124&quot;&gt;Jeff&lt;/a&gt;.

I completely agree with you.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://thesysadminchannel.com/solved-add-windowscapability-failed-error-code-0x800f0954-rsat-fix/#comment-124">Jeff</a>.</p>
<p>I completely agree with you.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
