Skip to main content

Posts

Showing posts with the label PowerShell

Windows Terminal Preview 1.2 Release July 22nd, 2020

Windows Terminal Preview  has new features for version 1.2 which will appear in Windows Terminal in August. You can download Windows Terminal Preview and Windows Terminal from the  Microsoft Store  or from the  GitHub releases page . Let’s dive into what’s new! Focus mode There is a new feature called focus mode that hides the tabs and title bar. This mode will only display the terminal content. To enable focus mode, you can add a key binding for  toggleFocusMode  in your settings.json file. This command is not bound by default. { "command" : "toggleFocusMode" , "keys" : "shift+f11" } Always on top mode In addition to focus mode, you can enable Windows Terminal Preview to always be the topmost window. This can be done with the  alwaysOnTop  global setting as well as a key binding using the  toggleAlwaysOnTop  command. These are not bound by default. // Global setting "alwaysOnTop" : true // Key binding { "co...

How can I Install Windows PowerShell on Windows 7

What is Power Shell? Power Shell is a modern command shell that includes the best features of other popular shells. Unlike most shells that only accept and return text, Power Shell accepts and returns .NET objects. Scripting Language: As a scripting language, PowerShell is commonly used for automating the management of systems. It's also used to build, test, and deploy solutions, often in CI/CD environments. Power Shell is built on the .NET Common Language Runtime (CLR). All inputs and outputs are .NET objects. No need to parse text output to extract information from output. The Power Shell scripting language includes the following features: Extensible through functions, classes, scripts, and modules Extensible formatting system for easy output Extensible type system for creating dynamic types Built-in support for common data formats like CSV, JSON, and XML Process: To launch Windows PowerShell, click on Windows icon or press Windows button from your key board and use Search Progra...