Posts

Introducing Zevonix: Your Pathway to Smarter IT

Image
As businesses increasingly rely on technology to drive innovation and efficiency, the need for robust IT support becomes critical. My name is Patrick Domingues , and as the owner of Zevonix , I’m proud to offer tailored IT solutions designed to meet the diverse needs of modern businesses. At Zevonix, we’re more than just a managed service provider (MSP)—we’re your partner in navigating the evolving technology landscape. Who We Are Zevonix is built on the principle of delivering smarter IT solutions to businesses of all sizes. With years of experience in IT management and security, we understand the challenges businesses face. From day one, my goal has been to provide top-notch IT services that simplify technology and drive growth for our clients. Our Services At Zevonix, we offer a comprehensive suite of services to ensure your technology infrastructure is optimized, secure, and scalable: - Managed IT Services Our managed IT services provide proactive monitoring, maintenance, and sup

How to Remove User Pin with PowerShell

Image
Learn how to remove user PINs using PowerShell with this step-by-step guide and sample script for managing biometric authentication on Windows systems. PowerShell offers a variety of tools to help automate and manage tasks in Windows environments. In this guide, we'll show you how to remove a user's PIN using PowerShell. Removing a PIN from a system can be part of user management, security protocols, or resetting biometric authentication methods. Here's a step-by-step process along with a sample script that utilizes the BiometricAuthentication PowerShell module. Step 1: Install the Required Module Before running the script, you need to ensure that you have the necessary PowerShell module. In this case, the module BiometricAuthentication is required for managing biometric authentication, including PINs. To install the module, run: Install-Module -Name "BiometricAuthentication" -Force Step 2: Use the Script to Remove the PIN The script below finds users with PINs an

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
Image
How To Install Plex Media Server on Ubuntu 24.04 How To install Plex Media Server on Ubuntu 24.04 with this easy guide. Download, install, and configure Plex to stream your media effortlessly on your network. Patrick Domingues #Tutorials #Ubuntu https://PatrickDomingues.com https://patrickdomingues.com/2024/06/23/how-to-install-plex-media-server-on-ubuntu-24-04/