Thursday, August 27, 2026

MS‑DOS Trivia Quiz

MS‑DOS remains one of the most iconic operating systems in computing history — the backbone of early IBM‑compatible PCs and a major catalyst in Microsoft’s rise. Even decades later, MS‑DOS continues to fascinate retro‑computing fans, system administrators, and anyone curious about the roots of modern operating systems.

This 200‑question MS‑DOS Trivia Quiz is designed to challenge beginners, enthusiasts, and experts alike. Each section focuses on a major domain of MS‑DOS knowledge, from its origins to commands, memory management, scripting, hardware, and even classic DOS games.


At the end of every section, you’ll find the correct answers making this quiz perfect for self‑study, classroom use, or retro‑tech fun.

MS‑DOS Trivia Quiz — Full Contents Overview
Below is the complete structure of the quiz, organized into 10 major categories, each containing four sections of questions and answers.

History & Origins
History & Origins – Section 1
History & Origins – Section 2
History & Origins – Section 3
History & Origins – Section 4

Commands & Syntax
Commands & Syntax – Section 1
Commands & Syntax – Section 2
Commands & Syntax – Section 3
Commands & Syntax – Section 4

Files, Directories & File System
Files & Directories – Section 1
Files & Directories – Section 2
Files & Directories – Section 3
Files & Directories – Section 4

Boot Process & System Files
Boot Process – Section 1
Boot Process – Section 2
Boot Process – Section 3
Boot Process – Section 4

Memory Management
Memory Management – Section 1
Memory Management – Section 2
Memory Management – Section 3
Memory Management – Section 4

Batch Files & Scripting
Batch Files – Section 1
Batch Files – Section 2
Batch Files – Section 3
Batch Files – Section 4

Hardware & Drivers
Hardware & Drivers – Section 1
Hardware & Drivers – Section 2
Hardware & Drivers – Section 3
Hardware & Drivers – Section 4

Software, Applications & Tools
Software & Tools – Section 1
Software & Tools – Section 2
Software & Tools – Section 3
Software & Tools – Section 4

Games & Entertainment
Games – Section 1
Games – Section 2
Games – Section 3
Games – Section 4

Miscellaneous & Advanced Trivia
Advanced Trivia – Section 1
Advanced Trivia – Section 2
Advanced Trivia – Section 3
Advanced Trivia – Section 4

About the Author
This quiz was created by a lifelong retro‑computing enthusiast passionate about preserving the legacy of early operating systems. With experience in MS‑DOS scripting, PC history, and vintage hardware.

Monday, August 24, 2026

Publisher PowerShell - Converts .pub to .pdf to .rtf to .docx

As the Microsoft support for Publisher ends in October and as someone whose family utilizes and has hundreds of .pub files, the other night I reviewed the out of the box Microsoft provided .PUB to .PDF version as a base:

https://download.microsoft.com/download/3e67cd40-2334-4c46-a0c9-30bd43eebb3c/Convert-PubFileToPDF.ps1
and created a new PowerShell script which converts the .pub → .pdf (Publisher) → .rtf → .docx (Word) either file by file or via batch format by providing the proper filter:
 
Full script is below for educational purposes just copy and paste and save to the location of your choosing:

<#

Convert-PubFileToRTFModal.ps1

.SYNOPSIS

    Converts .pub → .pdf (Publisher) → .rtf + .docx (Word)

    with automatic Publisher kill‑and‑restart when modal dialogs appear.


.DESCRIPTION

    This version:

      • Removes ALL UIAutomation dialog handling

      • Detects modal dialog COM lock

      • Kills Publisher immediately when locked

      • Restarts Publisher for each retry

      • Retries each file once

      • Skips files that remain locked


.EXAMPLES

      Run with the following filters from PowerShell Command Line:


If needed set proper execution policies:

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser


.EXAMPLE

./Convert-PubFileToRTFModal.ps1 -Filter "C:\Documents\MyFile.pub"

Converts the specified Publisher file to PDF to RTF to WORD format.


.EXAMPLE

./Convert-PubFileToRTFModal.ps1 -Filter "*.pub"

Converts all Publisher files in the current directory to PDF to RTF to WORD format.


.EXAMPLE

./Convert-PubFileToRTFModal.ps1 -Filter "*.pub" -Recurse

Converts all Publisher files in the current directory and all subdirectories to PDF to RTF to WORD format.


KMO 8/20/2026 used Microsoft .PUB to .PDF version as base:

https://download.microsoft.com/download/3e67cd40-2334-4c46-a0c9-30bd43eebb3c/Convert-PubFileToPDF.ps1

Script was only utilized with Windows 11 Home Edition

#>

param(

    [Parameter(Mandatory=$true)]

    [string]$Filter,


    [switch]$Recurse

)


function Kill-Publisher {

    Write-Warning "Killing all Publisher processes..."

    Get-Process -Name "MSPUB" -ErrorAction SilentlyContinue | Stop-Process -Force -ErrorAction SilentlyContinue

    Start-Sleep -Seconds 1

}


function Start-Publisher {

    try { return (New-Object -ComObject Publisher.Application) }

    catch {

        Write-Warning "Publisher cannot start."

        return $null

    }

}


function Start-Word {

    try { return (New-Object -ComObject Word.Application) }

    catch {

        Write-Warning "Word cannot start."

        return $null

    }

}


function Export-PubToPdf {

    param(

        [string]$PubPath,

        [string]$PdfPath

    )


    $app = Start-Publisher

    if (-not $app) { return $false }


    try {

        $doc = $app.Open($PubPath)

    }

    catch {

        Write-Warning "Open() failed for: $PubPath  -> $_"

        Kill-Publisher

        return $false

    }


    if (-not $doc) {

        Write-Warning "Publisher returned null document: $PubPath"

        Kill-Publisher

        return $false

    }


    try {

        $doc.ExportAsFixedFormat(

            [Microsoft.Office.Interop.Publisher.PbFixedFormatType]::pbFixedFormatTypePDF,

            $PdfPath

        )

        Write-Output "Saved PDF: $PdfPath"

    }

    catch {

        Write-Warning "PDF export failed for: $PubPath  -> $_"

        Kill-Publisher

        return $false

    }


    try { $doc.Close() } catch { Kill-Publisher }

    try { $app.Quit() } catch { Kill-Publisher }


    return $true

}


function Convert-PdfToRtfDocx {

    param(

        [string]$PdfPath,

        [string]$RtfPath,

        [string]$DocxPath

    )


    if (-not (Test-Path $PdfPath)) {

        Write-Warning "PDF not found for Word conversion: $PdfPath"

        return $false

    }


    $word = Start-Word

    if (-not $word) { return $false }


    $word.Visible = $false


    try {

        $doc = $word.Documents.Open($PdfPath)

    }

    catch {

        Write-Warning "Word cannot open PDF: $PdfPath  -> $_"

        try { $word.Quit() } catch {}

        return $false

    }


    if (-not $doc) {

        Write-Warning "Word returned null document for: $PdfPath"

        try { $word.Quit() } catch {}

        return $false

    }


    $ok = $true


    try {

        $doc.SaveAs([ref]$RtfPath, [ref][int][Microsoft.Office.Interop.Word.WdSaveFormat]::wdFormatRTF)

        Write-Output "Saved RTF: $RtfPath"

    }

    catch {

        Write-Warning "RTF save failed for: $PdfPath  -> $_"

        $ok = $false

    }


    try {

        $doc.SaveAs([ref]$DocxPath, [ref][int][Microsoft.Office.Interop.Word.WdSaveFormat]::wdFormatXMLDocument)

        Write-Output "Saved DOCX: $DocxPath"

    }

    catch {

        Write-Warning "DOCX save failed for: $PdfPath  -> $_"

        $ok = $false

    }


    try { $doc.Close() } catch {}

    try { $word.Quit() } catch {}


    return $ok

}


function Convert-OneFile {

    param([string]$PubPath)


    $base = [System.IO.Path]::Combine(

        [System.IO.Path]::GetDirectoryName($PubPath),

        [System.IO.Path]::GetFileNameWithoutExtension($PubPath)

    )


    $pdf  = "$base.pdf"

    $rtf  = "$base.rtf"

    $docx = "$base.docx"


    Write-Output "Converting: $PubPath"


    # --- FIRST ATTEMPT ---

    if (Export-PubToPdf -PubPath $PubPath -PdfPath $pdf) {

        if (Convert-PdfToRtfDocx -PdfPath $pdf -RtfPath $rtf -DocxPath $docx) {

            return $true

        }

    }


    Write-Warning "First attempt failed. Retrying with clean Publisher restart..."


    Kill-Publisher


    # --- SECOND ATTEMPT ---

    if (Export-PubToPdf -PubPath $PubPath -PdfPath $pdf) {

        if (Convert-PdfToRtfDocx -PdfPath $pdf -RtfPath $rtf -DocxPath $docx) {

            return $true

        }

    }


    Write-Warning "Skipping file (Publisher remained locked): $PubPath"

    return $false

}


# Validate filter

if (-not ($Filter -like "*.pub")) {

    Write-Warning "Filter must specify .pub files."

    exit 1

}


$files = Get-ChildItem -File -Recurse:$Recurse -Filter $Filter

if (-not $files) {

    Write-Warning "No .pub files found."

    exit 1

}


$success = 0

$fail = 0


foreach ($file in $files) {

    if (Convert-OneFile -PubPath $file.FullName) { $success++ }

    else { $fail++ }

}


Write-Output "Completed: $success succeeded, $fail failed."


Saturday, August 15, 2026

Microsoft Copilot Trivia Quiz

The Microsoft Copilot trivia quiz is an enterprise‑focused quiz to support by providing a comprehensive way to benchmark Copilot readiness, reinforce responsible AI usage, and accelerate adoption to those interested in this topic.

https://www.amazon.com/dp/B0HDSJNSM6/

Microsoft Copilot is Microsoft's AI‑powered assistant designed to boost productivity across the entire Microsoft 365 ecosystem be it Word, Excel, PowerPoint, Outlook, Teams, Loop, SharePoint, OneDrive, Windows, and more.

This comprehensive 250‑question Copilot Trivia Quiz is organized into themed sections, each containing multiple-choice questions and answers. It's built for learners, IT pros, admins, and Copilot enthusiasts who want to sharpen their knowledge of Microsoft's AI capabilities.

Use this quiz to test your understanding, train your team, or simply explore how Copilot works across the Microsoft Cloud.

This trivia collection is ideal for:

  • Corporate training
  • IT onboarding
  • Classroom instruction
  • Workshops
  • Self‑study
  • Copilot pilot education

The high-level sections include:

  • Copilot Fundamentals
  • Copilot in Word
  • Copilot in Excel
  • Copilot in PowerPoint
  • Copilot in Outlook
  • Copilot in Teams
  • Copilot in Loop
  • Copilot in SharePoint
  • Copilot in OneDrive
  • Copilot in Windows
  • Copilot Studio
  • Copilot Security, Compliance & Governance
  • Expert‑Level Copilot