Shellgeek.com

PowerShell Get Disk Information

You can use the Get-Volume cmdlet in PowerShell to display volume information for all disks. The above PowerShell Get-Volume command returns the list of … See more

Actived: 4 days ago

URL: https://shellgeek.com/powershell-get-disk-information/

Using PowerShell

WEBThe `Get-IISSite` cmdlet in PowerShell gets the IIS websites. You can specify the Name parameter to get IIS site information like the IIS website name, physical path, …

Category:  Health Go Health

Check IIS Status Using PowerShell

WEBYou can also check the IIS status using the Get-WmiObject cmdlet that uses the Win32_Service class to get the information about ‘W3SVC‘ specified by the Name …

Category:  Health Go Health

Use PowerShell to Check if Hyper-V is Enabled in Windows

WEBUse the Get-WindowsOptionalFeature cmdlet in PowerShell with -FeatureName to specify 'Hyper-V', get the status to check if Hyper-V is enabled

Category:  Health Go Health

Get BitLocker Status using PowerShell

WEBCheck BitLocker Status using PowerShell. To check the BitLocker status using PowerShell, open the PowerShell terminal “Run as Administrator” and run the …

Category:  Health Go Health

Get Domain name using PowerShell and CMD

WEBIn the above PowerShell script, the Get-AdDomainController command get domain controller specified by the name of a server object. The second command uses …

Category:  Health Go Health

Active Directory

WEBActive Directory is an enterprise-level directory service. It can be used to centralize authentication and authorization, store information about the network’s users …

Category:  Health Go Health

PowerShell Get computer Domain Membership

WEBIn the above PowerShell script, first command check if a computer is on domain using Get-WmiObject cmdlet. PartofDomain property of given cmdlet is Boolean …

Category:  Health Go Health

PowerShell Run Batch File

WEBHow to Run a bat file from PowerShell using the call operator. The call operator (&) is one of the methods to run a batch file in PowerShell. The syntax for using …

Category:  Health Go Health

Get-AdUser Employee ID in PowerShell

WEBYou can use Get-AdUser cmdlet to get active directory employee id with filter wildcard character to search within the domain and get aduser EmployeeId property …

Category:  Health Go Health

Get-ADObject – Search AD Objects in Active Directory

WEBGet-AdObject PowerShell cmdlet gets an Active Directory object or performs a search to get multiple objects based on search criteria. You can get all of the objects in …

Category:  Health Go Health

How to Get Free Disk Space in PowerShell

WEBTo get free disk space on a system using PowerShell, you can use Get-Volume cmdlet. This command gets a list of all the volumes available on the system, the …

Category:  Health Go Health

Connect to Exchange Online Using PowerShell

WEBStep 1: Open the Windows PowerShell terminal ( Run as Administrator) Step 2: Install the ExchangeOnlineManagement module using the following command. Install …

Category:  Health Go Health

Get FSMO Roles in Active Directory

WEBFSMO Roles stands for flexible single master operations.FSMO prevents a conflict in an Active Directory updates from occurring.Currently, in windows, there are …

Category:  Health Go Health

PowerShell script is not digitally signed

WEBPowerShell has built-in security features implemented. The PowerShell Execution policy is a safety feature that controls the conditions to run scripts and load …

Category:  Health Go Health

How to Get Drivers Version Using PowerShell

WEBTo find the driver version on a remote computer using PowerShell, refer to the below steps: Click on Window Start. Search for PowerShell, right-click on the app and …

Category:  Health Go Health

Get AdUser Creation Date

WEBThe Get-AdUser cmdlet in PowerShell has whenCreated property that provides the date and time of active directory user account was created. In this article, …

Category:  Health Go Health