با برنامه Player FM !
SAS 025 – In the Lab – Intro to PowerShell
بایگانی مجموعه ها ("فیدهای غیر فعال" status)
When? This feed was archived on November 18, 2025 14:09 (). Last successful fetch was on November 25, 2024 00:29 ()
Why? فیدهای غیر فعال status. سرورهای ما، برای یک دوره پایدار، قادر به بازیابی یک فید پادکست معتبر نبوده اند.
What now? You might be able to find a more up-to-date version using the search function. This series will no longer be checked for updates. If you believe this to be in error, please check if the publisher's feed link below is valid and contact support to request the feed be restored or if you have any other concerns about this.
Manage episode 238948825 series 1751234
In this lab episode I run through a recent PowerShell project. This is a very basic example will give you an idea what can be done with PowerShell. The YouTube video for this episode can be found at https://youtu.be/SXv-ZVV9ioc.
As promised I have included the final scripts below.
##########################demo.ps1#####################
#Define variables
$webdata = “”
$complete = “”
#scrape website content to variable
$webdata = Invoke-WebRequest “www.sysadminshow.com”
while ($complete -ne “1”)
{
if($webdata -like “*SysAdmin Show*”) # check for specific string
{
write-host “Found it!”
$complete = “1”
Start-Process calc.exe
}
else
{
write-host “Not Ready”
}
Start-Sleep -Seconds 1
}
####################launch.bat#####################
powershell -WindowStyle Hidden “c:\scripts\demo.ps1”
58 قسمت
بایگانی مجموعه ها ("فیدهای غیر فعال" status)
When? This feed was archived on November 18, 2025 14:09 (). Last successful fetch was on November 25, 2024 00:29 ()
Why? فیدهای غیر فعال status. سرورهای ما، برای یک دوره پایدار، قادر به بازیابی یک فید پادکست معتبر نبوده اند.
What now? You might be able to find a more up-to-date version using the search function. This series will no longer be checked for updates. If you believe this to be in error, please check if the publisher's feed link below is valid and contact support to request the feed be restored or if you have any other concerns about this.
Manage episode 238948825 series 1751234
In this lab episode I run through a recent PowerShell project. This is a very basic example will give you an idea what can be done with PowerShell. The YouTube video for this episode can be found at https://youtu.be/SXv-ZVV9ioc.
As promised I have included the final scripts below.
##########################demo.ps1#####################
#Define variables
$webdata = “”
$complete = “”
#scrape website content to variable
$webdata = Invoke-WebRequest “www.sysadminshow.com”
while ($complete -ne “1”)
{
if($webdata -like “*SysAdmin Show*”) # check for specific string
{
write-host “Found it!”
$complete = “1”
Start-Process calc.exe
}
else
{
write-host “Not Ready”
}
Start-Sleep -Seconds 1
}
####################launch.bat#####################
powershell -WindowStyle Hidden “c:\scripts\demo.ps1”
58 قسمت
همه قسمت ها
×به Player FM خوش آمدید!
Player FM در سراسر وب را برای یافتن پادکست های با کیفیت اسکن می کند تا همین الان لذت ببرید. این بهترین برنامه ی پادکست است که در اندروید، آیفون و وب کار می کند. ثبت نام کنید تا اشتراک های شما در بین دستگاه های مختلف همگام سازی شود.