Software

Using System.Environment Class in PowerShell

In PowerShell you can use a lot of modules and classes of your machine. Built-in system class “System.Environment” allows you to get a lot of useful information about your machine. Its syntax is like this [System.Environment]::class_property or [System.Environment]::class_method. Read more»

Windows

How to merge Excel cells

Figure 3. Merge cells in Excel

You can merge Excel cells in 3 simple steps: Select a range of cells. Right click on the selected cells and then choose Format Cells (Figure 1) Go to the Alignment tab and check the checkbox “Merge cells” (Figure 2).   The other way to merge cells in Excel is via Excel Ribbon. This way […] Read more»

Microsoft Office

Execute PowerShell script in Task Scheduler

Figure 1. Task scheduler

PowerShell is a very flexible tool for Windows and Windows-software administrators. You can do a lot of things with it. Sometimes you start to think of how to execute powershell scripts from Task Scheduler. It’s not enough just to add a PS-file in scheduler, you need to do something more. Read more»

Windows

Execute commands on Remote machine using Windows PowerShell

If you are an administrator of several servers, I don’t think you want to execute PowerShell script on each server manually, especially if you have 20 or more servers. Since PowerShell 2.0 you can execute commands on remote computers using PowerShell via WinRM (Windows Remote Management) service. Read more»

Windows

PowerShell script to extract file from zip-archive

The PowerShell script below extracts one file from zip-archive which contains several files. I use code like this to get files with financial references from zip-archives and update SharePoint lists from them. So there’s a lot of things where this sctipt can be used. Read more»

Windows

Popular Posts