Category Archives: Windows

PowerShell Tutorials

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.

Introduction:

Installing Adobe Reader using PowerShell provides a straightforward and automated method to add this widely-used PDF reader to your Windows system. PowerShell, a command-line scripting language developed by Microsoft, offers powerful tools for managing and automating tasks in Windows.

In this guide, I will walk you through the steps to install Adobe Reader using PowerShell. Adobe Reader is a free application that allows you to view, print, and annotate PDF files. By utilizing PowerShell, you can streamline the installation process and ensure a smooth setup.

Install Adobe Reader With PowerShell

Before proceeding, please ensure that you have administrative privileges on your Windows computer. Additionally, make sure you have a stable internet connection to download the Adobe Reader installer. It’s also a good practice to … Read the rest

PowerShell Tutorials

How To Install Google Chrome With PowerShell

Learn how to install Google Chrome effortlessly on your Windows machine using the power of PowerShell. This step-by-step guide will walk you through the process, providing clear instructions and commands to execute. With PowerShell, you can automate the installation procedure, saving you time and effort.

Introduction

Installing Google Chrome with PowerShell is a convenient and efficient method for adding this popular web browser to your Windows system. PowerShell is a powerful command-line tool provided by Microsoft, enabling users to automate various tasks, including software installations. By following the step-by-step instructions outlined below, you’ll be able to install Google Chrome quickly and easily using PowerShell.

$LocalTempDir = $env:TEMP; $ChromeInstaller = "ChromeInstaller.exe";
(new-object    System.Net.WebClient).DownloadFile('http://dl.google.com/chrome/install/latest/chrome_installer.exe', "$LocalTempDir\$ChromeInstaller"); & "$LocalTempDir\$ChromeInstaller" /silent /install;
$Process2Monitor =  "ChromeInstaller"; Do { 
    $ProcessesFound = Get-Process | ?{
        $Process2Monitor -contains $_.Name} | Select-Object -ExpandProperty Name; If ($ProcessesFound)
{ "Still running: $($ProcessesFound -join ', ')" | Write-Host; Start-Sleep -Seconds 2 }
else
Read the rest
PowerShell Tutorials

How to 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. 

Introduction:

Installing 8×8 Work for Desktop using PowerShell allows you to quickly set up the communication software on your Windows computer. With PowerShell, you can automate the installation process and ensure a smooth deployment of 8×8 Work. In this guide, we will walk you through the steps to install 8×8 Work for Desktop using PowerShell. Let’s get started!

$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"
Invoke-WebRequest -Uri $url -OutFile $dest
msiexec.exe /i "C:\temp\work-64-msi-v7.25.2-6.msi" /qn

The PowerShell Script will do the following.

  1. Call to URL 8×8 installation package
  2. Download the 8×8 package and place it in C:\temp
  3. Finally, the PowerShell will install the 8×8 work .msi package onto the Windows computer.

If you have any questions, feel free … Read the rest

PowerShell Tutorials

How to 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. 

Introduction: Installing Keeper Desktop with PowerShell

Keeper Desktop is a secure password management application that allows users to store and manage their passwords in an encrypted vault. To install Keeper Desktop using PowerShell, you can follow the steps outlined below. PowerShell is a powerful command-line tool available on Windows operating systems that allows you to automate tasks and execute scripts.

$url = "https://www.keepersecurity.com/desktop_electron/packages/KeeperPasswordManager.msixbundle"
$dest = "c:\temp\KeeperPasswordManager.msixbundle"
Invoke-WebRequest -Uri $url -OutFile $dest
Add-AppxPackage -Path "C:\temp\KeeperPasswordManager.msixbundle"

The PowerShell Script will do the following.

  1. Call to Keeper desktop URL
  2. Download the package and place it in C:\temp
  3. Finally, it will install the Keeper .msixbundle to the user profile.

If you have any questions, feel free to reach out.

Conclusion:

By … Read the rest

Windows Tutorials

How To Revert Microsoft Outlook Navigation Bar To The Bottom

With The Microsoft Outlook 2207 update, the navigation bar was moved from bottom to left to increase accessibility and provide more customization which allow you to include apps. If you don’t like the change, there is good news, Microsoft added a temporary option to revert this change. In this tutorial you will learn how to revert Microsoft Outlook navigation bar back to the bottom.

How To Revert Microsoft Outlook Navigation Bar To The Bottom

 

Step 1 : Open Microsoft Outlook

Step 2 : Locate and click on File > Options > Advanced.

Step 3 : Under Outlook panes, locate and uncheck Show Apps in Outlook.

Step 4 : Locate and click the OK button.

Step 5: Restart Microsoft Outlook.

Your Navigation bar should now be reverted to the bottom. Keep in mind that this is only temporary, and Microsoft will remove the option to revert this navigation bar completely.

I hope this article was helpful, if you have any questions,

Read the rest
Windows Tutorials

How To Manage OneDrive With Group Policy

In this tutorial you will learn how to manage OneDrive with group policy (GPO). The OneDrive Group Policy objects work by setting registry keys on the computers in your domain. When you enable or disable a setting, the corresponding registry key is updated on computers in your domain.

I will guide you through obtaining the required GPO policies and importing them to Group Policy Management. Afterwards we will go through a simple deployment of OneDrive policies using Group Policy.

Task Details

  1. Install OneDrive Policies
  2. Explain OneDrive Policies
  3. Deploy OneDrive Policies

Task 1: Install OneDrive Policies

  1. You can download the OneDrive GPO Templates From Here.
  2. Locate these two files.
    • OneDrive.adml
    • OneDrive.admx
  3. If you just want to review OneDrive policies in Group Policy Management, you can put these files your local store:

    • Copy ONEDRIVE.ADML to C:\Windows\PolicyDefinitions\en-US
    • Copy ONEDRIVE.ADMX to C:\Windows\PolicyDefinitions\
  4. To use the OneDrive polices on your corporate network, you can put

Read the rest
Windows Tutorials

Install OneDrive using Group Policy and PowerShell

In this tutorial you will learn how to install OneDrive using Group Policy and PowerShell. By the end of this tutorial, you would have successfully deployed OneDrive to all end user devices during computer startup.

Task Details

  1. Download OneDrive
  2. Create PowerShell Script
  3. Create and Deploy GroupPolicy

Task 1: Download OneDrive

1. On your Domain Controller Download OneDrive

2. Place the OneDriveSetup.exe in your netlogon path.

Task 2: Create PowerShell Script

 1. Open Notepad.exe

2. Copy the script below and place it into Notepad.

$ErrorActionPreference = "SilentlyContinue"

# LOGGING INITIALISATION
$logSource = "OneDrive Per-Machine Deployment"
if (![System.Diagnostics.EventLog]::SourceExists($logSource)){
        new-eventlog -LogName Application -Source $logSource
}
# END OF LOGGING INITIALISATION

# CONFIGURATION DETAILS GO HERE

# Specify the location of the OneDriveSetup.exe
$installationSource = "\\Network\Path\Here"
$destinationPath = "C:\Program Files (x86)\Microsoft OneDrive"
$installedVersion = (Get-Command "$destinationPath\OneDriveSetup.exe").FileVersionInfo.FileVersion

try{
    $ErrorActionPreference = "Stop"
    $targetVersion = (Get-Command "$installationSource\OneDriveSetup.exe").FileVersionInfo.FileVersion
} catch{
    write-eventlog -LogName Application -Source $logSource -EntryType Error 
Read the rest
Windows Tutorials

How To Auto Deploy RADIUS WiFi With Group Policy

In this tutorial you will learn how to auto deploy RADIUS WiFi to end user domain joined computers with group policy.

 

Lets get started.

1. Log into your Domain Controller.

2. Open Group Policy Management.

3.  Locate Group Policy Objects, afterwards right click and click New.

4. Name your policy something that is identifiable and then click OK

5. Locate your new policy. Right Click and afterwards click Edit.

6. Expand to the following Computer Configuration > Policies > Windows Settings > Security Settings > Wireless Network (IEE 802.11 Policies).

7. Right click Wireless Network (IEE 802.11 Policies) and then click Create A New Wireless Network Policy for Windows Vista and Later Releases.

8. Make your Policy Name descriptive.

9. Under General Tab click Add.

10. Give your New Profile a Name. I would suggest naming it your Radius Wifi SSID. Afterwards type in your SSID … Read the rest

Windows Tutorials

How To Install And Configure Windows Server DHCP Role

In this tutorial you will learn How To Install And Configure Windows Server DHCP Role. We will be using Windows Server 2019 however the concept is the same with Windows Server 2022.

Introduction

The Windows Server DHCP (Dynamic Host Configuration Protocol) role plays a crucial role in managing IP addresses on a network. By automating IP assignment and configuration, DHCP simplifies network administration and ensures efficient connectivity. This guide will walk you through the process of installing and configuring the DHCP role on your Windows Server. From initial setup to advanced configurations, you’ll gain the knowledge and skills needed to effectively manage IP address allocation. Get ready to streamline your network infrastructure and enhance connectivity with this comprehensive tutorial.

Let’s get started with the Installation of the DHCP Role

1.Log into your Windows Server.

2. If not already opened, open up Server Manager.

3. Click Add roles and featuresRead the rest

Windows Tutorials

How to repair Windows Server 2019 installation with DISM

In this tutorial you will learn how to repair Windows Server 2019 installation with DISM. If you’re experiencing problems with your Windows Server 2019 installation, using the DISM /restorehealth can help repair it. DISM is a command-line tool that can scan and fix issues with Windows images, including those used by the Server operating system. This process can be done by following a few simple steps such as opening an elevated command prompt, running the DISM tool, waiting for the process to complete, and restarting your system. 

Remember to always have a backup. Or if it’s a virtual machine at least a snapshot. 

1.Lets get started by Opening up CMD as administrator and running the following:

dism /online /cleanup-image /scanhealth

2. Once /scanhealth is complete, run the following.

dism /online /cleanup-image /checkhealth

3. Now lets mount your Windows Server 2019 ISO as a drive. Take note of your mounted drive … Read the rest