
Sign up to save your podcasts
Or
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
#scrape website content to variable
while ($complete -ne “1”)
Start-Sleep -Seconds 1
####################launch.bat#####################
powershell -WindowStyle Hidden “c:\scripts\demo.ps1”
5
1313 ratings
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
#scrape website content to variable
while ($complete -ne “1”)
Start-Sleep -Seconds 1
####################launch.bat#####################
powershell -WindowStyle Hidden “c:\scripts\demo.ps1”