1. Intro When you need to upload files from your computer (Windows) to the server. 2. Prerequirements Install putty 3. How to use? pscp -P [Port] [source server/directory] [target server/directory]
Category: Windows
Windows default settings batch file
1. Intro Windows default settings batch file. 2. File win
Update Visual C++
1. Link https://support.microsoft.com/en-us/topic/the-latest-supported-visual-c-downloads-2647da03-1eea-4433-9aff-95f26a218cc0
md5sum on Windows
1. Command certutil -hashfile [File] MD5
Outlook 초기화
1. How to? Delete Registry key HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook
Windows Alarm using slack
# Windows Startup/Shutdown, Logon/Logoff 시 알람 # Startup/Shutdown gpedit.msc – Computer Configuration – Windows Settings – Scripts (Startup/Shutdown) C:\Windows\System32\curl.exe -X POST –data-urlencode “payload={\”channel\”: \”[#channel]\”, \”username\”: \”[username]\”, \”text\”: \”[text]\”, \”icon_emoji\”: \”:watermelon:\”}” “[Slack api address]” # Logon/Logoff gpedit.msc – User Configuration – Windows Settings – Scripts (Logon/Logoff) C:\Windows\System32\curl.exe -X POST –data-urlencode “payload={\”channel\”: \”[#channel]\”, \”username\”: \”[username]\”, \”text\”: \”[text]\”, […]
Base64 encode/decode
1. Command certutil -decode [input file] [output file] certutil -encode [input file] [output file]
View Wi-Fi information
Show Wi-Fi Profiles netsh wlan show profiles Show Wi-Fi Password netsh wlan show profiles [wifi name] key=clear
[command] sc
Command Command Description sc start [service name] Start service sc stop [service name] Stop service sc config [service name] start=[auto/system/demand/disabled] service 시작 유형 설정 sc failure [service name] action=[/O] reset=O service 복구 옵션 O ; 동작하지 않음
Remove Auto Share Folder on Windows
Intro Windows share default folder like C$, D$, IPC$, ADMIN$.But Security aspect that is very weak. Then remove share folder Command net share ; show share folder net share /delete [Share Folder Name] ; delete share folder(Not delete Original folder, Just Delete share link) reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters /v AutoShareWks /t REG_DWORD /d 0 Firewall […]