<?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 on: Get Reboot History Using Powershell	</title>
	<atom:link href="https://thesysadminchannel.com/get-reboot-history-using-powershell/feed/" rel="self" type="application/rss+xml" />
	<link>https://thesysadminchannel.com/get-reboot-history-using-powershell/</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>
		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>
		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>
		By: Richard		</title>
		<link>https://thesysadminchannel.com/get-reboot-history-using-powershell/#comment-30176</link>

		<dc:creator><![CDATA[Richard]]></dc:creator>
		<pubDate>Tue, 18 Jun 2024 15:39:01 +0000</pubDate>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=2571#comment-30176</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://thesysadminchannel.com/get-reboot-history-using-powershell/#comment-27463&quot;&gt;John&lt;/a&gt;.

You need to &quot;dot source&quot; the function first: https://serverfault.com/questions/124749/my-powershell-functions-do-not-appear-to-be-registered


&#062; . .\Get-RebootHistory.ps1

Then you can run

&#062; Get-RebootHistory -ComputerName test-client-01 -DaysFromToday 30]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://thesysadminchannel.com/get-reboot-history-using-powershell/#comment-27463">John</a>.</p>
<p>You need to &#8220;dot source&#8221; the function first: <a href="https://serverfault.com/questions/124749/my-powershell-functions-do-not-appear-to-be-registered" rel="nofollow ugc">https://serverfault.com/questions/124749/my-powershell-functions-do-not-appear-to-be-registered</a></p>
<p>&gt; . .\Get-RebootHistory.ps1</p>
<p>Then you can run</p>
<p>&gt; Get-RebootHistory -ComputerName test-client-01 -DaysFromToday 30</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: John		</title>
		<link>https://thesysadminchannel.com/get-reboot-history-using-powershell/#comment-27463</link>

		<dc:creator><![CDATA[John]]></dc:creator>
		<pubDate>Wed, 17 Apr 2024 01:10:13 +0000</pubDate>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=2571#comment-27463</guid>

					<description><![CDATA[Hi Paul,
Can you help me understand on how to use the script properly?
I copied it and saved to a folder as a PS1 file (Get-RebootHistory.ps1).
Then I tried running it with this command
..\Get-RebootHistory.ps1 -ComputerName test-client-01 -DaysFromToday 30
It just returned back to prompt with no value]]></description>
			<content:encoded><![CDATA[<p>Hi Paul,<br />
Can you help me understand on how to use the script properly?<br />
I copied it and saved to a folder as a PS1 file (Get-RebootHistory.ps1).<br />
Then I tried running it with this command<br />
..\Get-RebootHistory.ps1 -ComputerName test-client-01 -DaysFromToday 30<br />
It just returned back to prompt with no value</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Chris		</title>
		<link>https://thesysadminchannel.com/get-reboot-history-using-powershell/#comment-1662</link>

		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Thu, 07 Jul 2022 11:36:47 +0000</pubDate>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=2571#comment-1662</guid>

					<description><![CDATA[Hi Paul,

Thank you for the article, the powershell solution is excellent, it&#039;s been really useful.
Would you mind pointing me in the right direction to adapt this powershell to return results for all devices called say, Laptop-****, whilst ignoring those that return &#039;RPC Server Unavailable?
Any help would be gratefully received.
Chris]]></description>
			<content:encoded><![CDATA[<p>Hi Paul,</p>
<p>Thank you for the article, the powershell solution is excellent, it&#8217;s been really useful.<br />
Would you mind pointing me in the right direction to adapt this powershell to return results for all devices called say, Laptop-****, whilst ignoring those that return &#8216;RPC Server Unavailable?<br />
Any help would be gratefully received.<br />
Chris</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
