| by Arround The Web

Get Folder Size in PowerShell

To get the folder size in PowerShell, specify the folder path to the Get-ChildItem and pipe it to the Measure-Object command.

Share Button
Read More
| by Arround The Web

12 PowerShell FTP Commands

FTP protocol transfers files between a client and a server on a remote computer. The most commonly used FTP commands include FTP, Append, Delete, Send, and Mkdir

Share Button
Read More
| by Arround The Web

How to Use the Ipconfig Commands on Windows

The ipconfig command outputs TCP/IP network configurations. It lists down network adapters, gateways, IPv4, and IPv6 protocol configurations.

Share Button
Read More
| by Arround The Web

What are the Get Property Commands in PowerShell

PowerShell Get Property commands get the properties of an item or an object. These commands include Get-Member, Get-Item, and Select-Object.

Share Button
Read More
| by Arround The Web

13 Basic PowerShell Active Directory Commands

PowerShell has a dedicated set of commands to manage the Active Directory. Few of them include Get-ADComputer, Get-ADUser, Set-ADUser, or Get-ADGroup.

Share Button
Read More
| by Arround The Web

15 Basic PowerShell SQL Commands

The most commonly used SQL commands include PowerShell SQL Commands Add-RoleMember, Remove-RoleMember, Add-SqlFirewallRule, or Remove-SqlFirewallRule.

Share Button
Read More
| by Arround The Web

11 Basic PowerShell Office 365 Commands

The most commonly used Office 365 commands include Get-MsolUser, New-MsolUser, Set-MsolUserPassword, or Remove-SPOUser.

Share Button
Read More
| by Arround The Web

How to Import and Export Scheduled Tasks Using PowerShell

To import the scheduled tasks open PowerShell. Type Register-ScheduledTask -xml (Get-Content “Task-Path” | Out-String) -TaskName “T-Name” -TaskPath “T-Path”.

Share Button
Read More
| by Arround The Web

30 PowerShell Commands Examples

PowerShell commands are the units of scripting language. It helps the system admins perform the recurring tasks swiftly.

Share Button
Read More
| by Arround The Web

30 Basic PowerShell Networking Commands

To manage the network using PowerShell, administrators must be aware of the networking commands. These commands include ping, tracert, nslookup, or netstat.

Share Button
Read More
| by Arround The Web

How to Work with CSV Files in PowerShell

To work with CSV files, PowerShell has several commands. These commands can help users to view, import, or export data within the CSV files.

Share Button
Read More
| by Arround The Web

How to Solve Common PowerShell Cmdlet Issues

To solve common cmdlet issues in PowerShell, users need to check spelling mistakes. Moreover, they need to run PowerShell as an administrator.

Share Button
Read More
| by Arround The Web

How to Securely Store Passwords in PowerShell

To securely store a password in PowerShell, first, set the ExecutionPolicy to RemoteSigned. Then, install the “SecureManagement” and “SecretStore” modules.

Share Button
Read More
| by Arround The Web

Creating a Batch File and PowerShell Script “Batch File to Run PowerShell Script

Tutorial on how to create a batch file to run a PowerShell script and use it to automate the process of renaming the files in a folder along with examples.

Share Button
Read More
| by Arround The Web

What are Automatic Variables in PowerShell

Automatic variables are predefined and are created automatically by PowerShell during script execution. Each of them serves different purposes.

Share Button
Read More
| by Arround The Web

Using Statement in PowerShell

The “using” statement in PowerShell lets you specify which namespaces, modules or assemblies are utilized in the session.

Share Button
Read More
| by Arround The Web

How to Install MSOnline via PowerShell

MSOnline can be installed via PowerShell using the “Install-Module -Name MSOnline” command and the “Get-Module -ListAvailable” verifies the installation.

Share Button
Read More
| by Arround The Web

How to Use the Suspend-Service (Microsoft.PowerShell.Management) Cmdlet in PowerShell?

The “Suspend-Service” cmdlet is used to suspend one or more running services. It can be added to the “Suspend-Service” cmdlet using its name or display name.

Share Button
Read More
| by Arround The Web

How to Use the Stop-Service (Microsoft.PowerShell.Management) Cmdlet in PowerShell?

To stop one or more running specified services in PowerShell, the “Stop-Service” cmdlet can be used. It sends a stop message to Windows to stop the service.

Share Button
Read More
| by Arround The Web

How to Use the Set-Acl Cmdlet in PowerShell?

The “Set-Acl” cmdlet changes the security descriptor of a specified item or file. It uses the “-AclObject” parameter to specify the security descriptor.

Share Button
Read More