Tag Archives: PowerShell

How To Delete Version History in SharePoint Online using PnP PowerShell
Learn how to delete version history in SharePoint Online using PnP PowerShell, streamlining your document library and enhancing performance.
Introduction
Version history in SharePoint Online allows users to keep track of changes made to files over time. While versioning can … Read the rest

How to uninstall Kaseya using PowerShell

In this Tutorial I will show you how to uninstall Kaseya using PowerShell. To uninstall Kaseya using PowerShell, you can follow these steps:
- Open Notepad or any other text editor.
- Copy and paste the following code into the text editor:

How to Install Adobe Reader with PowerShell
In this tutorial you will learn how to install Adobe Reader with PowerShell. By the end of this tutorial, you would have successfully deployed Adobe Reader onto a Windows computer.
$CheckADCReg = Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | where {$_.DisplayName -like "Adobe Acrobat

Install Google Chrome With PowerShell
In this tutorial you will learn how to install Google Chrome using PowerShell. By the end of this tutorial, you would have successfully deployed Google Chrome using PowerShell onto a Windows computer.
$LocalTempDir = $env:TEMP; $ChromeInstaller = "ChromeInstaller.exe"; (new-object System.Net.WebClient).DownloadFile('http://dl.google.com/chrome/install/375.126/chrome_installer.exe',

Install 8×8 Work For Desktop With PowerShell
In this tutorial you will learn how to install 8×8 Work For Desktop using PowerShell. By the end of this tutorial, you would have successfully deployed 8×8 Work For Desktop onto a Windows computer.
$url = "https://vod-updates.8x8.com/ga/work-64-msi-v7.25.2-6.msi" $dest = "c:\temp\work-64-msi-v7.25.2-6.msi"

Install Keeper Desktop With PowerShell
In this tutorial you will learn how to install Keeper Password Manager using PowerShell. By the end of this tutorial, you would have successfully deployed Keeper Password Manager to a logged in user.
$url = "https://www.keepersecurity.com/desktop_electron/packages/KeeperPasswordManager.msixbundle" $dest = "c:\temp\KeeperPasswordManager.msixbundle" Invoke-WebRequest

Re-Establish Domain Relationship trust using PowerShell
If you are looking for a how to on an easy way to Re-Establish Domain Relationship trust using PowerShell you have come to the right place.
- Log on Windows 10 using local Administrator account
- Click on Start menu and type

How To Uninstall All Windows 10 Apps Using PowerShell
You have noticed that Windows 10 came with all sorts of Apps and you want a simple way to Uninstall all these Apps, well using PowerShell will be the quickest method.
Step 1: Open PowerShell with admin rights. Locate the … Read the rest

How To Reinstall All Windows 10 Apps Using PowerShell
I take it some how some way you may have uninstalled a few or all Windows 10 Apps and they are no longer in your start menu, This PowerShell command will get those Windows 10 Apps back onto your system. … Read the rest