본문 바로가기
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
조회 수 1026 추천 수 0

3.2 PowerShell을 실행후, Set-ExecutionPolicy Unrestricted 와 Set-ExecutionPolicy RemoteSigned 를 각각 실행 합니다.

 


3,3 위 .PS1파일을 바로 실행하거나, (방법은 이곳: http://technet.microsoft.com/en-us/library/ee176949.aspx 참조)

         ㄴ 복사후 PS창에 붙여 넣기 합니다. (아래그림참조)

 

--------------------


+++PS 스크립트 펼치기

function Get-WindowsKey {
    param ($targets = ".")
    $hklm = 2147483650
    $regPath = "Software\Microsoft\Windows NT\CurrentVersion\DefaultProductKey"
    $regValue = "DigitalProductId4"
    Foreach ($target in $targets) {
        $productKey = $null
        $win32os = $null
        $wmi = [WMIClass]"\\$target
oot\default:stdRegProv
"
        $data = $wmi.GetBinaryValue($hklm,$regPath,$regValue)
        $binArray = ($data.uValue)[52..66]
        $charsArray = "B","C","D","F","G","H","J","K","M","P","Q","R","T","V","W","X","Y","2","3","4","6","7","8","9"
        ## decrypt base24 encoded binary data
        For ($i = 24; $i -ge 0; $i--) {
            $k = 0
            For ($j = 14; $j -ge 0; $j--) {
                $k = $k * 256 -bxor $binArray[$j]
                $binArray[$j] = [math]::truncate($k / 24)
                $k = $k % 24
            }
            $productKey = $charsArray[$k] + $productKey
            If (($i % 5 -eq 0) -and ($i -ne 0)) {
                $productKey = "-" + $productKey
            }
        }
        $win32os = Get-WmiObject Win32_OperatingSystem -computer $target
        $obj = New-Object Object
        $obj | Add-Member Noteproperty Computer -value $target
        $obj | Add-Member Noteproperty Caption -value $win32os.Caption
        $obj | Add-Member Noteproperty CSDVersion -value $win32os.CSDVersion
        $obj | Add-Member Noteproperty OSArch -value $win32os.OSArchitecture
        $obj | Add-Member Noteproperty BuildNumber -value $win32os.BuildNumber
        $obj | Add-Member Noteproperty RegisteredTo -value $win32os.RegisteredUser
        $obj | Add-Member Noteproperty ProductID -value $win32os.SerialNumber
        $obj | Add-Member Noteproperty ProductKey -value $productkey
        $obj
    }
}

 

--------------------


3.4    Get-WindowsKey 커맨드로 CD-Key확인. 이상 끝.


  1. No Image

    윈도우7 제품키 찾기 파워셀로 시디키 찾기

    3.2 PowerShell을 실행후, Set-ExecutionPolicy Unrestricted 와 Set-ExecutionPolicy RemoteSigned 를 각각 실행 합니다.   3,3 위 .PS1파일을 바로 실행하거나, (방법은 이곳: http://technet.microsoft.com/en-us/library/ee176949.aspx 참조)          ㄴ ...
    Date2016.03.20 Category윈도우 Views1026
    Read More
  2. No Image

    윈도우XP 시디키 찾기 (Magical Jelly Bean Keyfinder v1.41)

    윈도우XP 시디키 찾기 (Magical Jelly Bean Keyfinder v1.41)   Zip-Password : xtrm
    Date2016.03.20 Category윈도우 Views477
    Read More
  3. No Image

    윈도우XP 암호풀기

    윈도우 XP 암호풀기     방법 1) 먼저Administrator로 부팅 가능할때1. 컴퓨터 시작시 F8 을 눌러서 안전모드를 선택해서 부팅을 합니다.2. 사용자 계정에서 Administrator 로 로그인 합니다.3. 안전모드로 부팅 후..   제어판 → 사용자 계정에서 암호가 걸린 ...
    Date2016.03.20 Category윈도우 Views1788
    Read More
Board Pagination Prev 1 ... 2 3 4 5 6 7 8 9 10 11 Next
/ 11