How to use PowerShell objects, how to tease more info and functionality out of them and how objects can be useful in scripting scenarios. One of the things most people do not realize about PowerShell, ...
Because you get the file object at the end of the pipeline you could do whatever you want. Perhaps you want to delete the file. The del command is an alias for Remove-Item and one you are probably ...
PowerShell sometimes displays far more information than you can comfortably digest. Thankfully, there are ways to display only the information that really matters. One of the things I have always ...
In my previous article in this series, I explained that you can make your PowerShell scripts far more flexible and dynamic by leveraging a configuration file as opposed to hard coding all of the ...
Whenever you use PowerShell, whether it is querying data or making a change to some configuration or existing object, you are working with different types of objects. You may not be aware of it ...
Secure file transfer protocol (SFTP) is a safe way to transfer files between hosts over the internet. While PowerShell does not offer built-in support for SFTP, you can add this functionality using ...