Windows powershell running scripts

Содержание
  1. How to create and run a PowerShell script file on Windows 10
  2. How to create PowerShell script file on Windows 10
  3. Creating script with Visual Studio Code
  4. Install Visual Studio Code
  5. Install PowerShell extension
  6. Create PowerShell script with Visual Studio Code
  7. Creating script with Notepad
  8. Creating script with Integrated Scripting Environment
  9. How to run PowerShell script file on Windows 10
  10. More Windows 10 resources
  11. Halo: MCC’s live service elements make it better, not worse
  12. Microsoft’s Surface Duo is not ‘failing up’
  13. Here’s what you can do if Windows 10 update KB5001330 is causing issues
  14. These are the best PC sticks when you’re on the move
  15. Запуск Windows PowerShell Starting Windows PowerShell
  16. В PowerShell Core есть переименованный двоичный файл PowerShell Core has renamed binary
  17. Запуск Windows PowerShell в более ранних версиях Windows How to Start Windows PowerShell on Earlier Versions of Windows
  18. Из меню «Пуск» From the Start Menu
  19. В командной строке At the Command Prompt
  20. С правами администратора (Запуск от имени администратора) With Administrative privileges (Run as administrator)
  21. Запуск интегрированной среды сценариев Windows PowerShell в более ранних версиях Windows How to Start Windows PowerShell ISE on Earlier Releases of Windows
  22. Из меню «Пуск» From the Start Menu
  23. В командной строке At the Command Prompt
  24. С правами администратора (Запуск от имени администратора) With Administrative privileges (Run as administrator)
  25. Включение интегрированной среды сценариев Windows PowerShell в более ранних версиях Windows How to Enable Windows PowerShell ISE on Earlier Releases of Windows
  26. Включение интегрированной среды сценариев Windows PowerShell Windows PowerShell (ISE) To enable Windows PowerShell Integrated Scripting Environment (ISE)
  27. Запуск 32-разрядной версии Windows PowerShell Starting the 32-Bit Version of Windows PowerShell

How to create and run a PowerShell script file on Windows 10

Source: Windows Central

On Windows 10, PowerShell is a command-line tool designed by Microsoft to run commands and scripts to change settings and automate tasks. In a way, it’s similar to Command Prompt. However, PowerShell is a more capable command-line interface (CLI) that offers an extensive set of tools and more flexibility and control. Also, unlike Command Prompt, PowerShell is available on Windows, macOS, and Linux.

A script is just a collection of commands saved into a text file (using the special «.ps1» extension) that PowerShell understands and executes in sequence to perform different actions.

The only caveat is that the default security protocol always blocks any script from running on a device. This means that when double-clicking a «.ps1» file on Windows 10 nothing will happen, and if you try to run the script within PowerShell, you’ll see the «cannot be loaded because running scripts is disabled on this system» error message. However, it’s not impossible to run scripts on your computer. You only need to enable the correct execution policy.

In this Windows 10 guide, we’ll walk you through the steps to successfully write and run your first script file on PowerShell using Visual Studio Code, Notepad, and the PowerShell Integrated Scripting Environment (ISE) console.

How to create PowerShell script file on Windows 10

On Windows 10, you can create PowerShell script files using virtually any text editor or the ISE console. However, the preferred option (thanks @jotaka for the heads up) to build scripts moving forward is to use the Visual Studio Code editor with the PowerShell extension.

Creating script with Visual Studio Code

Visual Studio Code — also known as VS Code — is a free and extensible cross-platform code editor that provides an environment to edit virtually any kind of programming language. And when adding the PowerShell extension, you get a fully interactive scripting editing experience, even with IntelliSense (code-completion) support.

The new experience is meant to be the new default, but the PowerShell ISE console isn’t going away. Still, the company won’t be adding any more features, and it doesn’t support PowerShell 7 or higher releases.

Install Visual Studio Code

To install Visual Basic Code on Windows 10, use these steps:

Click the Windows button to download the installer.

Source: Windows Central

Click the Next button.

Source: Windows Central

Confirm additional tasks as necessary.

Source: Windows Central

  • Click the Next button.
  • Click the Install button.
  • Click the Finish button.
  • Once you complete the steps, you can proceed to install the PowerShell extension.

    Install PowerShell extension

    To install the PowerShell extension on VS Code, use these steps:

    1. Open VS Code.
    2. Click the Extensions tab from the left pane.
    3. Search for PowerShell and select the top result.

    Click the Install button.

    Source: Windows Central

    After you complete the steps, you can start writing PowerShell scripts using Visual Studio Code.

    Create PowerShell script with Visual Studio Code

    To create a script with Visual Basic Code, use these steps:

      Open VS Code.

    Click the File menu and select the New File option.

    Source: Windows Central

    Click the File menu and select the Save as option.

    Source: Windows Central

    Write a new, or paste the script you want to run — for example:

    Write-Host «Congratulations! Your first script executed successfully»

    The above script will output the phrase «Congratulations! Your first script executed successfully» on the screen.

    (Optional) Click the Run button from the top-right side (or press the F5 key) to run the script.

    Source: Windows Central

  • Click the File menu.
  • Click the Save option.
  • Читайте также:  Операционная система windows документ

    Creating script with Notepad

    To create a PowerShell script using the Notepad editor on Windows 10, use these steps:

    1. Open Start.
    2. Search for Notepad, and click the top result to open the app.

    Write a new, or paste your script, in the text file — for example:

    Write-Host «Congratulations! Your first script executed successfully»

    Source: Windows Central

    Type a descriptive name for the script — for example, first_script.ps1.

    Source: Windows Central

  • Click the Save button.
  • Creating script with Integrated Scripting Environment

    Alternatively, you can use the built-in PowerShell ISE console to code your scripts on Windows 10.

    The Integrated Scripting Environment is an advanced tool, but you can get started using these steps:

    1. Open Start.
    2. Search for Windows PowerShell ISE, right-click the top result, and select the Run as administrator option.
    3. Click on File menu.

    Select the New option to create a new empty .ps1 file.

    Source: Windows Central

    Write a new, or paste the script you want to run — for example:

    Write-Host «Congratulations! Your first script executed successfully»

    Source: Windows Central

    Type a name for the script – for example, first_script.ps1.

    Source: Windows Central

  • Select the folder location to store the script.
  • Click the Save button.
  • Once you complete the steps using Notepad, Visual Studio Code, or PowerShell ISE, the script will be ready to run, but it will fail by default. This is because the default PowerShell settings are always set to block the execution of any script. (The only exception is if you run the contents of the script within Visual Studio Code or PowerShell ISE.)

    How to run PowerShell script file on Windows 10

    If you wish to run a script file with PowerShell, you have to change the execution policy on Windows 10.

    To change the execution policy to run PowerShell scripts, use these steps:

    1. Open Start.
    2. Search for PowerShell, right-click the top result, and select the Run as administrator option.

    Type the following command to allow scripts to run and press Enter:

    Type A and press Enter (if applicable).

    Source: Windows Central

    Type the following command to run the script and press Enter:

    In the above command, make sure to change «PATH\TO\SCRIPT» to the location of your script.

    For example, this command runs a script stored in the Downloads folder:

    Source: Windows Central

    After you complete the steps, the script will run, and if it was written correctly, you should see its output without issues.

    On Windows 10, PowerShell includes four execution policies, including:

    • Restricted — Stops any script from running.
    • RemoteSigned — Allows scripts created on the device, but scripts created on another computer won’t run unless they include a trusted publisher’s signature.
    • AllSigned — All the scripts will run, but only if a trusted publisher has signed them.
    • Unrestricted — Runs any script without any restrictions.

    In the above steps, we use the command to allow local scripts to run on Windows 10. However, if you’re not planning to run scripts regularly, you can restore the default settings to block untrusted scripts using the same instructions outlined above, but on step No. 4, make sure to use the Set-ExecutionPolicy Restricted command.

    More Windows 10 resources

    For more helpful articles, coverage, and answers to common questions about Windows 10, visit the following resources:

    Halo: MCC’s live service elements make it better, not worse

    Halo: The Master Chief Collection is more popular than ever, but some fans don’t agree with the live service approach 343 Industries has taken with it. Here’s why those elements are, at the end of the day, great for the game and for Halo overall.

    Microsoft’s Surface Duo is not ‘failing up’

    Microsoft announced this week that it was expanding Surface Duo availability to nine new commercial markets. While Surface Duo is undoubtedly a work in progress, this is not a sign of a disaster. It’s also doesn’t mean that Surface Duo is selling a ton either. Instead, the reason for the expansion is a lot more straightforward.

    Here’s what you can do if Windows 10 update KB5001330 is causing issues

    In this guide, we’ll show you the steps to get rid of the update KB5001330 to fix profile, gaming, and BSoD problems with the Windows 10 October 2020 Update and May 2020 Update.

    These are the best PC sticks when you’re on the move

    Instant computer — just add a screen. That’s the general idea behind the ultra-portable PC, but it can be hard to know which one you want. Relax, we have you covered!

    Запуск Windows PowerShell Starting Windows PowerShell

    Windows PowerShell — это обработчик скриптов .DLL , который внедрен в несколько узлов. Windows PowerShell is a scripting engine .DLL that’s embedded into multiple hosts. Самый распространенный запускаемый узел — интерактивная командная строка powershell.exe и интерактивная среда скриптов powershell_ise.exe . The most common hosts you’ll start are the interactive command-line powershell.exe and the Interactive Scripting Environment powershell_ise.exe .

    Информацию о запуске Windows PowerShell® в Windows Server® 2012 R2, Windows® 8.1, Windows Server 2012 и Windows 8 см. в статье Общие задачи управления и навигации в Windows. To start Windows PowerShell® on Windows Server® 2012 R2, Windows® 8.1, Windows Server 2012, and Windows 8, see Common Management Tasks and Navigation in Windows.

    В PowerShell Core есть переименованный двоичный файл PowerShell Core has renamed binary

    PowerShell Core, или PowerShell, имеет версию 6 и выше с открытым исходным кодом и использует .NET Core. PowerShell Core, referred to as PowerShell, is version 6 and higher that’s open source and uses .NET Core. Поддерживаемые версии доступны в Windows, macOS и Linux. Supported versions are available on Windows, macOS, and Linux.

    Начиная с PowerShell 6 двоичный файл PowerShell был переименован в pwsh.exe для Windows и pwsh для macOS и Linux. Beginning in PowerShell 6, the PowerShell binary was renamed pwsh.exe for Windows and pwsh for macOS and Linux. Вы можете запустить предварительную версию PowerShell с помощью pwsh-preview . You can start PowerShell preview versions using pwsh-preview . Дополнительные сведения см. в разделе Новые возможности в PowerShell Core 6.0 и Сведения о pwsh. For more information, see What’s New in PowerShell Core 6.0 and About pwsh.

    Чтобы найти справку по командлетам и документацию по установке для PowerShell 7, воспользуйтесь следующими ссылками: To find cmdlet reference and installation documentation for PowerShell 7, use the following links:

    Документ Document Ссылка Link
    Справка по командлетам Cmdlet reference Обозреватель модулей PowerShell PowerShell Module Browser
    Установка в Windows Windows installation Установка PowerShell Core в Windows Installing PowerShell Core on Windows
    Установка в macOS macOS installation Установка PowerShell Core в macOS Installing PowerShell Core on macOS
    Установка в Linux Linux installation Установка PowerShell Core в Linux Installing PowerShell Core on Linux

    Сведения о других версиях PowerShell см. в документации по использованию PowerShell. To view content for other PowerShell versions, see How to use the PowerShell documentation.

    Запуск Windows PowerShell в более ранних версиях Windows How to Start Windows PowerShell on Earlier Versions of Windows

    В этом разделе объясняется, как запустить Windows PowerShell и интегрированную среду скриптов Windows PowerShell (ISE) в Windows® 7, Windows Server® 2008 R2 и Windows Server® 2008. This section explains how to start Windows PowerShell and Windows PowerShell Integrated Scripting Environment (ISE) on Windows® 7, Windows Server® 2008 R2, and Windows Server® 2008. Кроме того, здесь поясняется, как включить дополнительный компонент Windows PowerShell ISE в Windows PowerShell 2.0 в ОС Windows Server® 2008 R2 и Windows Server® 2008. It also explains how to enable the optional feature for Windows PowerShell ISE in Windows PowerShell 2.0 on Windows Server® 2008 R2 and Windows Server® 2008.

    Используйте любой из следующих методов для запуска установленной версии Windows PowerShell 3.0 или Windows PowerShell 4.0, где это возможно. Use any of the following methods to start the installed version of Windows PowerShell 3.0, or Windows PowerShell 4.0, where applicable.

    Из меню «Пуск» From the Start Menu

    • Нажмите кнопку Пуск , введите PowerShell и выберите Windows PowerShell. Click Start , type PowerShell , and then click Windows PowerShell.
    • В меню Пуск выберите Пуск , Все программы , Стандартные , откройте папку Windows PowerShell и щелкните Windows PowerShell. From the Start menu, click Start , click All Programs , click Accessories , click the Windows PowerShell folder, and then click Windows PowerShell.

    В командной строке At the Command Prompt

    В cmd.exe , Windows PowerShell или интегрированной среде сценариев Windows PowerShell для запуска Windows PowerShell введите следующее: In cmd.exe , Windows PowerShell, or Windows PowerShell ISE, to start Windows PowerShell, type:

    Можно также использовать параметры программы powershell.exe для настройки сеанса. You can also use the parameters of the powershell.exe program to customize the session. Дополнительные сведения см. в статье Справка по командной строке PowerShell.exe. For more information, see PowerShell.exe Command-Line Help.

    С правами администратора (Запуск от имени администратора) With Administrative privileges (Run as administrator)

    Нажмите кнопку Пуск , введите PowerShell , щелкните правой кнопкой мыши Windows PowerShell и выберите пункт Запуск от имени администратора. Click Start , type PowerShell , right-click Windows PowerShell , and then click Run as administrator.

    Запуск интегрированной среды сценариев Windows PowerShell в более ранних версиях Windows How to Start Windows PowerShell ISE on Earlier Releases of Windows

    Используйте один из следующих методов для запуска интегрированной среды сценариев Windows PowerShell. Use any of the following methods to start Windows PowerShell ISE.

    Из меню «Пуск» From the Start Menu

    • Нажмите кнопку Пуск , введите Интегрированная среда сценариев и выберите Интегрированная среда сценариев Windows PowerShell. Click Start , type ISE , and then click Windows PowerShell ISE.
    • В меню Пуск выберите Пуск , Все программы , Стандартные , откройте папку Windows PowerShell и щелкните Интегрированная среда сценариев Windows PowerShell. From the Start menu, click Start , click All Programs , click Accessories , click the Windows PowerShell folder, and then click Windows PowerShell ISE.

    В командной строке At the Command Prompt

    В cmd.exe , Windows PowerShell или интегрированной среде сценариев Windows PowerShell для запуска Windows PowerShell введите следующее: In cmd.exe , Windows PowerShell, or Windows PowerShell ISE, to start Windows PowerShell, type:

    С правами администратора (Запуск от имени администратора) With Administrative privileges (Run as administrator)

    Нажмите кнопку Пуск , введите Интегрированная среда сценариев , щелкните правой кнопкой мыши Интегрированная среда сценариев Windows PowerShell и выберите пункт Запуск от имени администратора. Click Start , type ISE , right-click Windows PowerShell ISE , and then click Run as administrator.

    Включение интегрированной среды сценариев Windows PowerShell в более ранних версиях Windows How to Enable Windows PowerShell ISE on Earlier Releases of Windows

    При использовании Windows PowerShell 4.0 и Windows PowerShell 3.0 интегрированная среда сценариев Windows PowerShell по умолчанию включена во всех версиях Windows. In Windows PowerShell 4.0 and Windows PowerShell 3.0, Windows PowerShell ISE is enabled by default on all versions of Windows. Если она еще не включена, Windows Management Framework 4.0 или Windows Management Framework 3.0 включает ее. If it isn’t already enabled, Windows Management Framework 4.0 or Windows Management Framework 3.0 enables it.

    При использовании Windows PowerShell 2.0 интегрированная среда сценариев Windows PowerShell по умолчанию включена в Windows 7. In Windows PowerShell 2.0, Windows PowerShell ISE is enabled by default on Windows 7. В Windows Server 2008 R2 и Windows Server 2008 эта функция является дополнительной. However, on Windows Server 2008 R2 and Windows Server 2008, it’s an optional feature.

    Чтобы включить интегрированную среду сценариев Windows PowerShell для Windows PowerShell 2.0 в Windows Server 2008 R2 или Windows Server 2008, выполните указанные ниже действия. To enable Windows PowerShell ISE in Windows PowerShell 2.0 on Windows Server 2008 R2 or Windows Server 2008, use the following procedure.

    Включение интегрированной среды сценариев Windows PowerShell Windows PowerShell (ISE) To enable Windows PowerShell Integrated Scripting Environment (ISE)

    1. Запустите диспетчер серверов. Start Server Manager.
    2. Щелкните Компоненты и выберите Добавить компоненты. Click Features and then click Add Features.
    3. В меню «Выберите компоненты» щелкните интегрированную среду сценариев Windows PowerShell. In Select Features, click Windows PowerShell Integrated Scripting Environment (ISE).

    Запуск 32-разрядной версии Windows PowerShell Starting the 32-Bit Version of Windows PowerShell

    При установке Windows PowerShell на 64-разрядном компьютере в дополнение к 64-разрядной версии устанавливается Windows PowerShell (x86) — 32-разрядная версия Windows PowerShell. When you install Windows PowerShell on a 64-bit computer, Windows PowerShell (x86) , a 32-bit version of Windows PowerShell is installed in addition to the 64-bit version. При открытии Windows PowerShell по умолчанию запускается 64-разрядная версия. When you run Windows PowerShell, the 64-bit version runs by default.

    Однако в некоторых случаях нужно запустить Windows PowerShell (x86) , например при использовании модуля, которому требуется 32-разрядная версия, или при удаленном подключении к 32-разрядному компьютеру. However, you might occasionally need to run Windows PowerShell (x86) , such as when you’re using a module that requires the 32-bit version or when you’re connecting remotely to a 32-bit computer.

    Для запуска 32-разрядной версии Windows PowerShell воспользуйтесь любой из следующих процедур. To start a 32-bit version of Windows PowerShell, use any of the following procedures.

    Читайте также:  Asrock icafe 870 windows 10
    Оцените статью