Skip to content

mfsiat/powershell-basics

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

PowerShell Basic

Basics on PowerShell

Basics

  • You can download the latest powershell from the github Repo
  • On powershell commands can be small case or upper case it doesn't matter
  • You can also type $ and then press tab commands will appear on your terminal
  • Windows PowerShell ISE is the default interpreter for windows powershell

PowerShell ISE

  • To run the powershell ISE on start menu Type PowerShell ISE
  • To run only selected script press F8
  • To run entire code press F5
# To Get the services 
Get-Service

# To Get Specific Service
Get-Service -Name Service_Name
  • Get help & examples
Get-Help Get-Service -Examples
  • Example
Get-Service -Name "WinRM" -ComputerName "localhost", "Server01", "Server02" |
    Format-Table -Property MachineName, Status, Name, DisplayName -auto

Commands

# Check Version 
$psversiontable
$PSVersionTable

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors