Managing Software with Chocolatey - Automate installation and updates of your applications

Software management is not trivial task. Preparing for silent deployment is challenging, and even if you manage to install the application, how to keep it up to date? Chocolatey is package manager for Windows, that can fully automate lifecycle of your software. In this video, I’ll show you how to install Chocolatey, then how to find software, install it and finally keeping it up to date - all coming with free open-source license....

10 March 2021 · 1 min · 134 words · Kamil

PowerShell for IT Professionals [#20] – Next Steps with PowerShell

Congratulations! This is 20th and last lesson in the course – and my aim here is to show you various paths you can take your PowerShell journey to. I’m going to show what else you can do within PowerShell itself, as well how to keep up-to-day plus – what other doors writing code has opened for you – I’d love to hear back about this! I hope you’ve enjoyed the course so far and it will be helped you in some way – either solve a problem, got promotion, or simply learnt something new....

26 November 2020 · 2 min · 239 words · Kamil

PowerShell for IT Professionals [#19] – Websites and APIs

PowerShell is a great server automation tool, but what about Internet and any other web served services? As it turns out, PowerShell is great in scrapping websites and consuming APIs – and it’s been one of the main development areas of the tool in the last couple of years. In this lesson we are going to see how to use PowerShell to download files, scrap websites, discover links. We will then use an API of PasswordPusher (pwpush....

15 November 2020 · 2 min · 326 words · Kamil

PowerShell for IT Professionals [#18] – Working with text strings

Although PowerShell treats everything as object - including text strings - working with text might be particularly difficult - at least when first approached. In this lesson we are going to have a closer look at what is possible with built in text methods and see how these can help us e.g. by extracting a substring of text. PowerShell can also be great at parsing log files - we will use Select-String to quickly filter out the lines of text with the phrase we are looking for e....

3 November 2020 · 2 min · 395 words · Kamil

PowerShell for IT Professionals [#17] – Scripting part 4 – parameters, running remotely and formatting

In the last part of scripting series, we will make the script to be able to query remote machines, e.g. servers. We will also check how to add parameters to the script (and configure the default value of parameter) so that user will able to pass the parameter name like in a standard PowerShell cmdlet. Finally, we are going to format the script so that it looks more reliable and make some refactoring so that the logic is simpler....

19 October 2020 · 2 min · 425 words · Kamil