Skip to content

Instantly share code, notes, and snippets.

View GlassGhost's full-sized avatar

GlassGhost GlassGhost

View GitHub Profile
@echo off
title Activate Windows 10 ALL versions for FREE!&cls&echo ============================================================================&echo #Project: Activating Microsoft software products for FREE without software&echo ============================================================================&echo.&echo #Supported products:&echo - Windows 10 Home&echo - Windows 10 Home N&echo - Windows 10 Home Single Language&echo - Windows 10 Home Country Specific&echo - Windows 10 Professional&echo - Windows 10 Professional N&echo - Windows 10 Education N&echo - Windows 10 Education N&echo - Windows 10 Enterprise&echo - Windows 10 Enterprise N&echo - Windows 10 Enterprise LTSB&echo - Windows 10 Enterprise LTSB N&echo.&echo.&echo ============================================================================&echo Activating your Windows...&cscript //nologo slmgr.vbs /upk >nul&wmic os | findstr /I "enterprise" >nul
if %errorlevel%==0 (cscript //nologo slmgr.vbs /ipk NPPR9-FWDCX-D2C8J-H872K-2YT43 >nul&cscript //nolog
' VBS Script to get the Windows(R) 7 Product Key from a PC's registry.
'
' Save the VBScript as "getWin7Key.vbs" somewhere on your Windows7 PC.
' Now, when you double-click the local script file an alertbox pops up
' displaying the product key stored in the machine's Windows registry.
'
'http://www.howtogeek.com/124286/how-to-uninstall-your-windows-product-key-before-you-sell-your-pc/
'http://goo.gl/x3eO0x
Set WshShell = WScript.CreateObject("WScript.Shell")
@GlassGhost
GlassGhost / DRIVERS
Last active August 29, 2015 14:17 — forked from anonymous/lshw.txt
Chipset:
http://support.amd.com/en-us/download/mobile?os=Windows%207%20-%2064
Graphics:
http://support.amd.com/en-us/download/mobile?os=Windows%207%20-%2064
Touchpad:
http://www.synaptics.com/en/drivers.php
RTL8188EE Wireless Network Adapter:
@GlassGhost
GlassGhost / sha12.scm
Last active August 29, 2015 14:10 — forked from cky/sha12.scm
;;;; SHA-1 and SHA-2 implementations.
;;;; Uses R7RS bytevector and byte I/O interfaces.
;;;; Requires SRFIs 1, 26, 43, and 60.
;;; Auxiliary definitions to avoid having to use giant tables of constants.
(define primes80 '(2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73
79 83 89 97 101 103 107 109 113 127 131 137 139 149 151 157
163 167 173 179 181 191 193 197 199 211 223 227 229 233 239
241 251 257 263 269 271 277 281 283 293 307 311 313 317 331