본문 바로가기
728x90
반응형

윈도우35

윈도우 - cmd로 BIOS 진입 컴퓨터를 부팅하는 중 로고가 나올 때 보통 F2나 F12 키를 눌러서 BIOS에 진입하지 않고도 cmd 명령어로 쉽게 BIOS 진입이 가능하다. * 만일 FastBoot 옵션이 활성화 됐을 경우에는 BIOS에 진입이 어려울 수 있는데 이 방법을 사용하면 쉽게 접근이 가능하다. 컴퓨터 재부팅 후 BIOS 진입(관리자 권한 필요) shutdown -r -fw -t 0 -fw: firmware 다시 시작으로 BIOS 진입 시작 > 전원 > SHIFT + 다시 시작 > 문제 해결 > 고급 옵션 > UEFI 펌웨어 설정 > 다시 시작 2023. 5. 9.
윈도우 - 메시지 박스 띄우기(msg) msg %username% Your message here 출처: https://superuser.com/questions/1278006/how-to-display-a-msgbox-directly-from-cmd How to Display a Msgbox directly from CMDI would like to display a message to the user by using CMD. The way I know to do so is by creating a .vbs (VBScript) file and execute it from CMD like this: (echo MsgBox "Line 1" ^& vbCrLf ^&a...superuser.com 2023. 5. 6.
윈도우 - 맥 주소(MAC Address) 변경 with 레지스트리 수정 수동으로 맥 주소 변경: 장치 관리자 > 네트워크 어댑터 > 속성 > 고급 > 로컬 관리 주소 > 값 수정 맥 주소, 사설 아이피 변경 확인 명령어 ipconfig /all cmd로 레지스트리 수정(관리자 권한 실행 필요) reg add HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0001 /v NetworkAddress /d 000000000000 # 이더넷일 경우 netsh interface set interface "이더넷" disable netsh interface set interface "이더넷" enable # 와이파이일 경우 netsh interface set interface "Wi-F.. 2023. 5. 2.
윈도우 - 인터넷 끊기, DHCP 구성 해제/할당(ipconfig /release, ipconfig /renew) 인터넷 끊기(이더넷) | DHCP 구성 해제(할당되어있는 IPv4 주소 해제) ipconfig /release 인터넷 연결(이더넷) | DHCP로부터 새로운 IPv4 주소를 할당 ipconfig /renew 인터넷 끊기(와이파이) ipconfig /release Wi-Fi 인터넷 연결(와이파이) ipconfig /renew Wi-Fi 출처: https://superuser.com/questions/1719455/ipconfig-release-renew-for-wi-fi-doesnt-work ipconfig release/renew for Wi-Fi doesn't work ipconfig /renew Wi-Fi ipconfig /release Wi-Fi Either of those commands don'.. 2023. 5. 2.
윈도우 - cmd 관리자 권한 실행인지 확인 하기 @echo off bcdedit >>nul if %errorlevel% == 1 ( echo 관리자 권한이 아닙니다. pause exit ) echo 관리자 권한으로 실행하였습니다. pause exit 출처: https://gaesae.com/74 CMD 관리자 권한으로 실행 여부 체크하기 배치파일 작성 시 관리자 권한이 필요한 프로그램을 실행시켜야하는 경우가 있습니다. 해당 코드가 실행되기 전에 미리 관리자 권한으로 실행 되었는지 체크하여 관리자 권한으로 실행되지 않 gaesae.com 2023. 4. 27.
다크넷 - 윈도우에서 Tor로 히든 서비스 생성하기 1. Tor Project 공식 사이트에서 Tor 브라우저 다운로드 https://www.torproject.org/ko/download/ The Tor Project | Privacy & Freedom OnlineDefend yourself against tracking and surveillance. Circumvent censorship.www.torproject.org 2. 파일 경로를 아래와 같이 배치tor.exe: C:\Tor\tor.exe torrc: C:\Tor\torrc 3. C:\Tor\torrc(Tor 설정 파일) 수정HiddenServiceDir "C:/Tor/hidden_service/" HiddenServicePort 80 127.0.0.1:80 4. 서비스 생성/삭제C:\Tor.. 2023. 4. 19.
윈도우 - 사용자 계정 생성 및 관리자 권한 부여(net user) 사용자 계정 목록 확인 명령어 net user 사용자 계정 생성 명령어 net user 사용자이름 /add 사용자 계정 비밀번호 설정(입력 프롬프트 표시) net user 사용자이름 * 사용자 계정 비밀번호 설정(인라인) net user 사용자이름 사용자비밀번호 특정 사용자 계정에 관리자 권한 부여 명령어 net localgroup administrators 사용자이름 /add 사용자 삭제 net user 사용자이름 /delete 출처: https://ssotori.tistory.com/96 '명령 프롬프트'에서 사용자 계정을 생성하고 관리자 권한 주기윈도우에서 새로운 사용자 계정을 생성하는 방법은 여러가지가 있습니다. ▶ 윈도우10 새로운 사용자 계정 만들기(로컬 계정) 하지만 net 명령어를 이용하면.. 2023. 4. 19.
윈도우 - 윈도우에 Open SSH Server 설치하기(with Chocolatey) 1. Chocolatey 패키지 설치 도구 설치 (파워쉘 + 관리자 권한) Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) 2. openssh 설치 choco install openssh -params '"/SSHServerFeature /KeyBasedAuthenticationF.. 2023. 4. 19.
윈도우 - 프로그램 패킹 도구(UPX) UPX(Ultimate Packer for eXecutables)는 실행 파일의 크기를 줄이는 파일 패킹 프로그램입니다. https://upx.github.io/ UPX: the Ultimate Packer for eXecutables - Homepage Welcome UPX is a free, secure, portable, extendable, high-performance executable packer for several executable formats. Introduction UPX is an advanced executable file compressor. UPX will typically reduce the file size of programs and DLLs by around 50%-.. 2023. 3. 18.
윈도우 - HDD 초기화 , USB 용량 복구하기(diskpart) 1. diskpart라고 입력한다 2. list disk 라고 입력하고 USB 메모리 용량과 비슷한 것의 디스크 번호를 기억해 두세요. 3. select disk 디스크번호 를 입력한다 4. clean 을 입력한다 5. create partition primary를 입력한다 6. format fs=ntfs quick 을 입력한다 7. exit 를 입력한다 출처: https://blog.naver.com/devlog_/221619228538 2023. 2. 26.
프라이버시 - 윈도우 I2P, TOR 프록시 접속기 enableI2PProxy.bat reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /t REG_SZ /d http=127.0.0.1:4444;https=127.0.0.1:4444;ftp=127.0.0.1:4444;socks=127.0.0.1:4444 /f reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v Pro.. 2023. 2. 10.
윈도우 - 파워쉘로 바탕화면 스크린샷 캡처 [Reflection.Assembly]::LoadWithPartialName("System.Drawing") function screenshot([Drawing.Rectangle]$bounds, $path) { $bmp = New-Object Drawing.Bitmap $bounds.width, $bounds.height $graphics = [Drawing.Graphics]::FromImage($bmp) $graphics.CopyFromScreen($bounds.Location, [Drawing.Point]::Empty, $bounds.size) $bmp.Save($path) $graphics.Dispose() $bmp.Dispose() } $bounds = [Drawing.Rectangle]::Fro.. 2023. 2. 8.
728x90
반응형