Last Update: Sep 04, 2024
Managing Microsoft Teams if you’re an IT Pro can often be a complicated process that requires multiple services to be combined. When provisioning a team, services such as Azure Active Directory (AAD), SharePoint Online, and Exchange Online connect to the core plumbing. It means that for you as an IT administrator, you need to connect…
Last Update: Sep 04, 2024
In this article, I’ll show you how to use Windows PowerShell to move one or multiple files or folders from the command line, using the Move-Item, Get-Item, and Get-ChildItem PowerShell cmdlets. If you would like to delete a file or folder using PowerShell, check out How Can I Delete a File or Folder from the…
Last Update: Sep 04, 2024
If you are using PowerShell scripts to automate tasks in your environment, sooner or later, there’s a good chance that you will need to deal with elevating privileges to access resources that require a different set of credentials than those being used to run the script. For example, you might need to access a file…
Last Update: Sep 04, 2024
In this article, I will look at both Microsoft’s Windows Update provider for PowerShell in Windows Server 2019. And I’ll show you how to use the third-party PSWindowsUpdate PowerShell module that most system administrators still prefer to use. Microsoft’s Windows Update PowerShell provider Microsoft’s Windows Update PowerShell provider (WindowsUpdateProvider) comes preinstalled in Windows Server 2019…
Last Update: Sep 04, 2024
As we start the new way of working in the second half of 2021, whether it’s back into the office or working hybrid, one aspect we often see left behind are your meeting spaces. As organizations come back into the office, meeting rooms will no longer meet their collaborative requirements. We often see when people…
Last Update: Sep 04, 2024
The latest versions of PowerShell are not included out-of-the-box with Windows 10. So, you might not know that PowerShell is already on version 7.1
Last Update: Sep 04, 2024
Microsoft introduced Secure Shell (SSH) as a transport for PowerShell Remoting in PowerShell 6. Older versions of PowerShell (Windows PowerShell) are restricted to HTTP/HTTPS and Windows Remote Management (WinRM). WinRM/HTTP is fine for Active Directory (AD) environments. Authentication and communications are secured. WinRM/HTTPS is for accessing workgroup computers, i.e. computers not joined to an AD…
Last Update: Sep 04, 2024
Unlike Windows Server, PowerShell Remoting isn’t enabled by default in Windows 10. PowerShell Remoting is a secure management protocol (WSMan) for connecting to and managing remote devices. In its default configuration, PowerShell Remoting secures traffic over HTTP. It’s primarily designed to be used in an Active Directory (AD) environment, which protects the authentication phase using…
Last Update: Sep 04, 2024
Windows Management Instrumentation (WMI) is a management infrastructure built-in to Windows for querying management and operations data. It can be used to query local and remote computers for information like running processes, installed software, BIOS information, and much more. WMI vs CIM WMI is based on the Common Information Model (CIM), which is an open-source…
Last Update: Sep 04, 2024
In this article, I show you how to use PowerShell splatting to make your code more readable.