Module 02 · Tier 1 · SOP-002

Software Installation &
Verification

One of the most common Tier 1 tasks — and one of the most commonly done wrong. By the end of this module you'll understand system requirements, admin rights, installation types, and how to verify the job is actually done.

Tier 1 — Help Desk SOP-002 ⏱ 10–15 min Beginner
📘

Phase 1 — Learn IT

Build the knowledge before you touch the keyboard

Why Software Installations Fail

Most failed installs come down to one of six causes. Knowing the cause before you start saves time and prevents making things worse.

Failure ReasonWhat's Actually Happening
No admin rightsWrong account type — the user doesn't have permission to install software. Most corporate environments require elevation.
System requirements not metMissing RAM, old OS version, or incompatible CPU architecture (32 vs 64-bit). Always check before downloading.
Corrupted installerDownload was incomplete or corrupted. Re-download from the official source — never from a third-party mirror.
Conflicting softwareAnother version is already installed. Must uninstall old version first, including leftover registry entries.
Disk space too lowNot enough free space on the target drive. Most installs need more breathing room than the stated minimum.
Group Policy blockIT policy is actively preventing the install. Requires escalation or a proper software request through the correct channel.

Understanding User Account Control (UAC)

Installation Types

💡

Know Your Installer Format

The format of an installer changes how you handle it. MSI installers are designed for enterprise deployment. EXE installers can be anything. Knowing the difference saves time.

TypeWhat It IsNotes
.msiWindows Installer PackageStandard enterprise format. Can be deployed via Group Policy. Usually has the most reliable uninstall path.
.exeExecutable InstallerCan contain anything — an MSI wrapper, a custom installer, or a self-extracting archive. Most consumer software uses this format.
.appx / .msixMicrosoft Store PackageModern app format used by Windows Store apps. Usually installed through the Store or PowerShell.
.zipManual InstallationNot a true installer. Requires copying files to a specific folder and sometimes manually adding to PATH. Handle with care.

Key Terms to Know

UAC
User Account Control. The system mechanism that prompts for elevation when software needs admin rights.
Elevation
Running a process with administrator-level permissions. Right-click → "Run as administrator" is the manual method.
Silent Install
Installing software without user-facing prompts. Common for enterprise deployments via script or Group Policy.
Uninstall Residue
Files, registry entries, and scheduled tasks left behind after removal. Causes "ghost" conflicts with fresh installs.
32-bit vs 64-bit
Architecture difference. Always install the 64-bit version on a 64-bit OS unless directed otherwise.
🛠️

Phase 2 — Do IT

Step-by-step execution — follow this every time

SOP-002

Software Installation — Standard Procedure

Use this procedure for any software installation request. Deviation requires documentation.

01

Verify the request is authorized

Before installing anything, confirm the request came from an authorized person. In a business environment, software installs often require manager approval or a service ticket. Ask: "Do you have a ticket number or approval for this?"

02

Check system requirements

Verify on the vendor's page: OS version (Windows 10/11), RAM, disk space, and CPU architecture. On the user's machine: Settings → System → About for OS and RAM. Check This PC for disk space. Cross-reference before proceeding.

03

Download from official source only

Never use third-party download sites. Go directly to the vendor's website. Verify the URL matches the official domain. Right-click the downloaded file → Properties → check the digital signature if available.

04

Run the installer with admin rights

Right-click the installer → "Run as administrator." This ensures UAC elevation is handled correctly. If prompted by UAC, verify the publisher name matches the expected software vendor. Do not click Yes if the publisher shows "Unknown" for known commercial software.

05

Complete the installation

Follow the installer prompts. Key decisions: install path (use default unless directed), components (install only what's needed). Decline any bundled third-party software — toolbars, browser add-ons, and other extras are never needed.

06

Verify the installation

Open the application to confirm it launches. Check Start Menu or Desktop for the shortcut. Verify version: Help → About, or check Control Panel → Programs. Run a basic function test — open a file, check that core features work.

07

Document and close the ticket

Record: software name, version, installation date, install path, and whether any special steps were required. Note any deviations from standard procedure. Close the ticket with status: Resolved.

Escalate to Tier 2 If:

  • Software is blocked by Group Policy and cannot be installed
  • Installation requires a license key that the user cannot provide
  • Install fails repeatedly with errors that persist after re-download
  • The software requires server-side configuration or database setup
  • User is requesting software not on the approved software list

Common Installation Errors

ErrorLikely CauseFirst Fix
Error 1603Fatal error during installationRun as admin, clear %temp%, restart and retry
"Cannot access specified device"File or path permissions blockedCheck AV isn't quarantining installer. Re-download.
"This app has been blocked"SmartScreen or Group Policy blockVerify source. Check with IT manager before bypassing.
"Not enough disk space"Drive is fullCheck This PC. Clear temp files: Win+R → %temp% → delete contents
App installs but won't launchMissing dependencyCheck if Visual C++ Redistributable or .NET Framework update is needed
🎯

Phase 3 — Apply IT

Turn knowledge into career-ready skills

Apply What You Learned

Work through each scenario. Think before you act. Document as you go.

SCENARIO 01

The Blocked Install

A user submits a ticket: "I need Adobe Acrobat Reader installed on my laptop. I tried to run the installer but it says I don't have permission." You remote in and see UAC is showing an "Unknown Publisher" warning — and the file was downloaded from a site called adobe-reader-download.net.

// your task
  • 01. What are the two red flags in this situation?
  • 02. What is the correct first step before downloading anything?
  • 03. Walk through the correct installation process from the beginning.
SCENARIO 02

The Wrong Version

A user calls because their newly installed application crashes immediately on launch. You remote in and see they're running a 64-bit Windows 11 machine but installed the 32-bit version of the software. They also have a previous version from two years ago still showing in Programs and Features.

// your task
  • 01. What is the correct remediation order?
  • 02. How do you verify you're downloading the right architecture version?
  • 03. What do you document in the ticket?
SCENARIO 03

The Group Policy Block

A small business employee needs a specialized accounting tool installed. You run the installer and receive: "The installation of this application has been blocked by your system administrator." You've verified the installer is legitimate and from the official source.

// your task
  • 01. What does this error message tell you about the root cause?
  • 02. Who do you involve next and what do you tell them?
  • 03. How do you document and close this ticket while it's being escalated?

Write the Ticket Note

Use the format below and write the ticket note for Scenario 1.

FieldYour Entry
Date / Time
Software Requested
Source URL Verified?
Admin Rights Used?
Installation Result
Issues Encountered
Steps Taken
Resolution / Status

Practice These Out Loud

Employers at every level ask some version of these questions. Put the frameworks below into your own words.

// interview question 01

"Walk me through how you handle a software installation request from start to finish."

// model answer framework

Start with authorization → check system requirements → download from official source only → run as administrator → follow prompts declining bundled software → verify it launches and core functions work → document everything.

// interview question 02

"A user says they downloaded software from 'a site they found on Google' and it's not working. What do you do?"

// model answer framework

First, I treat this as a potential security issue before a tech issue. I'd check the download source, run the file through Windows Defender, and if anything looks suspicious, quarantine and escalate. Then I'd locate the official vendor site and start fresh with a legitimate installer.

// interview question 03

"How do you handle an installation that keeps failing with Error 1603?"

// model answer framework

Error 1603 is a generic Windows Installer error that usually points to permissions, a conflicting install, or a corrupted %temp% directory. My steps: run as admin, clear %temp%, check Add/Remove Programs for any existing version, restart the machine, retry. If it still fails, I check the Windows Installer log in %temp% for the actual root cause.

Before You Move On

Check each item before marking this module complete.

I can name at least 4 common reasons software installation fails.
I know what UAC is, why it exists, and what to look for in the prompt.
I can identify .msi vs .exe vs .appx installer types and how they differ.
I can walk through SOP-002 all 7 steps from memory.
I know when to escalate an installation request vs. resolve it at Tier 1.
I completed Scenario 1 and wrote the ticket note.
I practiced answering all 3 interview questions out loud.
Module 02 · SOP-002
Finished all three phases? Mark this module complete.