Solved garlin's PowerShell scripts for updating Secure Boot CA 2023


Would a 3rd-option work for the dissenters?

Normal: is ALLOWED
Quiet: (nothing)
Verbose: is ALLOWED

The reason the script originally printed so much text was to avoid any possible confusion. You wouldn't assume any detail was good or bad, it was always stated for you. But now I can see if you got lots of drives to check, the output gets painful to read.
Suggestion, if the quiet mode is used, maybe only print what is banned or not at the good version
If all test pass, then just write something like "All good" or "All secure boot info is up to date"
That way, people that only want to see what's not good could use the quiet mode and get just that

I don't really know the impact it would have on your code...
So, I let you be the judge of that and see if it's worth the effort

Again, your code, so you have the final word ;-)
 
Last edited:

My Computer My Computer

At a glance

Windows 11
OS
Windows 11
I thought it was allready in there .. ?
Code:
AUDIT REPORT
============
    PASSED ALL CHECKS.

STATUS REPORT
-------------
    Registry: "UEFICA2023Status" = Updated

    SUCCESS: UPDATES ARE FINISHED
 

My Computer My Computer

At a glance

Win11 24H2 IOT LTSC / Win11 Pro 25H2AMD Ryzen 7 8700G / Ryzen 7 8700G / Ryzen 8600GF5-6000J3636F16GX2-FX5 32GB / Lexar Ares RGB ...internal
OS
Win11 24H2 IOT LTSC / Win11 Pro 25H2
Computer type
PC/Desktop
Manufacturer/Model
Gigabyte x2 / Asus = Home builds
CPU
AMD Ryzen 7 8700G / Ryzen 7 8700G / Ryzen 8600G
Motherboard
Gigabyte B650 AORUS ELITE AX V2 / ASUS TUF GAMING B650-PLUS / B650 GAMING X AX V2
Memory
F5-6000J3636F16GX2-FX5 32GB / Lexar Ares RGB LD5BU016G-R6000GDLA 32GB / Kingston FURY Beast 32 GB DDR5-5600
Graphics Card(s)
internal
Sound Card
Realtek
Monitor(s) Displays
BenQ 27 L EW2780
Screen Resolution
1920x1080
Hard Drives
Many M.2's (WD)
PSU
be quiet! Pure Power 13 M 550W
Case
Chieftec HC-10B-OP
Cooling
Gelid Solutions Tranquillo 5, many Noctua's 12x12
Keyboard
Microsoft
Mouse
Cherry
Internet Speed
500 mbs
Browser
Vivaldi
Antivirus
Eset
Other Info
PC builder / repair / Trouble-shooter etc.
@garlin I used your last version of Check_BootMedia from post #3206 and I'm getting this error

Code:
Macrium v10.0.8843
------------------
    WinRE Boot Manager [Windows UEFI CA 2023] is ALLOWED.

Bootable Media
--------------
Check-DriveVolume : Cannot bind argument to parameter 'DriveLetter' because it is an empty string.
At E:\tmp\Check_BootMedia.ps1:2357 char:52
+                     Check-DriveVolume -DriveLetter $Drive
+                                                    ~~~~~~
    + CategoryInfo          : InvalidData: (:) [Check-DriveVolume], ParameterBindingValidationException
    + FullyQualifiedErrorId : ParameterArgumentValidationErrorEmptyStringNotAllowed,Check-DriveVolume

It's coming from the loop on $Drive and it only happens if I don't have any USB drive connected.
It doesn't matter if a CD-ROM (or virtual or not), it's only when no USB drives are present.
All week I tested your different versions having both my USB (config as FIXED) and Macrium ISO mounted on virtual CD-ROM.
So never tested without a USB...

I broke down the statement (line 2347) where you build the list and it seems to be related to last part, the last piping.
"Get-CimAssociatedInstance -ResultClassName Win32_LogicalDisk).DeviceID"
I ran a few test, and for some reason that part seems to find something and the resulting array as a count of 1 and not 0
But the resulting array is empty

Code:
PS E:\Tmp> $x = @((Get-CimInstance -Class Win32_DiskDrive -Filter 'InterfaceType = "USB"' -KeyOnly |
>>    Get-CimAssociatedInstance -ResultClassName Win32_DiskPartition -KeyOnly |
>>    Get-CimAssociatedInstance -ResultClassName Win32_LogicalDisk).DeviceID)
PS E:\Tmp> $x.count
1
PS E:\Tmp> $x = @((Get-CimInstance -Class Win32_DiskDrive -Filter 'InterfaceType = "USB"' -KeyOnly |
>>    Get-CimAssociatedInstance -ResultClassName Win32_DiskPartition -KeyOnly))
PS E:\Tmp> $x.count
0
PS E:\Tmp> $x = @((Get-CimInstance -Class Win32_DiskDrive -Filter 'InterfaceType = "USB"' -KeyOnly |
>>    Get-CimAssociatedInstance -ResultClassName Win32_DiskPartition -KeyOnly |
>>    Get-CimAssociatedInstance -ResultClassName Win32_LogicalDisk).DeviceID)
PS E:\Tmp> $x.count
1
PS E:\Tmp> write-host "---$x---"
------
PS E:\Tmp>
 

My Computer My Computer

At a glance

Windows 11
OS
Windows 11
look at 3,169 I had a "blond" moment" lol
 

My Computer My Computer

At a glance

Win11 24H2 IOT LTSC / Win11 Pro 25H2AMD Ryzen 7 8700G / Ryzen 7 8700G / Ryzen 8600GF5-6000J3636F16GX2-FX5 32GB / Lexar Ares RGB ...internal
OS
Win11 24H2 IOT LTSC / Win11 Pro 25H2
Computer type
PC/Desktop
Manufacturer/Model
Gigabyte x2 / Asus = Home builds
CPU
AMD Ryzen 7 8700G / Ryzen 7 8700G / Ryzen 8600G
Motherboard
Gigabyte B650 AORUS ELITE AX V2 / ASUS TUF GAMING B650-PLUS / B650 GAMING X AX V2
Memory
F5-6000J3636F16GX2-FX5 32GB / Lexar Ares RGB LD5BU016G-R6000GDLA 32GB / Kingston FURY Beast 32 GB DDR5-5600
Graphics Card(s)
internal
Sound Card
Realtek
Monitor(s) Displays
BenQ 27 L EW2780
Screen Resolution
1920x1080
Hard Drives
Many M.2's (WD)
PSU
be quiet! Pure Power 13 M 550W
Case
Chieftec HC-10B-OP
Cooling
Gelid Solutions Tranquillo 5, many Noctua's 12x12
Keyboard
Microsoft
Mouse
Cherry
Internet Speed
500 mbs
Browser
Vivaldi
Antivirus
Eset
Other Info
PC builder / repair / Trouble-shooter etc.
look at 3,169 I had a "blond" moment" lol
True, I forgot you had posted that
But, maybe Garlin will want to check it out, or not
In my usage pattern, I would like to check the Macrium staging folder and the ISO Macrium created
As for putting the ISO on a USB, I never encountered a problem while using Rufus that the USB with the ISO on it would not work
 

My Computer My Computer

At a glance

Windows 11
OS
Windows 11
+ CategoryInfo : InvalidData: (:) [Check-DriveVolume], ParameterBindingValidationException
+ FullyQualifiedErrorId : ParameterArgumentValidationErrorEmptyStringNotAllowed,Check-DriveVolume
Run this test script. Does it finish without errors?
 

Attachments

My Computer My Computer

At a glance

Windows 7
OS
Windows 7
Run this test script. Does it finish without errors?
Seems to do the job
Code:
PS E:\Tmp> powershell -nop -ep bypass -f E:\tmp\TEST.ps1  # no USB
Count: 0
PS E:\Tmp> powershell -nop -ep bypass -f E:\tmp\TEST.ps1  # inserted USB
Count: 1
|H|
PS E:\Tmp> powershell -nop -ep bypass -f E:\tmp\TEST.ps1  # removed USB
Count: 0
PS E:\Tmp>
 

My Computer My Computer

At a glance

Windows 11
OS
Windows 11
I replaced the the section in your Check_BootMedia script with your fix and works !
Thanks again and again and again !
 

My Computer My Computer

At a glance

Windows 11
OS
Windows 11
where { $_ -match '[A-Z]' }

Such a simple solutions !
And it can't affect anyone else's usage
Beautiful !!!
 

My Computer My Computer

At a glance

Windows 11
OS
Windows 11
In theory I shouldn't have to match by a valid letter character. Unless it's a stupid "null" which isn't a $null. Again.
 

My Computer My Computer

At a glance

Windows 7
OS
Windows 7
@garlin


I just wiped out my comp (software wise) Something about a winefi load problem
ERROR 0x0000225 when I try and boot to windows

I made a win 11 install USB on friends comp.
It starts the install then tells me the comp dooesn't support Secure boot (which it does)
Secure boot is enabled in the BIOS.
BIOS is set to UEFI Bios.

Problem started when I canceled a macrium Restore. Something about a winefi load problem
Tried using Macrium again... it just gets stuck loading high power something or other.

I'm guessing something with the keys in the BIOS?


Kinda need help asap.

Edit: In my BIOS Secure Boot is enabled and greyed out... I see no way to disable Secure Boot
 

My Computers My Computers

  • At a glance

    Win 11 Home ♦♦♦26200.8973 ♦♦♦♦♦♦♦25H2AMD Ryzen 7 3700XG.Skill (F4-3200C14D-16GTZKW)EVGA RTX 2070 (08G-P4-2171-KR)
    OS
    Win 11 Home ♦♦♦26200.8973 ♦♦♦♦♦♦♦25H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built by Ghot® [May 2020]
    CPU
    AMD Ryzen 7 3700X
    Motherboard
    Asus Pro WS X570-ACE (BIOS 5302)
    Memory
    G.Skill (F4-3200C14D-16GTZKW)
    Graphics Card(s)
    EVGA RTX 2070 (08G-P4-2171-KR)
    Sound Card
    Realtek ALC1220P / ALC S1220A
    Monitor(s) Displays
    Dell U3011 30"
    Screen Resolution
    2560 x 1600
    Hard Drives
    2x Samsung 860 EVO 500GB,
    WD 4TB Black FZBX - SATA III,
    WD 8TB Black FZBX - SATA III,
    DRW-24B1ST CD/DVD Burner
    PSU
    PC Power & Cooling 750W Quad EPS12V
    Case
    Cooler Master ATCS 840 Tower
    Cooling
    CM Hyper 212 EVO (push/pull)
    Keyboard
    Ducky DK9008 Shine II Blue LED
    Mouse
    Logitech Optical M-100
    Internet Speed
    300/300
    Browser
    Firefox (latest)
    Antivirus
    Bitdefender Total Security
    Other Info
    Speakers: Klipsch Pro Media 2.1
  • At a glance

    Windows XP Pro 32bit w/SP3AMD Athlon 64 X2 5000+ (OC'd @ 3.2Ghz)TWIN2X2048-6400C4DHX (2 x 1GB, DDR2 800)EVGA 256-P2-N758-TR GeForce 8600GT SSC
    Operating System
    Windows XP Pro 32bit w/SP3
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built by Ghot® (not in use)
    CPU
    AMD Athlon 64 X2 5000+ (OC'd @ 3.2Ghz)
    Motherboard
    ASUS M2N32-SLI Deluxe Wireless Edition
    Memory
    TWIN2X2048-6400C4DHX (2 x 1GB, DDR2 800)
    Graphics card(s)
    EVGA 256-P2-N758-TR GeForce 8600GT SSC
    Sound Card
    Onboard
    Monitor(s) Displays
    ViewSonic G90FB Black 19" Professional (CRT)
    Screen Resolution
    up to 2048 x 1536
    Hard Drives
    WD 36GB 10,000rpm Raptor SATA
    Seagate 80GB 7200rpm SATA
    Lite-On LTR-52246S CD/RW
    Lite-On LH-18A1P CD/DVD Burner
    PSU
    PC Power & Cooling Silencer 750 Quad EPS12V
    Case
    Generic Beige case, 80mm fans
    Cooling
    ZALMAN 9500A 92mm CPU Cooler
    Keyboard
    Logitech Classic Keybooard 200
    Mouse
    Logitech Optical M-BT96a
    Internet Speed
    300/300
    Browser
    Firefox 3.x ??
    Antivirus
    Symantec (Norton)
    Other Info
    Still assembled, still runs. Haven't turned it on for 15 years?
Run this test script. Does it finish without errors?
It finished normally with return 0 (no drive letter)when the Rufus created USB plugged in. With a Hasleo USB it returns the drive letter, and with the Ventoy USB it return two drive letters.
 

My Computer My Computer

At a glance

Windows 11 ProIntel Core Ultra16GBIntel(R) Arc Graphics
OS
Windows 11 Pro
Computer type
Laptop
Manufacturer/Model
ASUS Zenbook 14 OLED
CPU
Intel Core Ultra
Memory
16GB
Graphics Card(s)
Intel(R) Arc Graphics
Sound Card
Realtek High Definition Audio(SST)
Screen Resolution
2880 x 1800
Hard Drives
500 GB NVMe SSD
Internet Speed
1,500Mbps
Browser
Firefox, Edge
Antivirus
Windows Defender
@garlin
I made a win 11 install USB on friends comp.
It starts the install then tells me the comp dooesn't support Secure boot (which it does)
Secure boot is enabled in the BIOS.
BIOS is set to UEFI Bios.
Secure Boot keys are kept in the UEFI, outside of your OS. They persist no matter how many times you replaced a drive or reinstalled from scratch. And the install process doesn't touch any Secure Boot settings.

You made an USB drive on friend's PC. Was this ISO updated for CA 2023 while you were there? Maybe it's got the CA 2011 files for booting. Short term answer: temporarily Secure Boot so you can finish the install. Worry about it once you have a functional system.

With a full Windows, you can check if your Secure Boot status was the same as before the install (minus Secure Boot off). Then you can run the Check_BootMedia.ps1 script to confirm the install USB was updated.
 

My Computer My Computer

At a glance

Windows 7
OS
Windows 7
It finished normally with return 0 (no drive letter)when the Rufus created USB plugged in. With a Hasleo USB it returns the drive letter, and with the Ventoy USB it return two drive letters.
That's strange. I would imagine Rufus should show up, unless it's dependent on how the volumes are formatted or written. Gotta be some weird criteria for why Get-Volume doesn't always match a drive letter to an USB device.
 

My Computer My Computer

At a glance

Windows 7
OS
Windows 7
Short term answer: temporarily Secure Boot


Problem is that in my BIOS there is no way I can see to disable Secure Boot... it's greyed out... it says enabled?
CSM is enabled and set to UEFI and Legacy... and it's set to UEFI BIOS


Would changing it to "Other OS" disable Secure Boot?
 

My Computers My Computers

  • At a glance

    Win 11 Home ♦♦♦26200.8973 ♦♦♦♦♦♦♦25H2AMD Ryzen 7 3700XG.Skill (F4-3200C14D-16GTZKW)EVGA RTX 2070 (08G-P4-2171-KR)
    OS
    Win 11 Home ♦♦♦26200.8973 ♦♦♦♦♦♦♦25H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built by Ghot® [May 2020]
    CPU
    AMD Ryzen 7 3700X
    Motherboard
    Asus Pro WS X570-ACE (BIOS 5302)
    Memory
    G.Skill (F4-3200C14D-16GTZKW)
    Graphics Card(s)
    EVGA RTX 2070 (08G-P4-2171-KR)
    Sound Card
    Realtek ALC1220P / ALC S1220A
    Monitor(s) Displays
    Dell U3011 30"
    Screen Resolution
    2560 x 1600
    Hard Drives
    2x Samsung 860 EVO 500GB,
    WD 4TB Black FZBX - SATA III,
    WD 8TB Black FZBX - SATA III,
    DRW-24B1ST CD/DVD Burner
    PSU
    PC Power & Cooling 750W Quad EPS12V
    Case
    Cooler Master ATCS 840 Tower
    Cooling
    CM Hyper 212 EVO (push/pull)
    Keyboard
    Ducky DK9008 Shine II Blue LED
    Mouse
    Logitech Optical M-100
    Internet Speed
    300/300
    Browser
    Firefox (latest)
    Antivirus
    Bitdefender Total Security
    Other Info
    Speakers: Klipsch Pro Media 2.1
  • At a glance

    Windows XP Pro 32bit w/SP3AMD Athlon 64 X2 5000+ (OC'd @ 3.2Ghz)TWIN2X2048-6400C4DHX (2 x 1GB, DDR2 800)EVGA 256-P2-N758-TR GeForce 8600GT SSC
    Operating System
    Windows XP Pro 32bit w/SP3
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built by Ghot® (not in use)
    CPU
    AMD Athlon 64 X2 5000+ (OC'd @ 3.2Ghz)
    Motherboard
    ASUS M2N32-SLI Deluxe Wireless Edition
    Memory
    TWIN2X2048-6400C4DHX (2 x 1GB, DDR2 800)
    Graphics card(s)
    EVGA 256-P2-N758-TR GeForce 8600GT SSC
    Sound Card
    Onboard
    Monitor(s) Displays
    ViewSonic G90FB Black 19" Professional (CRT)
    Screen Resolution
    up to 2048 x 1536
    Hard Drives
    WD 36GB 10,000rpm Raptor SATA
    Seagate 80GB 7200rpm SATA
    Lite-On LTR-52246S CD/RW
    Lite-On LH-18A1P CD/DVD Burner
    PSU
    PC Power & Cooling Silencer 750 Quad EPS12V
    Case
    Generic Beige case, 80mm fans
    Cooling
    ZALMAN 9500A 92mm CPU Cooler
    Keyboard
    Logitech Classic Keybooard 200
    Mouse
    Logitech Optical M-BT96a
    Internet Speed
    300/300
    Browser
    Firefox 3.x ??
    Antivirus
    Symantec (Norton)
    Other Info
    Still assembled, still runs. Haven't turned it on for 15 years?
Problem is that in my BIOS there is no way I can see to disable Secure Boot... it's greyed out... it says enabled?
CSM is enabled and set to UEFI and Legacy... and it's set to UEFI BIOS


Would changing it to "Other OS" disable Secure Boot?
Secure Boot is only allowed in pure UEFI mode. No CSM or UEFI + CSM modes.
 

My Computer My Computer

At a glance

Windows 7
OS
Windows 7
Secure Boot is only allowed in pure UEFI mode. No CSM or UEFI + CSM modes.


I'll try that now

Win 11 is installing
:-)
 

My Computers My Computers

  • At a glance

    Win 11 Home ♦♦♦26200.8973 ♦♦♦♦♦♦♦25H2AMD Ryzen 7 3700XG.Skill (F4-3200C14D-16GTZKW)EVGA RTX 2070 (08G-P4-2171-KR)
    OS
    Win 11 Home ♦♦♦26200.8973 ♦♦♦♦♦♦♦25H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built by Ghot® [May 2020]
    CPU
    AMD Ryzen 7 3700X
    Motherboard
    Asus Pro WS X570-ACE (BIOS 5302)
    Memory
    G.Skill (F4-3200C14D-16GTZKW)
    Graphics Card(s)
    EVGA RTX 2070 (08G-P4-2171-KR)
    Sound Card
    Realtek ALC1220P / ALC S1220A
    Monitor(s) Displays
    Dell U3011 30"
    Screen Resolution
    2560 x 1600
    Hard Drives
    2x Samsung 860 EVO 500GB,
    WD 4TB Black FZBX - SATA III,
    WD 8TB Black FZBX - SATA III,
    DRW-24B1ST CD/DVD Burner
    PSU
    PC Power & Cooling 750W Quad EPS12V
    Case
    Cooler Master ATCS 840 Tower
    Cooling
    CM Hyper 212 EVO (push/pull)
    Keyboard
    Ducky DK9008 Shine II Blue LED
    Mouse
    Logitech Optical M-100
    Internet Speed
    300/300
    Browser
    Firefox (latest)
    Antivirus
    Bitdefender Total Security
    Other Info
    Speakers: Klipsch Pro Media 2.1
  • At a glance

    Windows XP Pro 32bit w/SP3AMD Athlon 64 X2 5000+ (OC'd @ 3.2Ghz)TWIN2X2048-6400C4DHX (2 x 1GB, DDR2 800)EVGA 256-P2-N758-TR GeForce 8600GT SSC
    Operating System
    Windows XP Pro 32bit w/SP3
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built by Ghot® (not in use)
    CPU
    AMD Athlon 64 X2 5000+ (OC'd @ 3.2Ghz)
    Motherboard
    ASUS M2N32-SLI Deluxe Wireless Edition
    Memory
    TWIN2X2048-6400C4DHX (2 x 1GB, DDR2 800)
    Graphics card(s)
    EVGA 256-P2-N758-TR GeForce 8600GT SSC
    Sound Card
    Onboard
    Monitor(s) Displays
    ViewSonic G90FB Black 19" Professional (CRT)
    Screen Resolution
    up to 2048 x 1536
    Hard Drives
    WD 36GB 10,000rpm Raptor SATA
    Seagate 80GB 7200rpm SATA
    Lite-On LTR-52246S CD/RW
    Lite-On LH-18A1P CD/DVD Burner
    PSU
    PC Power & Cooling Silencer 750 Quad EPS12V
    Case
    Generic Beige case, 80mm fans
    Cooling
    ZALMAN 9500A 92mm CPU Cooler
    Keyboard
    Logitech Classic Keybooard 200
    Mouse
    Logitech Optical M-BT96a
    Internet Speed
    300/300
    Browser
    Firefox 3.x ??
    Antivirus
    Symantec (Norton)
    Other Info
    Still assembled, still runs. Haven't turned it on for 15 years?
@Quandary Are the Rufus and Ventoy drives using the same USB drive model? Or different models?

I'm wondering if you want to try an experiment. Remake the Rufus drive as a Ventoy drive. Remake the Ventoy drive as a Rufus drive. Does the problem follow how each tool formats the drive, or is it something based on specific drive models?
 

My Computer My Computer

At a glance

Windows 7
OS
Windows 7
@garlin


Ok, I'm on Win 11 (new). I'm going to try to restore my backup
 

My Computers My Computers

  • At a glance

    Win 11 Home ♦♦♦26200.8973 ♦♦♦♦♦♦♦25H2AMD Ryzen 7 3700XG.Skill (F4-3200C14D-16GTZKW)EVGA RTX 2070 (08G-P4-2171-KR)
    OS
    Win 11 Home ♦♦♦26200.8973 ♦♦♦♦♦♦♦25H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built by Ghot® [May 2020]
    CPU
    AMD Ryzen 7 3700X
    Motherboard
    Asus Pro WS X570-ACE (BIOS 5302)
    Memory
    G.Skill (F4-3200C14D-16GTZKW)
    Graphics Card(s)
    EVGA RTX 2070 (08G-P4-2171-KR)
    Sound Card
    Realtek ALC1220P / ALC S1220A
    Monitor(s) Displays
    Dell U3011 30"
    Screen Resolution
    2560 x 1600
    Hard Drives
    2x Samsung 860 EVO 500GB,
    WD 4TB Black FZBX - SATA III,
    WD 8TB Black FZBX - SATA III,
    DRW-24B1ST CD/DVD Burner
    PSU
    PC Power & Cooling 750W Quad EPS12V
    Case
    Cooler Master ATCS 840 Tower
    Cooling
    CM Hyper 212 EVO (push/pull)
    Keyboard
    Ducky DK9008 Shine II Blue LED
    Mouse
    Logitech Optical M-100
    Internet Speed
    300/300
    Browser
    Firefox (latest)
    Antivirus
    Bitdefender Total Security
    Other Info
    Speakers: Klipsch Pro Media 2.1
  • At a glance

    Windows XP Pro 32bit w/SP3AMD Athlon 64 X2 5000+ (OC'd @ 3.2Ghz)TWIN2X2048-6400C4DHX (2 x 1GB, DDR2 800)EVGA 256-P2-N758-TR GeForce 8600GT SSC
    Operating System
    Windows XP Pro 32bit w/SP3
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built by Ghot® (not in use)
    CPU
    AMD Athlon 64 X2 5000+ (OC'd @ 3.2Ghz)
    Motherboard
    ASUS M2N32-SLI Deluxe Wireless Edition
    Memory
    TWIN2X2048-6400C4DHX (2 x 1GB, DDR2 800)
    Graphics card(s)
    EVGA 256-P2-N758-TR GeForce 8600GT SSC
    Sound Card
    Onboard
    Monitor(s) Displays
    ViewSonic G90FB Black 19" Professional (CRT)
    Screen Resolution
    up to 2048 x 1536
    Hard Drives
    WD 36GB 10,000rpm Raptor SATA
    Seagate 80GB 7200rpm SATA
    Lite-On LTR-52246S CD/RW
    Lite-On LH-18A1P CD/DVD Burner
    PSU
    PC Power & Cooling Silencer 750 Quad EPS12V
    Case
    Generic Beige case, 80mm fans
    Cooling
    ZALMAN 9500A 92mm CPU Cooler
    Keyboard
    Logitech Classic Keybooard 200
    Mouse
    Logitech Optical M-BT96a
    Internet Speed
    300/300
    Browser
    Firefox 3.x ??
    Antivirus
    Symantec (Norton)
    Other Info
    Still assembled, still runs. Haven't turned it on for 15 years?
Back
Top Bottom