- Have your BitLocker 48-digit key ready (if device encryption is on).
- Boot a Windows USB installer, then press Shift+F10 at the first Setup screen to open Command Prompt.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // YouTube Comments Extractor - With Full Reply Support | |
| // Run this in the browser console while on a YouTube video page | |
| async function extractAllYouTubeComments() { | |
| console.clear(); | |
| console.log('%c🎬 YouTube Comments Extractor (With Replies)', 'font-size: 16px; font-weight: bold; color: #00ff00'); | |
| // First, expand ALL "Show replies" buttons | |
| console.log('📂 Expanding all reply threads...'); | |
| let expandCount = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # --- Unlink Microsoft account from a local profile (safe if some keys don't exist) --- | |
| # 0) Optional restore point (no error if disabled) | |
| try { Checkpoint-Computer -Description "Before_unlink_MSA" -RestorePointType MODIFY_SETTINGS } catch {} | |
| # 1) Backup what exists | |
| if (Test-Path HKCU:\Software\Microsoft\IdentityCRL) { | |
| reg export HKCU\Software\Microsoft\IdentityCRL "$env:USERPROFILE\Desktop\IdentityCRL_Backup.reg" /y | Out-Null | |
| } | |
| if (Test-Path HKCU:\Software\Microsoft\Windows\CurrentVersion\AADTokenBroker) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (async () => { | |
| const sleep = (ms) => new Promise(r => setTimeout(r, ms)); | |
| // ---------- Deep selectors (shadow roots + same-origin iframes) ---------- | |
| const deepAll = (sel) => { | |
| const out = []; | |
| const visit = (root) => { | |
| if (!root) return; | |
| out.push(...root.querySelectorAll(sel)); | |
| for (const el of root.querySelectorAll('*')) if (el.shadowRoot) visit(el.shadowRoot); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [CmdletBinding()] | |
| param( | |
| [Parameter(Mandatory=$true)] | |
| [string]$PortableDir, # e.g. C:\Users\ASUS\Downloads\Compressed\GoogleChromePortable | |
| [string]$ProfileDir = "C:\Chrome138Profile", | |
| [switch]$DisableUpdater # Optional: stop & disable Google Update services/tasks | |
| ) | |
| $ErrorActionPreference = 'Stop' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ~$ nvidia-smi | |
| Fri Aug 1 23:43:49 2025 | |
| +-----------------------------------------------------------------------------------------+ | |
| | NVIDIA-SMI 570.133.07 Driver Version: 570.133.07 CUDA Version: 12.8 | | |
| |-----------------------------------------+------------------------+----------------------+ | |
| | GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC | | |
| | Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. | | |
| | | | MIG M. | | |
| |=========================================+========================+======================| | |
| | 0 NVIDIA GeForce RTX 5070 Ti On | 00000000:01:00.0 Off | N/A | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ~$ nvidia-smi | |
| Fri Aug 1 23:24:07 2025 | |
| +-----------------------------------------------------------------------------------------+ | |
| | NVIDIA-SMI 570.144 Driver Version: 570.144 CUDA Version: 12.8 | | |
| |-----------------------------------------+------------------------+----------------------+ | |
| | GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC | | |
| | Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. | | |
| | | | MIG M. | | |
| |=========================================+========================+======================| | |
| | 0 NVIDIA GeForce RTX 5070 On | 00000000:83:00.0 Off | N/A | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ~$ nvidia-smi | |
| Fri Aug 1 22:57:17 2025 | |
| +-----------------------------------------------------------------------------------------+ | |
| | NVIDIA-SMI 570.169 Driver Version: 570.169 CUDA Version: 12.8 | | |
| |-----------------------------------------+------------------------+----------------------+ | |
| | GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC | | |
| | Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. | | |
| | | | MIG M. | | |
| |=========================================+========================+======================| | |
| | 0 NVIDIA GeForce RTX 5060 Ti On | 00000000:01:00.0 Off | N/A | |
NewerOlder