f 터진수박 (Burst Watermelon) :: '윈도우7' 태그의 글 목록
반응형

▶ 윈도우 제품키를 잃어버렸을 경우

 

윈도우 XP, Vista, 7 제품키 확인 방법

  • 이 글 아래에 있는 소스코드를 복사하여 (코드부분 오른쪽 상단 "View source" 아이콘을 클릭하여 마우스로 코드 전체를 복사합니다) 윈도우에 기본 내장되어 있는 노트패드 프로그램을 열어서 복사한 코드를 붙여 넣습니다.

 

  • 복사한 코드를 "다른 이름으로 저장"하여 원하시는 파일명.vbs 확장자로 저장합니다.

 

  • 해당 파일명.VBS 파일을 윈도우 탐색기에서 실행합니다

 

  • 운영체제, 제품 ID, 설치된 윈도우 제품 번호가 나옵니다.

 

Option Explicit
Dim objshell,path,DigitalID, Result
Set objshell = CreateObject("WScript.Shell")
'Set registry key path
Path = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\"
'Registry key value
DigitalID = objshell.RegRead(Path & "DigitalProductId")
Dim ProductName,ProductID,ProductKey,ProductData
'Get ProductName, ProductID, ProductKey
ProductName = "Product Name: " & objshell.RegRead(Path & "ProductName")
ProductID = "Product ID: " & objshell.RegRead(Path & "ProductID")
ProductKey = "Installed Key: " & ConvertToKey(DigitalID)
ProductData = ProductName & vbNewLine & ProductID & vbNewLine & ProductKey
'Show messbox if save to a file
If vbYes = MsgBox(ProductData & vblf & vblf & "Save to a file?", vbYesNo + vbQuestion, "BackUp Windows Key Information") then
Save ProductData
End If
'Convert binary to chars
Function ConvertToKey(Key)
Const KeyOffset = 52
Dim isWin8, Maps, i, j, Current, KeyOutput, Last, keypart1, insert
'Check if OS is Windows 8
isWin8 = (Key(66) \ 6) And 1
Key(66) = (Key(66) And &HF7) Or ((isWin8 And 2) * 4)
i = 24
Maps = "BCDFGHJKMPQRTVWXY2346789"
Do
Current= 0
j = 14
Do
Current = Current* 256
Current = Key(j + KeyOffset) + Current
Key(j + KeyOffset) = (Current \ 24)
Current=Current Mod 24
j = j -1
Loop While j >= 0
i = i -1
KeyOutput = Mid(Maps,Current+ 1, 1) & KeyOutput
Last = Current
Loop While i >= 0
keypart1 = Mid(KeyOutput, 2, Last)
insert = "N"
KeyOutput = Replace(KeyOutput, keypart1, keypart1 & insert, 2, 1, 0)
If Last = 0 Then KeyOutput = insert & KeyOutput
ConvertToKey = Mid(KeyOutput, 1, 5) & "-" & Mid(KeyOutput, 6, 5) & "-" & Mid(KeyOutput, 11, 5) & "-" & Mid(KeyOutput, 16, 5) & "-" & Mid(KeyOutput, 21, 5)
End Function
'Save data to a file
Function Save(Data)
Dim fso, fName, txt,objshell,UserName
Set objshell = CreateObject("wscript.shell")
'Get current user name
UserName = objshell.ExpandEnvironmentStrings("%UserName%")
'Create a text file on desktop
fName = "C:\Users\" & UserName & "\Desktop\WindowsKeyInfo.txt"
Set fso = CreateObject("Scripting.FileSystemObject")
Set txt = fso.CreateTextFile(fName)
txt.Writeline Data
txt.Close
End Function

 

 

▶ 윈도우 8, 8.1, 10 제품키 확인 방법

    • 이 글 아래에 있는 소스코드를 복사하여 (코드부분 오른쪽 상단 "View source" 아이콘을 클릭하여 마우스로 코드 전체를 복사합니다) 윈도우에 기본 내장되어 있는 노트패드 프로그램을 열어서 복사한 코드를 붙여 넣습니다.
    • 복사한 코드를 "다른 이름으로 저장"하여 원하시는 파일명.vbs 확장자로 저장합니다.
    • 해당 파일명.VBS 파일을 윈도우 탐색기에서 실행합니다

  • 운영체제, 제품 ID, 설치된 윈도우 제품 번호가 나옵니다.
Option Explicit
Dim objshell,path,DigitalID, Result
Set objshell = CreateObject("WScript.Shell")
'Set registry key path
Path = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\"
'Registry key value
DigitalID = objshell.RegRead(Path & "DigitalProductId")
Dim ProductName,ProductID,ProductKey,ProductData
'Get ProductName, ProductID, ProductKey
ProductName = "Product Name: " & objshell.RegRead(Path & "ProductName")
ProductID = "Product ID: " & objshell.RegRead(Path & "ProductID")
ProductKey = "Installed Key: " & ConvertToKey(DigitalID)
ProductData = ProductName & vbNewLine & ProductID & vbNewLine & ProductKey
'Show messbox if save to a file
If vbYes = MsgBox(ProductData & vblf & vblf & "Save to a file?", vbYesNo + vbQuestion, "BackUp Windows Key Information") then
Save ProductData
End If
'Convert binary to chars
Function ConvertToKey(Key)
Const KeyOffset = 52
Dim isWin8, Maps, i, j, Current, KeyOutput, Last, keypart1, insert
'Check if OS is Windows 8
isWin8 = (Key(66) \ 6) And 1
Key(66) = (Key(66) And &HF7) Or ((isWin8 And 2) * 4)
i = 24
Maps = "BCDFGHJKMPQRTVWXY2346789"
Do
Current= 0
j = 14
Do
Current = Current* 256
Current = Key(j + KeyOffset) + Current
Key(j + KeyOffset) = (Current \ 24)
Current=Current Mod 24
j = j -1
Loop While j >= 0
i = i -1
KeyOutput = Mid(Maps,Current+ 1, 1) & KeyOutput
Last = Current
Loop While i >= 0
keypart1 = Mid(KeyOutput, 2, Last)
insert = "N"
KeyOutput = Replace(KeyOutput, keypart1, keypart1 & insert, 2, 1, 0)
If Last = 0 Then KeyOutput = insert & KeyOutput
ConvertToKey = Mid(KeyOutput, 1, 5) & "-" & Mid(KeyOutput, 6, 5) & "-" & Mid(KeyOutput, 11, 5) & "-" & Mid(KeyOutput, 16, 5) & "-" & Mid(KeyOutput, 21, 5)
End Function
'Save data to a file
Function Save(Data)
Dim fso, fName, txt,objshell,UserName
Set objshell = CreateObject("wscript.shell")
'Get current user name
UserName = objshell.ExpandEnvironmentStrings("%UserName%")
'Create a text file on desktop
fName = "C:\Users\" & UserName & "\Desktop\WindowsKeyInfo.txt"
Set fso = CreateObject("Scripting.FileSystemObject")
Set txt = fso.CreateTextFile(fName)
txt.Writeline Data
txt.Close
End Function

 

▶ 윈도우 제품키 찾는 방법 동영상

youtu.be/f9rJvgvX8pE

 

 

업데이트 글 보기 : http://GTURL.iptime.org

반응형
블로그 이미지

Burst Watermelon

교육의 모든 정보,투자,부동산,유용한 정보들

,
반응형

윈도우 7, 8.1, 10과 오피스 7 ~ 2016 버전 다운받기 (Windows and Microsoft office downloader)

 

윈도우와 오피스 프로그램을 직접 찾아서 다운받을 필요없이 간편하게 윈도우 및 오피스 버전 및 언어만 설정하면 쉽게 다운받을 수 있도록 되어있습니다. 현재 2017년 10월 18일 릴리즈된 Windows 10 RS3 버전도 다운받을 수 있으며, 오피스 프로그램은 맥용 버전도 다운받을 수 있게 되어있습니다.

 

윈도우 다운받는 방법

  • 오른편 상단 메뉴에서 "Windows" 탭을 선택하고 다운받고자하는 윈도우 버전을 선택합니다.

 

 

 

  • 왼편 하단에서 윈도우의 언어를 선택합니다.

 

 

  • 언어 선택 후 32bit 또는 64bit 버전 버튼을 선택하면 다운받기 시작합니다.

 

 

오피스 다운받는 방법

  • 오른편 상단 메뉴에서 "Office" 탭을 선택하고 다운받고자하는 오피스 버전을 선택합니다.

 

 

  • 오피스 버전과 언어를 선택하였으면 오른편의 "다운로드 (Download)" 버튼을 클릭합니다.

 

 

 

주의사항 : 이 프로그램으로 다운받는 방식은 정식으로 마이크로소프트에서 다운받는 방식은 아닙니다. 정식 절차대로 배포받으려면 마이크로소프트 사이트에서 직접 받으셔야 합니다.

 

업데이트 글 보기 (For more information, visit main hompage) : http://gturl.iptime.org

반응형
블로그 이미지

Burst Watermelon

교육의 모든 정보,투자,부동산,유용한 정보들

,
반응형

컴퓨터로 일하는것처럼 보이게 할 경우 (Fake computer screen)

 

 

 

컴퓨터의 업데이트로 인하여 어쩔 수 없이 일하지 못하는 상황을 만들고 싶을때 사용할 수 있는 팁입니다. 운영체제 업데이트로 인하여 어쩔 수 없이 쉬어야하는 것처럼 보이고 싶을 경우 아래 각 운영체제별 사이트를 클릭해놓으면 저절로 업데이트 퍼센테이지도 올라가는것처럼 보이게 해줍니다.

해당 사이트로 이동 후 엔터키를 누르면 "블루 스크린" 화면으로 전환됩니다.

 

 

This is a tip you can use when you want to make a situation where you can not work because of an update on your computer. If you want to make it seem as if you need to be rested due to the operating system update, click the site for each operating system below, and it will make the update percentage seem to go up by itself.

Go to the site and press the enter key to switch to the "blue screen" screen.

 

각 운영체제별 업데이트 화면처럼 보이는 사이트 바로가기

 

 

아쉽지만 리눅스 화면은 없네요... (^^;)

 

업데이트 글 보기 (For more information, visit main hompage) : http://gturl.iptime.org

반응형
블로그 이미지

Burst Watermelon

교육의 모든 정보,투자,부동산,유용한 정보들

,
반응형

컴퓨터로 인터넷을 오랫동안 사용하면 속도가 조금씩 느려지는 현상이 발생할 경우가 있습니다.

보통 인터넷 주소를 들어가면 XXX.com 이런식으로 사용자들이 기억하는데 원래 IP Adress 인 111.222.333.444 를 -> XXX.com 으로 변환해주는것을 DNS Service라고 합니다.

이런식으로 변환되는 주소가 많아질 수록 조금씩 인터넷이 느려지는데, 이럴때 DNS 변환 주소를 한번 정리해주면 컴퓨터 인터넷 속도가 빨라질 수 있습니다.

아래의 명령들을 시작 - 모든 프로그램 - 보조 프로그램에 있는 "명령 프롬프트" 프로그램에서 입력하거나, 또는 첨부 배치 실행 파일을 받아서 한번만 실행하시면 됩니다.

@echo off 
ipconfig /displaydns 
ipconfig /flushdns


Flushing DNS batch file : Download!!


윈도우즈 시리즈 (Windows 10, 8, 8.1,Vista and 7)

  • Windows 10 : 시작 버튼에 마우를 놓고 오른쪽 버튼을 눌러서 관리자 권한으로 명령 프롬프트 실행하기를 선택합니다. 터미널 화면이 나타나면 "ipconfig /flushdns"를 입력합니다. (Right click on the start menu and choose Command Prompt (Admin) from the menu and type in the command ipconfig /flushdns.)


  • Windows 8 and 8.1 : 바탕화면의 찾기에서 "cmd"라고 입력한 후 명령 프롬프트가 나타나면 마우스 오른쪽 버튼을 눌러서 관리자 권한으로 실행하면 됩니다. 터미널 화면이 나타나면 "ipconfig /flushdns"를 입력합니다. (Simply type cmd on the Windows 8 Start Screen and the Windows search bar will appear on the right hand side with search results. Right click on Command Prompt and click Run as administrator and type in the command ipconfig /flushdns.)


  • Windows Vista and 7 : 시작 - 모든 프로그램 - 보조 프로그램에 있는 "명령 프롬프트"를 실행합니다. 터미널 화면이 나타나면 "ipconfig /flushdns"를 입력합니다. (Start > All Programs > Accessories > Command Prompt and type in the command ipconfig /flushdns.)


  • Windows 98/NT/2000/XP : 시작 - 실행 - cmd.exe 입력 후 실행합니다. 터미널 화면이 나타나면 "ipconfig /flushdns"를 입력합니다. (Start > Run > cmd.exe > OK and type in the command ipconfig /flushdns.)


다른 운영 체제들 (Other Operation systems)

애플 매킨토시 (Apple OS X) : 각각 버전에 따라 커맨드창에 입력하여 실행하시기 바랍니다. (Flushing DNS commands are different depends on the OSX version.)


  • Mac OS X 10.12 Sierra and 10.11 El Capitan
  1. Open up the command terminal. (Command terminal is in "Utility".)
  2. Run the command sudo killall -HUP mDNSResponder
  3. Enter the password. You will most likely be asked for the administrator password before you can proceed with the DNS flush.


  • Mac OS X Yosemite
  1. Open up the command terminal. (Command terminal is in "Utility".)
  2. Run the command sudo discoveryutil udnsflushcaches
  3. Enter the password. You will most likely be asked for the administrator password before you can proceed with the DNS flush.


  • Mac OS X 10.9 Mavericks,  10.8 Mountain Lion and 10.7 Lion
  1. Open up the command terminal. (Command terminal is in "Utility".)
  2. Run the command sudo killall -HUP mDNSResponder
  3. Enter the password. You will most likely be asked for the administrator password before you can proceed with the DNS flush.


  • Mac OS X 10.6 Snow Leopard
  1. Open up a command terminal. (Command terminal is in "Utility".)
  2. Run the command sudo dscacheutil -flushcache
  3. Enter the password. You will most likely be asked for the administrator password before you can proceed with the DNS flush.


  • Mac OS X 10.5.1 Leopard and below
  1. Open a command terminal. (Command terminal is in "Utility".)
  2. Run the command sudo lookupd -flushcache
  3. Enter the password. You will most likely be asked for the administrator password before you can proceed with the DNS flush.

 

리눅스 (Linux)

If you are running the nscd Name Service Cache Daemon and wish to flush your DNS cache, then you will need to do the following.

  1. Open up a command terminal (either as root or run step 2 with sudo).
  2. Run the command /etc/init.d/nscd restart

업데이트 된 글 보기 (For more information, visit main hompage) : http://gturl.iptime.org

 

접속 안될 때 (When you can't access to main homepage) : http://burst-watermelon.blogspot.com


반응형
블로그 이미지

Burst Watermelon

교육의 모든 정보,투자,부동산,유용한 정보들

,
반응형

윈도우 7 업데이트시 무한로딩이 되는 경우가 있습니다. 이럴 경우 업데이트는 진행이 안되고 계속 시간만 흐르는 경우가 생기는데 아래 2가지 방법 중 편리한 방법을 선택하여 진행하면 됩니다.


  • 첫번째 방법.

windows7update_01

이럴 경우 윈도우7 업데이트 통합팩 사이트로 접속합니다. (http://forum.oszone.net/thread-257198.html)



windows7update_02

접속 후 중간의 "Скачать" 글자를 클릭하면 업데이트 통합팩을 다운받기 시작합니다.

대략 650~700Mb 용량이며, 다운받은 업데이트 파일을 실행시 시간이 조금 오래 걸리기도하나, 모든 윈도우7 업데이트를 강제로 한번에 업데이트가 되어 편리하게 사용할 수 있습니다.


  • 2번째 방법

마이크로소프트는 최근 윈도우 7 SP1 과 윈도우 서버 2008 R2 SP1 운영체제의 2016년 4월까지 윈도우 업데이트를 모아서 롤업 업데이트 KB3125574를 발표했습니다.

KB3125574 업데이트를 설치하기 위해선 아래 2가지 업데이트 파일을 미리 설치하여야 합니다.

  1. 2015 년 4 월 서비스 스택의 Windows 7 및 Windows Server 2008 R2 (KB3020369)에 대 한 업데이트
  2. 서비스 팩 1 (KB976932) Windows Server 2008 R2 또는 Windows 7

위 2가지 업데이트를 설치 후 아래 링크를 클릭하여 롤업 업데이트를 설치합니다.

http://catalog.update.microsoft.com/v7/site/Search.aspx?q=KB3125574

설치 방법은 위 사이트를 접속하여, 본인의 운영체제에 맞는  32비트 또는 64비트 운영체제 업데이트를 다운받아 실행하시면 됩니다.


업데이트 된 글 보기 (For more information, visit main hompage) : http://gturl.iptime.org

 

접속 안될 때 (When you can't access to main homepage) : http://burst-watermelon.blogspot.com


반응형
블로그 이미지

Burst Watermelon

교육의 모든 정보,투자,부동산,유용한 정보들

,