Posts

Showing posts from August, 2024

How to Configure Microsoft 365 for Business Email Protection

Image
Learn how to configure Microsoft 365 for Business Email Protection to enhance security and protect your organization from email-based threats. Introduction Configuring email protection is crucial to safeguard your business from phishing attacks and other email-based threats. Microsoft 365 offers robust email protection features that can be easily configured. Follow these step-by-step instructions to set up email protection for your Microsoft 365 for Business account: Step 1: Access the Microsoft 365 Admin Center - Log in to your Microsoft 365 Admin Center using your administrator credentials. - Navigate to the Exchange Admin Center . Step 2: Enable Anti-Spam and Anti-Malware Protection - In the Exchange Admin Center, go to Protection and select Anti-spam . - Enable anti-spam protection by toggling the switch to "On." - Customize the spam filter settings as per your organization's requirements. - Enable anti-malware protection by going to Protection and selecting Anti-ma

How to Automate Microsoft Edge Updates with PowerShell

Image
Learn how to automate Microsoft Edge updates using a simple PowerShell script, ensuring your systems stay secure and up-to-date effortlessly. Microsoft Edge, like many other applications, frequently receives updates that improve performance, add new features, and address security vulnerabilities. However, manually checking for updates can be time-consuming, especially in a business environment where automation is key. Automating Microsoft Edge Updates The script below allows you to automate the process of installing updates for Microsoft Edge. It works by executing the Microsoft Edge Update executable with specific arguments to silently check for and install updates. $EdgeUpdatePath = "C:Program Files (x86)MicrosoftEdgeUpdateMicrosoftEdgeUpdate.exe" $ArgumentList = "/silent /install appguid={56EB18F8-B008-4CBD-B6D2-8C97FE7E9062}&appname=MicrosoftEdge&needsadmin=True" $Process = Start-Process -FilePath $EdgeUpdatePath -ArgumentList $ArgumentList -PassThru -Wa

How to Remove Dell Support Assist & Command Update with PowerShell

Image
This PowerShell script is designed specifically to automate the removal of Dell SupportAssist and Dell Command | Update applications from systems. These Dell utilities are often pre-installed on Dell machines, and while useful for some environments, they may need to be removed for compliance, standardization, or even mitigating a potential vulnerability. Script Overview: - Targeted Uninstallation: The script uses application name matching to locate and uninstall Dell SupportAssist and Dell Command | Update silently. - Automation-Friendly: Ideal for use in large-scale deployments, this script can be run remotely or as part of an automation process. - Silent Execution: The uninstallation process runs quietly without user prompts, making it suitable for background execution. This script provides an efficient and streamlined way to remove these common Dell utilities across multiple devices in your environment. Steps to Run the PowerShell Script: 1. Open PowerShell with Administrator Pri

How To Run SharePoint File Version Cleanup For Multiple Sites Using PowerShell And CSV

Image
Learn how to efficiently manage file versions in SharePoint document libraries across multiple sites using a PowerShell script that reads site URLs and library names from a CSV file. Introduction Managing file versions in SharePoint document libraries can be a daunting task, especially when dealing with multiple sites. Automating this process not only saves time but also ensures consistency across different SharePoint sites. In this article, we'll explore a PowerShell script that simplifies this task by reading site URLs and library names from a CSV file and performing cleanup operations on each. Before we proceed, please ensure that you have the following prerequisites in place: Uninstall the Legacy SharePoint PowerShell Module 1. Open a PowerShell command prompt with administrative privileges. To do this, right-click on the Start button and select “Windows PowerShell (Admin)” or “Windows PowerShell” if you’re using an older version of Windows. 2. To uninstall the module, use the