Retrieve Installed Windows Updates with PowerShell

Retrieve Installed Windows Updates with PowerShell

If you want to find the full list of Windows Updates installed on your machine, you can use a PowerShell command. This method is particularly useful for operating systems like Windows Server Core, where graphical user interfaces might not be available. Using PowerShell to List Installed Windows Updates Command To retrieve a list of installed … Read more

Export Powershell to CSV

Export Powershell to CSV

To export PowerShell to CSV file, you can use the Export-Csv cmdlet. Here’s an example: This command gets a list of all running processes, selects the process name, ID, and CPU usage, and sorts the list by CPU usage in descending order. This command exports the data to a CSV file named “processes.csv” in the … Read more

How to Disable IPv6 on all Network Connections

Create a bold high‑impact 16 9 featured image with a dark networking‑focused tech‑support theme. Use deep black or charcoal as the base with sharp accent colours like bright red and wh 1

Depending on your environment, you may want to disable IPv6 on all networking connections, including wired and wireless connections. To do this, you can use a simple PowerShell script: Once you have run this script, you can go ahead and check the IPv6 settings on the target machine and you should see that it is … Read more

Add or Remove Multiple Application Deployments in SCCM using Powershell

How to add or remove multiple sccm application deployments

Problem Scenario When using SCCM, you may find that you want to either add or remove application deployments based on what administrative categories each application has assigned. As an example, we had a number of applications for the Marketing department that were only distributed to a Marketing collection we had set up with only Marketing … Read more

Remove Windows Server Disabled Roles and Features Payload Files

microsoft black logo

If you are running a Windows Server environment and you are becoming increasing low on system drive space, then you may want to consider removing the built in payload files for Windows Features. Windows Server comes with the payload files readily available if you want to add any additional Features or Roles to your server. … Read more

Get OU Distinguished Name

Active Directory Logo

There are many reasons as to why you would need to identify an Active Directory Organisational Unit’s Distinguished Name. Most techies out there will use an AD distinguished name when writing or using PowerShell scripts. However, quickly finding what the Distinguished name of a particular OU is not immediately clear. You can click on the … Read more

System Center Operations Manager Invalid Management Group Removal

Invalid Management Group Removal

We recently carried out some work for a client who had a completely ruined installation of System Center Operations Manager (SCOM). Who had done what to it, we may never know, but it was clear that the only fix was to start again. This was not such a bad thing as they did want to … Read more

Exchange Shell – Get all Shared Mailboxes Information

Exchange 2013

Following on from our previous post about how IT professionals can use the tools available to them to make their lives easier, we have another Exchange Management Shell (EMS) script which will get all the information available from all Shared Mailboxes including the sizes of each mailbox. Guide Open up the Exchange Management Script tool … Read more

Powershell – Export Active Directory User Last logged on information to CSV

powershell

If you want to export all your Active Directory users last logged on information, you can carry this out using Powershell and then exporting to CSV format. Guide First of all, you will need to import the ActiveDirectory module if you have not already done so. To do this, just open up a Powershell command … Read more