請善用 Ctrl+F 搜尋
下載區(shi):https://drive.google.com/drive/folders/1z3pTLi4TXaHvMg8yE9emKRBy2SpJslxA?usp=drive_link
內含:正航教學文件/NAS教學文件
常用電話:
台南捷元: 06-242-5588
高雄捷元: 07-550-3770
Acer : 02-2696099
台灣微軟: 00801-128-000
台灣大哥大 :(188) 0809-000-852 / 0935-120-188 / 02-6606-2995
中華電信: 0800-080-123
遠傳電信: (888) 02-449-5123
skype : 02-27000958
華芸 : 02-7737-0888 #2002
QNAP : 02-2641-1885
ZYXEL : 0800-500-550
高雄鉅創: 07-588-1868
台北鉅創: 02-2932-1422
ESET / NOD32 台灣二版: 02-7722-6899 #122/123
PC-cillin企業用戶 : 02-2378-3666 #4
PC-cillin伺服器產品 : 02-2377-2323
==========================================
常用網站
居易韌體:https://fw.draytek.com.tw/
亞太E管家:https://emanager.aptg.com.tw/konakart/Welcome.action
遠振資訊:https://twnoc.net/whmcs/login
MyZyxel Nebula : https://nebula.zyxel.com/
Whois : https://www.whois365.com/tw/
==========================================
常用文件
工作紀錄:https://docs.google.com/forms/d/e/1FAIpQLSebgVv6Qh28tssusAYctROIzKbIdohlgkmX-hVyZUAOR1N6Vg/viewform
CMD 指令
echo Unicode
chcp 65001
echo 指向目前位置
cd /d "%~dp0"
echo 密碼永久有效
net accounts /maxpwage:unlimited
WMIC USERACCOUNT WHERE "Name='User'" SET PasswordExpires=FALSE
echo 關閉UAC
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "ConsentPromptBehaviorAdmin" /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableLUA" /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "PromptOnSecureDesktop" /t REG_DWORD /d 0 /f
echo 關閉空白密碼
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa" /v "LimitBlankPasswordUse" /t REG_DWORD /d 0 /f
echo 啟用數字
reg add "HKCU\Control Panel\Keyboard" /v KeyboardDelay /d 1 /t REG_DWORD /f
reg add "HKCU\Control Panel\Keyboard" /v KeyboardSpeed /d 31 /t REG_DWORD /f
reg add "HKCU\Control Panel\Keyboard" /v InitialKeyboardIndicators /d 80000002 /t REG_DWORD /f
echo 開啟桌面圖示設定
desk.cpl ,
echo 關閉休眠與螢幕保護
powercfg -x -standby-timeout-ac 0
powercfg -x -standby-timeout-dc 0
powercfg -x -monitor-timeout-ac 0
powercfg -x -monitor-timeout-dc 0
echo 建立A使用者且密碼為B
net user A B /add
echo 隱藏A使用者
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList" /v "shinfo" /t REG_DWORD /d 0 /f
echo 執行目前資料夾中的A.exe
start .\A.exe
echo 重新啟動 (-r重啟 -s關機 -t設定定時 數字為等候時間{單位:秒}
shutdown -r -t 10
echo 取消 shutdown 指令
shutdown -a
echo 複製資料夾 A->B
robocopy "A" "B" /mir /R:0