I have been trying to come to terms with Powershell for a while. You have managed to present the material in an incredibly concise instructive manner. Many thanks.
Thank you for producing the best PowerShell tutorial on TH-cam. I like how you actually explain things rather than just giving some random examples. I looked at a few other tutorials and none of them mentioned anything about objects, which you got into by the second minute. Well done.
Most commentators have said it better than me already, but it would not hurt to hear it from me as well. What is that? That this is one of the most amazing tutorial videos outhere, that I have witnessed for a long time. A lot of kudos to the creator!!!
Excellently explained demonstration. I loved the visualizations of the object blocks as they moved through he pipeline. Easily one of the best tutorial videos I've found. Looking forward to the rest of the videos in this series. I hope they are all equally as good!
Thanks! Yes, I keep the visualisations going all throughout the series. Technically in the last two episodes they get even better as I moved software to something much more powerful then. Hopefully you find the rest just as useful!
Just started learning the PowerShell. This series looks promising to me so I will finish all episodes. Just finished this one and I am very happy with the content and the teaching style. Thank you for your great effort!!
This is so useful. You're really good at teaching, like really damn good. I would love it if you could do some more videos about the same or unrelated stuff, whatever it is.
I am glad I found this video. Your way of explanation and demonstration is very easy to understand unlike many other videos I watched where one does everything very quickly and does not explain every command, parameter, syntax one uses. Thank you
Absolutely fantastic!! I work in an IT role,dealing in area's including AzureAD, Sharepooint, M365 & Exchange, I have patchy knowledge due to the previous roles I have had and have tried to look in to Powershell a couple of times and think that is why I couldn't get my head around it. With this first lesson, I now have an understanding of the basics. I have never heard/seen or been taught this way previously. I can now look at a script and have some idea of whats going on. The amount of times I have seen " $_. " in Powershell scipts and just wondered what that did!! Thank you, love your method of explaining/teaching exactly what my way of learning requires.
That's exactly what I hope to achieve! I'm glad it's helping fill in your knowledge and give you that base understanding of what's really going on, there's a bunch more videos as part of the series too, hopefully they'll also help fill in your knowledge a little more too!
Very nice explanation for each of line, you are a great teacher, appriciate your hardwork, I tried to learn powershell from various source, and able to go through in detail, finally I got this.Amazing work.
I was looking for a best power shell tutorial for beginners for long time and now i just found it. I’m looking forward more power shell videos. Thanks Mate.
Awesome PowerShell Teacher, Awesome content and explanations, Awesome Human being,Sir. Thank you for your generosity,you are Awesome. Salutations from France.
This PowerShell tutorial is a total game-changer! You explain things so well, even a complete PowerShell dunce like me (yes, that's me!) can finally understand what's going on. Seriously, you're like a PowerShell whisperer, translating this whole magic system into plain English. I gotta say, if all teachers were this amazing, the world would be overflowing with computer wizards. Thanks for making me feel a little less like a tech caveman!
@@ABCo-ABMedia I've watched countless TH-cam videos on PowerShell-some are informative and help grasp the concept, while others are just a waste of time. You, however, really deserve an amazing comment, not just a plain one. I hope you keep making more videos like this!
@@ABCo-ABMedia I've been binge-watching all your videos-I'm on the fifth one now! Seriously, you should branch out and make videos on different subjects too. How about tackling "prompt engineering" next?
@@benBoundlessVentures I do plan on returning back to making programming content! Just been very busy with other projects - I don't know the things I do only to teach them of course!
This is an excellent explanation of the basics of PS. I work as an IT Admin for a healthcare company, I want to, one day, become an IT Sys Admin, but I've never learned PS because I'm not too fond of programming & scripting languages. This video gave me the basics of what I need to know to finally become that Sys Admin that I've always wanted to become. I'm going to watch this whole series on PS. You should maybe think about becoming a teacher on Udemy because this video is much better than all of the PS videos on Udemy.
Just FYI: Taking five minutes to research bash ps command it is just the format of the command is different. ps is 'Process Status' cmd followed by -e for entire system and o for format which specifies the processes (among other functions) wanted which follow, pid, ppid, cmd, %mem, %cpu. The pipe which works the same as PowerShell, then awk which is a Unix/Linux pattern searching command for text/files...etc followed by the defined value(s) to look for, %NE which is Not Equal > greater than 20. WARNING: The syntax, formatting and the command(s) themselves can change depending on the myriad versions of Unix or Linus being run. Only my first video, but very well done and informative!
Glad you found it informative! Since you're commenting on a section in the middle of the video that lasts less than 5 seconds, the timestamp (15:30) probably would've been helpful for anybody looking in the comment section. I'm honestly not sure what point you're even making here though... _Are_ you making one? It sounds like you're just stating (mostly correct) information about the Bash command out of nowhere, which, I mean, I support you it's just, seems a bit random to me 😅.
Ayo man, I really like your teaching style, the graphics explaining exactly what is happening and that you gave us the task to figure out how to use the learned things. Really appreciate your videos 🙏
I have been searching the interwebs all day to find the right PS tutorial for me. Some went too quickly, some too slow and drawn out where it was excruciatingly boring to keep up. Your videos were right on the money. I really appreciate how you broke down what each item was doing and emphasized it in a practical manner. Subbed and will continue the series.
The is a good helpful video. I've been using powershell for over 10 years, but not every day. I always find returning to powershell painful. They "obvious" syntax is never obvious, while I find in bash and windows cmd it is obvious or at least seems more straight forward. I know the benefits of piping objects is much more powerful than piping text, so I'm always happy to return to powershell.
Hey man, I need to say something to you. You are fucking good! congratulations, this is the best tutorial I have ever seen. The learning method works perfectly. It is just amazing. Be proud of yourself.
Huge thanks!! Your technique is extremely good! Unfortunately, programming syntax looks like a tangled ball of string to new learners - but you help your audience quickly understand what's "simple" vs "hard" in the expression. For example, when you explained how the $_. works! Also, you begin teaching really powerful expressions like Where, Measure, Sort and Foreach instead of treating those as advanced concepts to be put off until much later. These tools are fundamental to using PS and your teaching skills and presentation style/animations quickly simplify them and make them immediately useful to the new user. Thanks again!
Sir, you videos are great.. Finally I got the content what I am looking for. I wish you to complete the series of powershell scripting which will be beneficiary to the people like me.
I absolutely want to finish the series as soon as I can! It may take me a while to get around to finishing Episode 9 though, as I've recently built up this huge to-do list of other things I need to get done first, but rest assured, I have not forgotten about it and will finish this series - there's only 2 episode left to go!
Hey! There's about 6 more episodes in the series so far, so plenty more to watch beyond this episode :P And episode _8_ will be coming out in just a day so there's that too!
Thank u About Commendable ... get-Process | WHERE { $_.Id -gt 4000 } | ForEach { $_.Cpu } | measure -Average -Sum -Maximum -Minimum ... am learning Pro ! thank u again
I have a question. I passed my az-900 today with an 873; And I was wondering should I learn regular PowerShell or PowerShell for Azure? what do you think would be a better base in your opinion. Thank you So much for your videos and time.
Well, all the concepts in this series _technically_ apply to PowerShell for Azure. Only thing about this series is as you start to get a lot further in they could start to apply "less" in places when used for the specific purpose
I came here through some thing i made, a request in chat to play stuf from youtube :D. But just a lot of copy paste and try and fail hehe. I have to learn to go through content better with ifs and putting stuf into a var. Random stuf, which can reduce 100 lines to 10 maybe ;p. So i'll be looking too. I like the way you do it, so i hope you don't quit :)
If statements and variables are coming soon in the series. Variables will be in the third episode if statements possibly in the very last video (although that has not been fully decided yet)
@@ABCo-ABMedia Do whatever order you think is best, haha :). I made the youtube request thing already, with uiautomation. But still i don't have a clue almost what i'm doing :). I didn't see replies earlier, guess i was kind of busy. Am still here as newbie, like to know what i'm doing so i'll be watching.
guys, just to put it simple, I kinda want to get into programming and scripting ( sry at this point I don't really distinguish those two) not for the sake of finding a job but just cos i want to understand better how my pc and scripting works ( as well as for modding something as for checking it's state and fixing whatever goes wrong), would it be good to start with such a basic like Powershell and whatever that comes in this playlist to get me into it?
@@deminidze Well, I have quite a bit of content relevant to programming later in this series, so you might enjoy that. PS is... Weird, in a lot of ways, but there's a lot of transferable stuff you can get from it too
Ah yeah it isn't actually "linked below", I'll add it now, but you can just type it out from the video at the top, it's not that long: github.com/powershell/powershell
To be fair, I kind of tell you most things about command lines anyway throughout the series. Also, yes, command line, no common line (there's subtitles if you need them). I don't know how well it'll go for you though, guess you'll just have to try
Hahaha, only praising the _theory_ of what PowerShell is meant to be! Honestly in practice PowerShell's..... Well, it's not how I would make it, let's put it like that.
@@ABCo-ABMedia I came from Linux background, but I'm literally astonished by the way PowerShell works with objects not just text. I admit it, it's very useful. I'm very grateful to you by the way 🥰
I do mention that later on - that when writing _scripts_ especially you should try to avoid them. But if you're just typing commands in the command-line to quickly get something done, which is all this video covers here I don't really feel it matters, you don't really need to maintain the command you just wrote
I don't think that's fair. The series has to start somewhere and I *definitely* wouldn't call a lot of the concepts explained in this episode as such as just "obvious" to every viewer. It's better I go over a few things the viewer _may_ already know, that can then further _solidify_ those concepts in their head, than skip over a bunch of stuff and leave many lost. There are many different series out there and the whole reason I made this one is for people who _don't_ know tons of stuff at the beginning; if you do, there are other series better suited for that! If it's not for you, then it's not for you. And that's completely fine!
Did you come here just to say that? You do know that .NET and PowerShell are both open-source, and have huge community run backing, right? MS has like _a_ team of employees working on them, who are just everyday developers, and then everything else is the community You do know that PS is, well, just a command-line interface to interact with .NET - where is the room to "get your business hacked" there? And you do know that while Microsoft is certainly many things their security isn't exactly the thing I'd call lacking about them.
Where were you all these days. I've been searching for you all over internet. The way you teach and explain is truly commendable!!
One of the most underrated PowerShell tutorials out there. Thanks so much for this amazing series!
Ive wayched three different powershell beginners tutorials today. This one is the best so far.
3 years later and your videos are still helping us newbies to powershell! Thank you for making it so interesting and easy to understand ad stay tuned.
Just the first video alone deserves 100K. Thanks man you're a good tutor.
Thanks! Glad you liked it - it's not too far off 100K!
I have been trying to come to terms with Powershell for a while. You have managed to present the material in an incredibly concise instructive manner. Many thanks.
Glad to hear it!
Thank you for producing the best PowerShell tutorial on TH-cam. I like how you actually explain things rather than just giving some random examples. I looked at a few other tutorials and none of them mentioned anything about objects, which you got into by the second minute. Well done.
You're welcome! That's what I aimed to do, so I'm glad it delivers!
I really thank you. I was looking for the right Powershell guru. I must say, I found him.
Most commentators have said it better than me already, but it would not hurt to hear it from me as well. What is that? That this is one of the most amazing tutorial videos outhere, that I have witnessed for a long time. A lot of kudos to the creator!!!
Thanks!! Glad you enjoy it. And there's 10 whole other episodes too
TH-cam really needs to push those kind of content to the audience. It’s very neat and process the last PS version.
Thanks Alex, this is the best Powershell introduction video I've found on TH-cam - well done!
Graphical illustrations are a nice touch, well done.
Excellently explained demonstration. I loved the visualizations of the object blocks as they moved through he pipeline. Easily one of the best tutorial videos I've found. Looking forward to the rest of the videos in this series. I hope they are all equally as good!
Thanks! Yes, I keep the visualisations going all throughout the series. Technically in the last two episodes they get even better as I moved software to something much more powerful then. Hopefully you find the rest just as useful!
Ah, just what I needed! Straight into the central concepts, so clearly illustrated. Thanks a million.
Glad to hear you like it! :)
The Best and the only tutorial you'll ever need. Thank you for the excellent visuals and explanations.
Thanks! Glad you liked it!
Just started learning the PowerShell. This series looks promising to me so I will finish all episodes. Just finished this one and I am very happy with the content and the teaching style. Thank you for your great effort!!
This is so useful. You're really good at teaching, like really damn good. I would love it if you could do some more videos about the same or unrelated stuff, whatever it is.
Thanks! I'm glad you liked it! The PowerShell series is finished so I do plan to make more videos on other topics, just been really busy!
I am glad I found this video. Your way of explanation and demonstration is very easy to understand unlike many other videos I watched where one does everything very quickly and does not explain every command, parameter, syntax one uses. Thank you
You're welcome! Glad you've found it helpful!
legit best and most interesting pwsh beginner video ive ever seen. like, wow. thank you
Thank you! Glad you liked it!
Absolutely fantastic!!
I work in an IT role,dealing in area's including AzureAD, Sharepooint, M365 & Exchange, I have patchy knowledge due to the previous roles I have had and have tried to look in to Powershell a couple of times and think that is why I couldn't get my head around it.
With this first lesson, I now have an understanding of the basics. I have never heard/seen or been taught this way previously. I can now look at a script and have some idea of whats going on. The amount of times I have seen " $_. " in Powershell scipts and just wondered what that did!!
Thank you, love your method of explaining/teaching exactly what my way of learning requires.
That's exactly what I hope to achieve! I'm glad it's helping fill in your knowledge and give you that base understanding of what's really going on, there's a bunch more videos as part of the series too, hopefully they'll also help fill in your knowledge a little more too!
This is a great tutorial it teaches you things that are immediatly applicable!
Very nice explanation for each of line, you are a great teacher, appriciate your hardwork, I tried to learn powershell from various source, and able to go through in detail, finally I got this.Amazing work.
I was looking for a best power shell tutorial for beginners for long time and now i just found it. I’m looking forward more power shell videos. Thanks Mate.
Well there's also an Episode 2 and Episode 3 already out, with more on the way after that!
Awesome PowerShell Teacher, Awesome content and explanations, Awesome Human being,Sir. Thank you for your generosity,you are Awesome. Salutations from France.
You're welcome! Glad you're enjoying it
This PowerShell tutorial is a total game-changer! You explain things so well, even a complete PowerShell dunce like me (yes, that's me!) can finally understand what's going on. Seriously, you're like a PowerShell whisperer, translating this whole magic system into plain English. I gotta say, if all teachers were this amazing, the world would be overflowing with computer wizards. Thanks for making me feel a little less like a tech caveman!
Hahaha thank you for the kind words! And wow that comment, uh, _upgraded_ quite a bit after the edits😂
@@ABCo-ABMedia I've watched countless TH-cam videos on PowerShell-some are informative and help grasp the concept, while others are just a waste of time. You, however, really deserve an amazing comment, not just a plain one. I hope you keep making more videos like this!
@@benBoundlessVentures Well... There's 10 more of them in this series!
@@ABCo-ABMedia I've been binge-watching all your videos-I'm on the fifth one now! Seriously, you should branch out and make videos on different subjects too. How about tackling "prompt engineering" next?
@@benBoundlessVentures I do plan on returning back to making programming content! Just been very busy with other projects - I don't know the things I do only to teach them of course!
Such a excelent explanation. I don't ussually comment on videos but this video is just amazing. Thanks!
Thank you!
The best powershell videos I've seen so far
Thank you very much for your work
Congratulations!
Wonderful. One of the best video about PS for beginners, thank you 🙏
This is an excellent explanation of the basics of PS. I work as an IT Admin for a healthcare company, I want to, one day, become an IT Sys Admin, but I've never learned PS because I'm not too fond of programming & scripting languages. This video gave me the basics of what I need to know to finally become that Sys Admin that I've always wanted to become. I'm going to watch this whole series on PS. You should maybe think about becoming a teacher on Udemy because this video is much better than all of the PS videos on Udemy.
That's awesome!! I hope you do get to check out the whole series and hope it's helpful
Excellent start on PowerShell. Thank you.
I can hardly encourage you to play it on 1.5 speed. Very nicely explained. Thank you
“And oh, oh god. Let’s just put that away” hilarious
Just FYI: Taking five minutes to research bash ps command it is just the format of the command is different. ps is 'Process Status' cmd followed by -e for entire system and o for format which specifies the processes (among other functions) wanted which follow, pid, ppid, cmd, %mem, %cpu. The pipe which works the same as PowerShell, then awk which is a Unix/Linux pattern searching command for text/files...etc followed by the defined value(s) to look for, %NE which is Not Equal > greater than 20. WARNING: The syntax, formatting and the command(s) themselves can change depending on the myriad versions of Unix or Linus being run.
Only my first video, but very well done and informative!
Glad you found it informative! Since you're commenting on a section in the middle of the video that lasts less than 5 seconds, the timestamp (15:30) probably would've been helpful for anybody looking in the comment section.
I'm honestly not sure what point you're even making here though... _Are_ you making one? It sounds like you're just stating (mostly correct) information about the Bash command out of nowhere, which, I mean, I support you it's just, seems a bit random to me 😅.
Bro, you really have a gift for teaching. Keep it up! I'm subscribed and watchin
Wow, thanks a lot! Glad to hear you thought it was helpful!
Bro, keep it up! The first episode was lit, can’t wait to see every single one of them!
I mean... I've already created another 8 of them and I think I've kept the quality up!
@@ABCo-ABMedia haha, yeah saw that. 😂
Ayo man, I really like your teaching style, the graphics explaining exactly what is happening and that you gave us the task to figure out how to use the learned things.
Really appreciate your videos 🙏
Thanks a lot! I hope the series helps!
@@ABCo-ABMedia It really does, it's a great supplement for everyone who's learning about IT, and I will definitely recommend you to my study partners
And, you can flex on "normies" , who don't know that their Windows Computer can do such fancy things in the Powershell 😏
Really great introduction! Thanks for this, very helpful!
Thanks, glad to hear you enjoyed it!
Yess Ive Been Waiting For This
been waiting for such tutorials for a long time!
the way you explain is perfect! keep it up!
I'm really happy to hear that!
Episode 2 is coming very soon, stay tuned!
EDIT: And Episode 2 is out! Enjoy!
I have been searching the interwebs all day to find the right PS tutorial for me. Some went too quickly, some too slow and drawn out where it was excruciatingly boring to keep up. Your videos were right on the money. I really appreciate how you broke down what each item was doing and emphasized it in a practical manner. Subbed and will continue the series.
Awesome! Hope you find the rest of the series just as enjoyable!
Thank you for this great tutorial. Very good explanation, very good examples and it's all understandable. Best regards from Albania
This is excellent and at a good pace. Thank you!
Thank you!
The is a good helpful video. I've been using powershell for over 10 years, but not every day. I always find returning to powershell painful. They "obvious" syntax is never obvious, while I find in bash and windows cmd it is obvious or at least seems more straight forward. I know the benefits of piping objects is much more powerful than piping text, so I'm always happy to return to powershell.
It definitely does take some "getting used to", for sure
Wow this is the greatest ever learning that I got. Thanks a lot. Can you keep it going?? I need it.
There's 8 episodes so far! So yes, I can and I am keeping it going :P
Excellent tutorial series. SQL and Linux/Unix should be taught like this, hint hint!
Hey man, I need to say something to you. You are fucking good! congratulations, this is the best tutorial I have ever seen. The learning method works perfectly. It is just amazing. Be proud of yourself.
Fantastically clear and easy to understand. Thank you for your time - it's massively appreciated.
Thank you, happy to hear it!
One of the Best course!!! I have issue when it comes to understanding one topic but this one is something else
What do you mean?
i mean this iso great
This is way too good than any other tutorial I have checked soo far. thanks!
Amazing teaching style. Thanks.
Sir, thanks. I can't give you anything else for helping me. You are awesome.
Huge thanks!! Your technique is extremely good! Unfortunately, programming syntax looks like a tangled ball of string to new learners - but you help your audience quickly understand what's "simple" vs "hard" in the expression. For example, when you explained how the $_. works! Also, you begin teaching really powerful expressions like Where, Measure, Sort and Foreach instead of treating those as advanced concepts to be put off until much later. These tools are fundamental to using PS and your teaching skills and presentation style/animations quickly simplify them and make them immediately useful to the new user. Thanks again!
You're welcome, very glad you're enjoying the series!
I like your teaching style, thanks dude!
You're welcome, glad you like it!
This is an Outstanding video! Thanks for all your work. The tutorial at the end was awesome! Well made, looking forward to the rest of the playlist
Thanks! I hope you do enjoy the rest!
I really appreciate your work, Excellent content
Thanks a lot!
nice. Well explained and great examples
This is dope. Learned a lot here :)
You are a terrific teacher
Thank you! I hope you enjoy the rest of the series
you got a new subscriber today... I'm gonna own the next 10 videos over the next 10 days!!!
Did you?
You make this stuff very understandable - nice 👍
Excellent work
Sir, you videos are great.. Finally I got the content what I am looking for. I wish you to complete the series of powershell scripting which will be beneficiary to the people like me.
I absolutely want to finish the series as soon as I can! It may take me a while to get around to finishing Episode 9 though, as I've recently built up this huge to-do list of other things I need to get done first, but rest assured, I have not forgotten about it and will finish this series - there's only 2 episode left to go!
really neat presentation
hey man just wanted to thank you for this amazing tutorial, thank you very much for sharing your knowledge in such a greate and understable way!!
Excellent Tutorial!!
Very nice and neat explanation...
Thanks, I'm glad you think so.
Congratulations , excellent content !
Thanks a lot!
Thanks a lot fot this nice and informative videos. Please upload more about scripting! I subscribed
Hey! There's about 6 more episodes in the series so far, so plenty more to watch beyond this episode :P And episode _8_ will be coming out in just a day so there's that too!
@@ABCo-ABMedia Yes i saw it. i will watch them all bro
homie(microsoft): can I copy your homework?
perl: sure, just change it a bit so its not obvious.
homie: *powershell*
you deserve much higher views count!
Thanks!
Thank u About Commendable ... get-Process | WHERE { $_.Id -gt 4000 } | ForEach { $_.Cpu } | measure -Average -Sum -Maximum -Minimum ... am learning Pro !
thank u again
Very helpful, thankyou!
Glad you found it helpful so far
Where have you been all my life, finally I get the basics $_.
Glad to hear it! :) Hopefully you'll be able to check out the rest of the series too!
I have a question. I passed my az-900 today with an 873; And I was wondering should I learn regular PowerShell or PowerShell for Azure? what do you think would be a better base in your opinion. Thank you So much for your videos and time.
Well, all the concepts in this series _technically_ apply to PowerShell for Azure. Only thing about this series is as you start to get a lot further in they could start to apply "less" in places when used for the specific purpose
I came here through some thing i made, a request in chat to play stuf from youtube :D. But just a lot of copy paste and try and fail hehe. I have to learn to go through content better with ifs and putting stuf into a var. Random stuf, which can reduce 100 lines to 10 maybe ;p. So i'll be looking too. I like the way you do it, so i hope you don't quit :)
The only downside is i don't know how to get text from another window with powershell, am using a screen scanner for it which is a bit unhandy but ok.
If statements and variables are coming soon in the series. Variables will be in the third episode if statements possibly in the very last video (although that has not been fully decided yet)
@@ABCo-ABMedia Do whatever order you think is best, haha :). I made the youtube request thing already, with uiautomation. But still i don't have a clue almost what i'm doing :). I didn't see replies earlier, guess i was kind of busy. Am still here as newbie, like to know what i'm doing so i'll be watching.
excellent
job
Thanks
a
lot
:P
guys, just to put it simple, I kinda want to get into programming and scripting ( sry at this point I don't really distinguish those two) not for the sake of finding a job but just cos i want to understand better how my pc and scripting works ( as well as for modding something as for checking it's state and fixing whatever goes wrong), would it be good to start with such a basic like Powershell and whatever that comes in this playlist to get me into it?
@@deminidze Well, I have quite a bit of content relevant to programming later in this series, so you might enjoy that. PS is... Weird, in a lot of ways, but there's a lot of transferable stuff you can get from it too
@@ABCo-ABMedia that "transferable stuff" is actually what i'm looking for ... whatever it takes
Nice intro video 👍🏻
Thanks, I'm glad you liked it
You are the best !!
Thanks :)
Excellent.
Thanks!
You are the best
Thanks a lot❤❤
Thank you
cant find the link you mentioned in the video for powershell
Ah yeah it isn't actually "linked below", I'll add it now, but you can just type it out from the video at the top, it's not that long: github.com/powershell/powershell
I don’t know anything about common line. where can I learn about it?
To be fair, I kind of tell you most things about command lines anyway throughout the series. Also, yes, command line, no common line (there's subtitles if you need them). I don't know how well it'll go for you though, guess you'll just have to try
good tutorial dude :)
Thanks :)
Thoughts on ChatGPT?
10/10
Thanks lol
This is the first time in my whole life to see somebody trolling Linux 😂😂
Hahaha, only praising the _theory_ of what PowerShell is meant to be! Honestly in practice PowerShell's..... Well, it's not how I would make it, let's put it like that.
@@ABCo-ABMedia I came from Linux background, but I'm literally astonished by the way PowerShell works with objects not just text. I admit it, it's very useful.
I'm very grateful to you by the way 🥰
Great tutorial.. yet you shouldn't use aliases. It's bad practice at this point.
I do mention that later on - that when writing _scripts_ especially you should try to avoid them. But if you're just typing commands in the command-line to quickly get something done, which is all this video covers here I don't really feel it matters, you don't really need to maintain the command you just wrote
Might have learned something (❁´◡`❁)!
I certainly hope you did!
$._CPU is not a recognized cmdlt
Hm?
Sup King Charles :)
I have no idea what this is supposed to mean :P
@@ABCo-ABMedia Haha. I like the way you talk.
@@ABCo-ABMedia Classy talk, smart , ordered and nice.
🍀
As a c# programmer ITS Look Like linq
Yes, "Where" and "ForEach" are exactly like .Where and .Select respectively
Im ganna hack the matrix soon!
Yeah... Good luck with that!
@@ABCo-ABMedia im pro
Man I would have loved to watch this, but I can't deal with the obvious
I don't think that's fair. The series has to start somewhere and I *definitely* wouldn't call a lot of the concepts explained in this episode as such as just "obvious" to every viewer. It's better I go over a few things the viewer _may_ already know, that can then further _solidify_ those concepts in their head, than skip over a bunch of stuff and leave many lost.
There are many different series out there and the whole reason I made this one is for people who _don't_ know tons of stuff at the beginning; if you do, there are other series better suited for that! If it's not for you, then it's not for you. And that's completely fine!
Never rely on a Microsoft backed service or product - it will only result in you or your business getting hacked. It's what they do...
Did you come here just to say that? You do know that .NET and PowerShell are both open-source, and have huge community run backing, right? MS has like _a_ team of employees working on them, who are just everyday developers, and then everything else is the community
You do know that PS is, well, just a command-line interface to interact with .NET - where is the room to "get your business hacked" there?
And you do know that while Microsoft is certainly many things their security isn't exactly the thing I'd call lacking about them.
Man, the internet really has given every idiot a megaphone, hasn't it.
in french please :D
Glad that you're so easy to understand. Thank you!