Best PowerShell tutorial on entire KZbin. Very clear and easy to understand!!
@MiddleCross3783 жыл бұрын
I'm here after a job interview for an application developer who recommended I brush up on my powershell skills. I am not disappointed...intimidated, but not disappointed lol. Thank you for your work on these videos, extremely helpful and appreciated!
@AnthonySchattenberg Жыл бұрын
Hi, This video series is truly awesome, thank you very much, great great job !!!! It is such a pleasure to learn from you
@BlackMarluxia Жыл бұрын
"Powershell doesn't do a lot of handholding" - well, sort of. Some commands that do have a very high impact will prompt you for confirmation before you, let's say, format a whole volume. And that safety net can be adjusted to ask you for confirmation about more cmdlets. alternatively the confirmation prompt can also be invoked by passing the -confirm parameter (as well as using -whatif to see what something would do without actually doing it)
@jacqueslambrechts53843 жыл бұрын
Feels like I'm just reiterating the rest of the comments, but seriously a HUGELY helpful series this! Best I have found on youtube, especially if your a beginner in shell scripting. Thank you!
@kafkakos36189 ай бұрын
Best video on PowerShell on YT - cheers mate
@JensOleMortensen2 жыл бұрын
Awesome videos...
@xaero2125 жыл бұрын
Best powershell video on whole KZbin. Period.
@mysterwolfy74934 жыл бұрын
your spitin straight fax
@liquidcocaine004 жыл бұрын
Straight fire...best
@Kur3b2 жыл бұрын
Very helpful approach to teaching powershell. Thank you!
@doctorfishopolisss2 ай бұрын
This is great even as a total beginner!
@hectorhernandez75197 ай бұрын
Hello Jake, I Just want to said Thank you and congratulations, you have the Knowledge and very important you know how to project your knowledge well so anyone interesting in learning Powershell can understand it. 100% Great Tutorials.
@davidyankyerah82934 жыл бұрын
i wish i could just like this video a thousand times
@s.baskaravishnu222 жыл бұрын
Many thanks for all
@sajeesh644 жыл бұрын
you are the best instructor ,very clear explanation and straight to the point. Could you please add more videos about ,Array,hashtable,WMI and CIM ,rest API etc...
@ruslanivanov8313 жыл бұрын
Great job! Well-organized tutorial. Each statement strikes the point. The last command with dry-run is lifesaver
@francislambert51893 жыл бұрын
I can't get enough of this video. I do believe I will be viewing more of them. Very good content and easy enough, even for a caveman like myself.
@shruthikeerthi60574 жыл бұрын
Best powershell tutorial ever❤️
@shadaxgaming2 жыл бұрын
I'm writing up a piplelines lesson for colleagues, and I've never known about $PSitem!!! Thanks for this.
@lautarob2 жыл бұрын
Hi, thanks for such enlightening videos. I’ve just subscribed to this awesome channel. Best wishes
@bash-dash3 жыл бұрын
You're batter then my teacher... thx 👍🏻
@elvinmoldez Жыл бұрын
Thank you! Amazing tutorial!
@feanorice2 жыл бұрын
Thank you man, these tutorials are amazing!!!
@fardinsabzi94464 жыл бұрын
that is one of the best learning video about Powershell, awesome!
@aarondz7895 жыл бұрын
I am a normal powershell lover from China.Thanks for your videos!
@lohphat2 жыл бұрын
What would really help is to explain the difference between traditional shells and PS how objects are encoded between cmdlets. With older shells, pipes are just simple char streams and the data stream has to be parsed to extract relevant data, usually with awk. But since PS passes objects, how are the data segmented and labeled and passed? Is there a data structure object or is it like Jason where it's all key value pairs? Also, how and where are local resources stored, e. G. After an Update-Help where does the retrieved data get stored for later reference? How are cmdlets added to the environment, is it simple path extension or is there a data store for added cmdlets and functions? Knowing how it works under the hood would help.
@mohamedaly14235 жыл бұрын
Honestly amazing instruction. Thank you!
@rompeaire4 жыл бұрын
Thank you very much. You're doing a better job than Microsoft themselves
@Techthoughts23 жыл бұрын
Glad you think so!
@jhonnathansakaguchi19964 жыл бұрын
Thank you TechThoughts...
@arnaldoquinones776427 күн бұрын
I felt asleep al least three times watching your video....
@tonyhart48375 жыл бұрын
The best ive seen so far
@johndaugherty7779 Жыл бұрын
Please! Is there a way to open all word docs in a folder at once in PS? I can't find an answer anywhere. Thank you. Love the series.
@loscolaro27253 жыл бұрын
Nice job man keep going!
@horatioh54693 жыл бұрын
Well Done!! Thank you 😊
@pblic8_2694 жыл бұрын
i need to output this format Sunday, February 9, 2020 at 6:49:22 AM which are the shell settings if in another timezone ? do i need something i had found ?: [System.Globalization.CultureInfo]::GetCultureInfo(1031).DateTimeFormat.ShortDatePattern
@Techthoughts24 жыл бұрын
This is a good resource for formatting specific date formats: ss64.com/ps/syntax-dateformats.html Based on that you would do this to get the format you specified: Get-Date -Format "dddd, MMMM d, yyyy h:mm:ss tt"
@farahmohumad53554 жыл бұрын
good job bloody
@OFabianoSilva2 жыл бұрын
Awesome!
@PaulEllisBIGDATA5 жыл бұрын
Good videos.
@davewilliadatech52084 жыл бұрын
I just ran the date command freaky "Tuesday, 30 June 2020 9:59:35 pm" Just after a year of recording check 5:46 of the video... Spooky Spoon!
@Southpaw073 жыл бұрын
Great into video but was hoping to see more information on pipeline hook up (Byvalue , propertyname, and has hash table) .
@leorochacom5 жыл бұрын
Please, could you write the commands at the first line on the screen? It will beter for those who use legends. Tks.
@patdevine31513 жыл бұрын
Thank you, I'm a newbie admin and I'm trying to learn PS. Working on a script that will send an email when AD user has 7 days until password expires. I can find the users and can send email but cannot get the script to work together, yet.
@francislambert51893 жыл бұрын
When I write:"Get-Process notepad | Where-Object {$_.cpu -gt 50}", it just goes back to "PS C:\>" every time .. Get-Help help-me
@ToTCaMbIu3 жыл бұрын
For anyone wondering, it is because he is trying to get processes with the name "notepad" with CPU consumption greater than 50. It should be like this instead Get-Process | Where-Object {$_.cpu -gt 50}
@robcab37254 жыл бұрын
What text editor is that , is text correction a feature in ps?
@Techthoughts24 жыл бұрын
This is VSCode. I cover it in Ep. 4: Getting Setup For PowerShell Development: kzbin.info/www/bejne/al6vaHutgcymnJY