📖 如何提取脚本源码?

默认运行命令会直接执行脚本。若要下载源码,请使用下方命令:

🚀 提取命令 (PowerShell)

$f="your_script.bat"; $c=(iwr "https://script-hub.101963.xyz/$([IO.Path]::GetFileNameWithoutExtension($f))" -UseBasicParsing).Content; if($c -match '\$b = "([^"]+)"') { [IO.File]::WriteAllBytes($f, [Convert]::FromBase64String($matches[1])); Write-Host "✅ 提取成功: $f" -ForegroundColor Green } else { Write-Host "❌ 失败: 未找到数据" -ForegroundColor Red }

💡 使用说明:

  1. 复制命令。
  2. 修改开头的 $f="你的文件名.后缀"
  3. 在 PowerShell 中执行。