<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Topics tagged with windows]]></title><description><![CDATA[A list of topics that have been tagged with windows]]></description><link>https://community.secnto.com//tags/windows</link><generator>RSS for Node</generator><lastBuildDate>Mon, 08 Jun 2026 20:47:18 GMT</lastBuildDate><atom:link href="https://community.secnto.com//tags/windows.rss" rel="self" type="application/rss+xml"/><pubDate>Invalid Date</pubDate><ttl>60</ttl><item><title><![CDATA[Windows troubleshooting discussions for **March 2026**:]]></title><description><![CDATA[said in Windows troubleshooting discussions for **March 2026**::

Would you like me to help you set up a third check for “Drive Health” (SSD wear level) to add to this monthly monitor, or are you feeling fully prepared for 2026?

Adding a Drive Health Monitor to your monthly shield is a brilliant move. SSDs have a finite lifespan based on “Write Endurance” (how many times you can save data), and catching a high wear level early is the only way to prevent total data loss.
Here is the code and setup to add this third layer of protection to your March 2026 monitor.

🛡️ Step 1: Update your Health Script
We will add a new section to your C:\WindowsHealthCheck.ps1 file. This new code checks for “Wear Level”—a percentage where 0 is a brand new drive and 100 is a drive that is officially “worn out” and likely to fail.
Open your C:\WindowsHealthCheck.ps1 and replace the code with this updated version:
# --- CHECK 1: SECURE BOOT 2026 CERTIFICATE ---
$sbReady = [System.Text.Encoding]::ASCII.GetString((Get-SecureBootUEFI db).bytes) -match 'Windows UEFI CA 2023'

# --- CHECK 2: RECOVERY PARTITION SPACE ---
$info = reagentc /info
$recReady = $false
if($info -match 'partition(\d+)') {
    $pNum = $matches[1]
    $part = Get-Partition | Where-Object {$_.PartitionNumber -eq $pNum -and $_.GptType -eq '{de94bba4-06d1-4d40-a16a-bfd50179d6ac}'}
    $freeMB = (Get-Volume -UniqueId $part.AccessPaths[0]).SizeRemaining / 1MB
    if($freeMB -gt 250) { $recReady = $true }
}

# --- CHECK 3: SSD WEAR LEVEL ---
# We look for any disk where wear is above 90% (nearing end of life)
$ssdWear = Get-PhysicalDisk | Get-StorageReliabilityCounter | Where-Object {$_.Wear -gt 90}
$driveHealthy = if($null -eq $ssdWear) { $true } else { $false }

# --- ONLY POPUP IF SOMETHING IS WRONG ---
if (-not $sbReady -or -not $recReady -or -not $driveHealthy) {
    $msg = "WINDOWS HEALTH ALERT (MARCH 2026):`n`n"
    if (-not $sbReady) { $msg += "- Secure Boot Certificate 2023 is MISSING.`n" }
    if (-not $recReady) { $msg += "- Recovery Space is LOW (Under 250MB).`n" }
    if (-not $driveHealthy) { $msg += "- CRITICAL: SSD is over 90% worn out. Replace soon!`n" }
    $msg += "`nPlease run your desktop troubleshooting shortcuts for details."
    
    Add-Type -AssemblyName PresentationFramework
    [System.Windows.MessageBox]::Show($msg, "Windows Health Monitor", "OK", "Warning")
}



🚀 Step 2: The “Instant Wear Check” Shortcut
If you want a shortcut just to see your drive’s “Age” right now, create a new shortcut on your desktop with this command:

Location: powershell.exe -NoExit -Command "Get-PhysicalDisk | Select-Object FriendlyName, HealthStatus | Format-Table; Get-PhysicalDisk | Get-StorageReliabilityCounter | Select-Object Wear, ReadErrorsTotal, Temperature | Format-List"
Name: Check Drive Age
Run as Admin: (Required)

How to read the results:

Wear: 0–10 = Brand New; 50 = Mid-life; 90+ = Dangerous.
ReadErrorsTotal: This should ideally be 0. If you see a high number here, your drive is already failing sectors regardless of its age.
Temperature: Anything under 60°C is normal. If your SSD is consistently hitting 75°C+, you need better airflow or a heatsink to prevent it from dying early.


🌟 You are now 2026-Proof!
Your PC is now protected by a “Triple-Threat” automated monitor:

Security: Watching the June Secure Boot deadline.
Maintenance: Ensuring the Recovery Partition can handle monthly fixes.
Hardware: Monitoring your SSD’s physical heart to prevent sudden death.

Would you like me to show you how to set up a “Cloud Backup” alert so you are reminded to save your files if the SSD wear ever hits that 90% mark?
]]></description><link>https://community.secnto.com//topic/2835/windows-troubleshooting-discussions-for-march-2026</link><guid isPermaLink="true">https://community.secnto.com//topic/2835/windows-troubleshooting-discussions-for-march-2026</guid><dc:creator><![CDATA[Punjabi Topic]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[How do you fix “runtimeError: package fails to pass a sanity check” for numpy and pandas?]]></title><description><![CDATA[@wafa-sehar said in How do you fix “runtimeError: package fails to pass a sanity check” for numpy and pandas?:

can anyone guide me please.
RuntimeError: The current Numpy installation ('...\\venv\\lib\\site-packages\\numpy\\__init__.py') fails to pass a sanity check due to a bug in the windows runtime.

We have also tried multiple versions of Python (3.8.6 and 3.9.0) and numpy and pandas. I am currently using PyCharm to do all this.

This error occurs when using python3.9 and numpy1.19.4 So uninstalling numpy1.19.4 and installing 1.19.3 will work.
]]></description><link>https://community.secnto.com//topic/2093/how-do-you-fix-runtimeerror-package-fails-to-pass-a-sanity-check-for-numpy-and-pandas</link><guid isPermaLink="true">https://community.secnto.com//topic/2093/how-do-you-fix-runtimeerror-package-fails-to-pass-a-sanity-check-for-numpy-and-pandas</guid><dc:creator><![CDATA[zaasmi]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Which disk format work for both mac and windows]]></title><description><![CDATA[<p dir="auto">How to Format an External Drive in OS X</p>
<ol>
<li>
<p dir="auto">Connect the drive to the Mac.</p>
</li>
<li>
<p dir="auto">Open Disk Utility. The easiest way to do that is hit CMD and the space bar at the same time and type in Disk Utility to find the program.</p>
</li>
<li>
<p dir="auto">Select the drive you want to format.<br />
<img src="https://i.imgur.com/vTPGJRr.png" alt="2ff9b81b-c45b-465b-a22d-53000af24b81-image.png" class=" img-fluid img-markdown" /> [center]Disk Utility[/center]</p>
</li>
<li>
<p dir="auto">Click Erase.<br />
<img src="https://i.imgur.com/F5aBWhB.png" alt="0237eb8d-f305-43cc-b267-dde00e6610a7-image.png" class=" img-fluid img-markdown" /><br />
If you don’t plan on using the drive for Time Machine, skip steps 5 to 11 below and continue with step 12.</p>
</li>
<li>
<p dir="auto">Give the drive a descriptive name and leave the default settings: OS X Extended format and GUI partition map. These will format the drive in OS X’s HFS + file type so it will be compatible with Time Machine.</p>
</li>
<li>
<p dir="auto">Click Erase and OS X will format the drive.</p>
</li>
<li>
<p dir="auto">With the drive selected in Disk Utility, click Partition.<br />
<img src="https://i.imgur.com/hra1niK.png" alt="64ccf995-983f-47dd-85dd-bc83afc1ca5e-image.png" class=" img-fluid img-markdown" /></p>
</li>
<li>
<p dir="auto">Enter the amount of space you want to set aside for Time Machine. In this example, we’re shrinking the Time Machine partition to 128 GB instead of allowing Time Machine to take up the whole drive.<br />
<img src="https://i.imgur.com/LXKXLcm.png" alt="3f7aa54e-67fa-4ebe-a36d-2ed7e474eb8a-image.png" class=" img-fluid img-markdown" /><br />
[center]disk utility time machine partition[/center]</p>
</li>
<li>
<p dir="auto">Click Apply.</p>
</li>
<li>
<p dir="auto">Select the new untitled partition so we can format it as exFAT for use with both Mac and Windows.<br />
<img src="https://i.imgur.com/MMwYjPl.png" alt="94933520-e658-4169-87be-8a6bd5ff85e0-image.png" class=" img-fluid img-markdown" /> [center]disk utility untitled partition[/center]</p>
</li>
<li>
<p dir="auto">Click Erase.</p>
</li>
<li>
<p dir="auto">Give the partition a name and select exFAT for the format.<br />
<img src="https://i.imgur.com/gJdhKYL.png" alt="daa1b109-e919-42ec-91f2-d26fd8c3389b-image.png" class=" img-fluid img-markdown" /><br />
[center]disk utility exfat partition[/center]</p>
</li>
<li>
<p dir="auto">Click Erase to finish.<br />
Your exFAT-formatted drive or partition can now be used for both Windows and Mac. Note that using a drive frequently between Windows and Mac could increase the chances of file corruption, so make sure you have backups of the files on the shared drive and be extra careful about safely ejecting the drive before disconnecting it from your computer.</p>
</li>
</ol>
]]></description><link>https://community.secnto.com//topic/468/which-disk-format-work-for-both-mac-and-windows</link><guid isPermaLink="true">https://community.secnto.com//topic/468/which-disk-format-work-for-both-mac-and-windows</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Invalid Date</pubDate></item></channel></rss>