Powershell

Using Online Help (Part 2)

In the previous tip we mentioned that many PowerShell users prefer the online help over locally downloaded help. To use the online help documents by...

read more

Using Online Help (Part 1)

PowerShell supports both local help files and online resources. Take a look at the differences: # outputs help in same console window # level of...

read more

Using Profile Scripts

Profile scripts work like autostart scripts in PowerShell. They do not need to exist, but if they do, PowerShell executes its content silently...

read more

Identifying User Profile

Be careful when using $env:userprofile or $home to create paths to user files. When a Windows box is set up for OneDrive, the documents folder may...

read more

Get Rid of Get-EventLog

The Get-EventLog cmdlet provides easy access to event log entries in the primary Windows event logs, however it neither can access the many...

read more

Using $Is* Variables

In PowerShell 7, there is a new set of variables all starting with “Is”. They help you understand the environment in which your script...

read more

Managing Autostarts

To manage auto starting programs on Windows, don’t bother writing extensive scripts. PowerShell can directly open the autostart manager...

read more

Downloading Useful Scripts

The PowerShell Gallery not only offers public modules with new PowerShell commands but also public scripts. Before you invest time, you may want to...

read more
1 13 14 15 16 17 130