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

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

 

윈도우 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

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

,
반응형

윈도우10 사용시 내부 네트워크에서 다른 컴퓨터나 NAS가 안보일 경우 (Can not see other computer or NAS)

 

현재 윈도우10 사용시 가정이나 소규모 네트워크 구성시 내부 네트워크에서 본인 컴퓨터를 제외한 모든 컴퓨터와 NAS (시놀로지, 헤놀로지 등)가 안보이는 경우가 있습니다. 내부 네트워크에서 맨 처음 네트워크에 접속한 단 1대의 컴퓨터만 네트워크를 이용할 수 있고, 그 외에 모든 컴퓨터에서 네트워크를 볼 수 없는 상황이 발생되고 있습니다. 이는 윈도우 10에서 기본적으로 Samba 1.0  버전을 비활성화 시키면서 일어나는 현상입니다.

왜냐하면, 2016년도 전세계를 공포로 몰아넣은 랜섬웨어가 SMB 1.0의 취약점을 이용하였기때문에 마이크로소프트에서 윈도우 업데이트를 통해서 SMB 1.0 버전을 비활성화 시켜놓았습니다. 이런 경우 어떻게 네트워크에 연결된 컴퓨터나 NAS에 접속할 수 있는지 알아보겠습니다.

 

NAS 사용시 삼바 버전 변경을 이용하는 경우

  • 시놀로지나 헤놀로지 또는 다른 NAS를 사용하는 경우, 삼바 버전을 상위(3.0) 버젼으로 변경하면 정상적으로 네트워크의 컴퓨터들이 보이는 경우도 있습니다. 어떤 경우에는 변경해도 보이지 않기도 합니다.
  • 시놀로지에서는 제어판 - 파일서비스 - Win/MAC/NFS 메뉴를 차례대로 클릭하면 "고급 설정" 버튼이 있습니다.
  • 고급 설정 메뉴에서 "Windows 파일 서비스용 최대 프로토콜"에서 삼바 버전을 3.0으로 변경하고, 시스템을 재시작하면 적용됩니다.

 

 

삼바 버전을 변경해도 안되는 경우 - 일반 컴퓨터 및 NAS에 다 해당되는 방법

  • 만약, 위의 방법으로 안된다면 다음 절차를 따라하시면 임시방편이지만 완벽하게 다시 내부 내트워크를 이용할 수 있습니다.
  • 먼저, 공유기에서 네트워크에 연결된 각각의 컴퓨터나 NAS를 내부 고정 IP로 설정해놓습니다. (예 : 192.168.0.100 등)
  • 고정IP를 얻기 위해선 공유기 설정 후 해당 컴퓨터들이나 NAS를 재부팅하여 고정 IP를 받습니다.
  • 왼쪽 하단의 윈도우 시작버튼을 클릭하고 "실행" 프로그램을 클릭합니다.

 

  • 여기서 접속하고자하는 컴퓨터나 NAS의 고정 IP 주소를 입력합니다.

 

  • 해당 컴퓨터나 NAS의 공유 폴더가 보이게 됩니다.
  • 향후에도 계속 이런 번거로운 절차가 싫으시면 바로가기 아이콘을 생성하여 접속할때마다 아이콘만 클릭해서 접속하시면 됩니다.

 

  • 아래와 같이 시작화면에 해당 컴퓨터 또는 NAS의 주소의 바로가기 생성되었으며, 클릭하시면 해당 컴퓨터의 공유폴더가 나타납니다.

 

 

일반 컴퓨터에서 삼바 버전 1.0을 다시 활성화하는 방법 (랜섬웨어에 노출되어 상당히 위험합니다.)

  • 이 방법은 랜섬웨어에 취약한 삼바 버전 1.0을 다시 활성화하는 방법으로 정말 필요로 할때에만 활성화시켜놓고, 다시 원상태로 비활성화시켜놓는것을 추천합니다.
  • 윈도우 10 기준으로 제어판 -> 모든 제어판 항목 -> 프로그램 및 기능 -> (외편 상단의) Windows 기능 켜기/끄기 -> SMB 1.0/CIFS 파일 공유 지원 -> SMB 1.0/CIFS 클라이언트 체크
  • 이후 재부팅하면 SMB 1.0을 사용하는 네트워크 스토리지 및 컴퓨터들을 사용할 수 있습니다.

 

업데이트 글 보기 (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

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

,
반응형


반응형
블로그 이미지

Burst Watermelon

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

,
반응형
  • This free upgrade is for someone who use assistive technologies. (Of course, this is for who use assistive technologies, BUT...)

If you use assistive technologies, you can get a free upgrade to Windows 10 as Microsoft continues our efforts to improve the Windows 10 experience for people who use these technologies.
If you want Windows 10 now and are ready to take advantage of the free upgrade offer, select the button below to get started.







  • 보조 기술을 사용하는 고객을 위한 Windows 10 무료 업그레이드 (물론 보조 기술을 사용하는 고객용이겠지만...)

일반 사용자를 위한 Windows 10 무료 업그레이드 혜택은 7월 29일에 종료됩니다. 하지만 보조 기술을 사용하는 고객은 일반 사용자의 업그레이드 기한이 만료된 후에도 여전히 무료 업그레이드 혜택을 받으실 수 있습니다. 
무료 업그레이드를 하여 Windows 10을 지금 바로 사용하고자 하신다면, 아래의 버튼을 클릭하여 업그레이드를 시작하세요.

Download


업데이트 된 글 보기 (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

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

,