x32x01
ADMINISTRATOR
- by x32x01 ||
The Linux operating system has long offered more power and flexibility to its administrators through shell scripting. However, Microsoft Windows lacked this flexibility, because of the limited capabilities of the command prompt.
To overcome this limitation, Microsoft introduced PowerShell to efficiently automate tasks and manage configurations. It is built on top of the .NET Framework and provides complete access to COM and WMI.
PowerShell is a tool for scripting and task automation on Windows systems. PowerShell by default has cmdlets, which perform predefined tasks.
There are hundreds of PowerShell cmdlets available, designed to do various administrative tasks.
1. Stop-Process
This will forcefully close the Firefox browser if it is running.
2. Get-Process
This will list all processes currently running on the system in tabular format.
3. Get-EventLog
This will print all “Security” related event logs from the current system.
4. Export-Csv
This will export all “Security” related events to the file security.csv on the E drive.
5. Get-Service
This will print a list of all services on the current system and their status, in tabular format.
6. Get-Help
This will print detailed usage information about the Format-Table cmdlet.
7. Get-CimInstance
This will get details about the operating system currently installed on the system.
8. Get-WmiObject
This lists all the local users on the current system.
To overcome this limitation, Microsoft introduced PowerShell to efficiently automate tasks and manage configurations. It is built on top of the .NET Framework and provides complete access to COM and WMI.
PowerShell is a tool for scripting and task automation on Windows systems. PowerShell by default has cmdlets, which perform predefined tasks.
There are hundreds of PowerShell cmdlets available, designed to do various administrative tasks.
1. Stop-Process
This will forcefully close the Firefox browser if it is running.
Code:
Stop-Process -Name Firefox
This will list all processes currently running on the system in tabular format.
Code:
Get-Process | Format-Table
This will print all “Security” related event logs from the current system.
Code:
Get-EventLog -Log “Security”
This will export all “Security” related events to the file security.csv on the E drive.
Code:
Get-EventLog -Log “Security” | Export-Csv E:\security.csv
This will print a list of all services on the current system and their status, in tabular format.
Code:
Get-Service | Format-Table
This will print detailed usage information about the Format-Table cmdlet.
Code:
Get-Help Format-Table
This will get details about the operating system currently installed on the system.
Code:
Get-CimInstance CIM_OperatingSystem
This lists all the local users on the current system.
Code:
Get-WmiObject -Class Win32_UserAccount -Filter “LocalAccount=’True'”