1. 시디키 교체 방법
2. 시디키 확인 방법 (2005 이후부터는 다르다)
https://blog.sqlauthority.com/2007/02/28/sql-server-t-sql-script-to-find-the-cd-key-from-registry/
2000는 본문의 내용이고, 2005 이후는 댓글에 있는 내용이다.
USE master
GO
EXEC xp_regread 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Microsoft
SQL Server\80\Registration','CD_KEY'
GO
<- 2000 확인 방법
2000 은 저렇게 확인하고 2005와 2008 은 다르게 확인해야 합니다.
저장된 값은 base24로 encode 되어 있기에 decode 해야지 올바른 값을 확인 할 수 있습니다.
(파워쉘로 확인)
regpath는 버전마다 다르게 해야한다.
‘HKEY_LOCAL_MACHINE’,’SOFTWARE\Microsoft\Microsoft SQL Server\110\Tools\Setup’,’ProductCode’
2012의 경우 아래 내용중 패스 및 24번째 라인을 다음과 같이 수정하면 된다.
It worked for me on SQL 2012 when I fixed line 24 to $binArray = ($data.uValue)[0..66]
Maybe it would help somebody else.
Here is the power shell script to get CD key from SQL Server 2008 and R2 written by Jakob Bindslet, which I found while searching…
function Get-SQLserverKey {
## function to retrieve the license key of a SQL 2008 Server.
## by Jakob Bindslet (jakob@bindslet.dk)
param ($targets = “.”)
$hklm = 2147483650
$regPath = “SOFTWARE\Microsoft\Microsoft SQL Server\100\Tools\Setup”
$regValue1 = “DigitalProductId”
$regValue2 = “PatchLevel”
$regValue3 = “Edition”
Foreach ($target in $targets) {
$productKey = $null
$win32os = $null
$wmi = [WMIClass]”\\$target\root\default:stdRegProv”
$data = $wmi.GetBinaryValue($hklm,$regPath,$regValue1)
[string]$SQLver = $wmi.GetstringValue($hklm,$regPath,$regValue2).svalue
[string]$SQLedition = $wmi.GetstringValue($hklm,$regPath,$regValue3).svalue
$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 OSCaption -value $win32os.Caption
$obj | Add-Member Noteproperty OSArch -value $win32os.OSArchitecture
$obj | Add-Member Noteproperty SQLver -value $SQLver
$obj | Add-Member Noteproperty SQLedition -value $SQLedition
$obj | Add-Member Noteproperty ProductKey -value $productkey
$obj
}
}
Use the function to retrieve the Product Key from the local PC:
Get-SQLserverKey
'Database > MS-SQL' 카테고리의 다른 글
[스크랩] TYPE:Error EVENT:7886 클라이언트에 데이터를 보내는 동안 큰 개체에서 읽기 작업이 실패했습니다. (0) | 2017.01.25 |
---|---|
[스크랩] MSSQL 에러로그 남기지 않기 (0) | 2017.01.18 |
[스크랩] sp_lock, sys.dm_os_wait_stats(Transact-SQL) (0) | 2016.11.22 |
[스크랩] MSSQL sys.dm_exec_requests(Transact-SQL) (0) | 2016.11.22 |
[스크랩] MS 추가지원 일반지원 차이 (0) | 2016.11.16 |