2019年11月27日 星期三

手機設定google gmail imap smtp port

IMAP:

送郵件 (IMAP) 伺服器
imap.gmail.com
需要安全資料傳輸層 (SSL):是
通訊埠:993
外寄郵件 (SMTP) 伺服器
smtp.gmail.com
需要安全資料傳輸層 (SSL):是
需要傳輸層安全性 (TLS):是 (如果可用)
需要驗證:是
安全資料傳輸層 (SSL) 通訊埠:465
傳輸層安全性 (TLS)/STARTTLS 通訊埠:587
姓名或顯示名稱您的姓名
帳戶名稱、使用者名稱或電子郵件地址您的完整電子郵件地址
密碼您的 Gmail 密碼


POP3:



內送郵件 (POP) 伺服器
pop.gmail.com
需要安全資料傳輸層 (SSL):是
通訊埠:995
外寄郵件 (SMTP) 伺服器
smtp.gmail.com
需要安全資料傳輸層 (SSL):是
需要傳輸層安全性 (TLS):是 (如果可用)
需要驗證:是
安全資料傳輸層 (SSL) 通訊埠:465
傳輸層安全標準 (TLS)/STARTTLS 通訊埠:587 
如果您使用的是公司或學校專屬的 Gmail 帳戶,請洽詢您的管理員以取得正確的 SMTP 設定。
伺服器逾時大於 1 分鐘 (建議設定 5 分鐘)
姓名或顯示名稱您的姓名
帳戶名稱、使用者名稱或電子郵件地址您的電子郵件地址

2019年11月5日 星期二

關閉 Windows 10 自動更新


REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /d "00000001" /t REG_DWORD /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "AUOptions" /d "00000001" /t REG_DWORD /f

**********************************************************************
https://forum.gamer.com.tw/C.php?bsn=60030&snA=505189

在左側的服務與應用程式上左鍵連點兩下,再點選服務,至右邊服務清單中找到 Background Intelligent Transfer Service 停止服務

使用批次檔停用 Windows 更新服務

複製下方斜線中的黃色底色內容貼到記事本,存成 bat 檔,以系統管理員權限執行:
///////////////////////////////////////////////
sc stop wuauserv
sc stop BITS
sc config wuauserv start= disabled
sc config BITS start= disabled

 如果要恢復 Windows 更新服務,複製下方斜線中的黃色底色內容貼到記事本,存成 bat 檔,以系統管理員權限執行:
///////////////////////////////////////////////
sc config wuauserv start= auto
sc config BITS start= auto
sc start wuauserv
sc start BITS
///////////////////////////////////////////////


*************************************************************************
https://zillowtech.com/disable-automatic-updates-windows-10-home.html

 navigate to the following key.
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU


***************************************************************************
http://mytoregistry.blogspot.com/2018/10/wsus-server.html

開啟或關閉 WSUS server

公司如果有一台 WSUS server, 可減少電腦 update十 需要回問 微軟主機
還可以 控制電腦安裝更新, 避免有些更新會造成全面性問題
例如: 之前 win10 update 造成 Epson 點矩陣印表機無法使用

寫法:
開啟對應WSUS:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"WUServer"="http://WSUS IP:8530"
"WUStatusServer"="http://WSUS IP:8530"

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
"NoAutoUpdate"=dword:00000000
"AUOptions"=dword:00000003
"UseWUServer"=dword:00000001

-------------------------------------------------------------------------------------
關閉對應WSUS:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"WUServer"=-
"WUStatusServer"=-

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
"NoAutoUpdate"=-
"AUOptions"=-
"UseWUServer"=-

-------------------------------------------------------------------------------------
WSUS IP 是指 內部 WSUS server IP
port: 8530 (內定)
你可以用 telnet WSUS IP 8530   去測試是否開啟

****************************************************************************************************************

電腦 Windows-手動設定更新wsus主機(2)

使用cmd,讓client與WSUS更新
將以下內容存成wsus-update.cmd,在client上以系統管理者執行。
WUServer、WUStatusServer請更換成WSUS Server的IP
======
@echo on
net stop wuauserv
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v AccountDomainSid /f
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v PingID /f
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientId /f

REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "WUServer" /d "http://192.168.1.1:8530" /t REG_SZ /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "WUStatusServer" /d "http://192.168.1.1:8530" /t REG_SZ /f

REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "UseWUServer" /d "00000001" /t REG_DWORD /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /d "00000000" /t REG_DWORD /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "AUOptions" /d "00000002" /t REG_DWORD /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "ScheduledInstallDay" /d "00000000" /t REG_DWORD /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "ScheduledInstallTime" /d "00000003" /t REG_DWORD /f

net start wuauserv
wuauclt /resetauthorization /detectnows
wuauclt /detectnow
wuauclt /reportnow

pause
======

參數說明:
數值名稱:NoAutoUpdate
數值資料:0 或 1
0: 啓用自動更新(預設)。
1: 禁用自動更新。
註冊表數值類型:Reg_DWORD

數值名稱:AUOptions
數值資料:1 到 4
1: 自動更新中的“保持我的電腦最新”已被禁用。
2: 提醒下載和安裝。
3: 自動下載並提醒安裝。
4: 自動下載並自動執行計劃的安裝。
註冊表數值類型:Reg_DWORD

數值名稱:ScheduledInstallDay
數值資料:0 到 7
0: 每天。
1 到 7:一周的每一天,從周日 (1) 到周六 (7)。
註冊表數值類型:Reg_DWORD

數值名稱:ScheduledInstallTime
數值資料:n,其中 n 以 24 小時形式表示的一天中的時間 (0-23)。
註冊表數值類型:Reg_DWORD

數值名稱:UseWUServer
數值資料:將此值設置爲 1,則自動更新將使用正運行軟體更新服務而不是 Windows 更新的伺服器。
註冊表數值類型:Reg_DWORD

數值名稱:RescheduleWaitTime
數值資料:m,其中 m 等於從自動更新啓動之後到它開始安裝已經錯過計劃時間的安裝之前要等待的時間(以分鐘爲單位,1-60 代表 1 分鐘到 60 分鐘)。
註冊表數值類型:Reg_DWORD
注意:用戶端更新爲 SUS SP1 用戶端版本或更高版本後,此設置僅影響用戶端行爲。

數值名稱:NoAutoRebootWithLoggedOnUsers
數值資料:Reg_DWORD:0 (false) 或 1 (true)。如果設置爲 1,當有登錄用戶時,自動更新不會自動重新啓動電腦。
註冊表數值類型:Reg_DWORD

2019年10月21日 星期一

雙向同步 Outlook Google日曆教學 Google Calendar Sync

Outlook與Google行事曆同步


使用  Outlook CalDav Synchronizer

https://www.playpcesor.com/2017/02/outlook-google.html

***********************************************************

Outlook Google Calendar Sync



https://www.lccnet.com.tw/lccnet/article/details/699



*********************************************************************
其實早年 Google 有推出一款 Google Calendar Sync 軟體可以雙向同步 Outlook 與 Google 行事曆,但後來 Google Calendar Sync 改成只有 G Suite 企業版帳戶才能使用。


https://www.playpcesor.com/2017/02/outlook-google.html


https://www.playpcesor.com/2010/08/google-calendar-sync-outlook-2010.html


Google Calendar Sync 下載:http://dl.google.com/googlecalendarsync/GoogleCalendarSync_Installer.exe

2019年5月23日 星期四

win10 無法更新 update

https://www.techbang.com/posts/44514-win-10-training-workshop-delete-l-win-10-legacy-of-useless-junk-files

可以看到升級後產生的「$Windows.~BT」、「$Windows.~WS」、「Windows.old」這 3 個資料夾,由於在升級過程中會下載 Windows 10 的安裝檔案並將舊系統備份起來,因此佔用的空間十分大,如果你的 C 槽是 SSD 的話很可能就快滿了,因此趕緊刪除它們吧! 
( 使用 pc hunter 強迫刪除)
解決方式:
0.刪除「$Windows.~BT」資料夾( 使用 pc hunter 強迫刪除)
1.使用 Dism++
2.選取空間回收
 
3.僅有被取代的 WinSxS 附件 和 系統還原點 未被選取,其餘一律被選取回收清理


新增說明文字


4. 清理
5.更新管理

 6.掃描





7.安裝




2019年5月20日 星期一

Ruckus ICX 7150 升級 4*10G



Ruckus ICX 7150

Upgrading or downgrading SAU licenses

Upgrading and downgrading to a SAU licensed feature set uses the same commands and similar steps.

Upgrading an SAU license

To upgrade a license on a device that supports SAU licenses, perform the following steps. The examples in these steps show how to upgrade from a 2X10G license to a 4X10GR license on an Ruckus ICX 7150.
In order to perform the following task, you must place a purchase order with Ruckus order management as needed. A unit number and the purchased license name is required.
  1. (Optional) Enter the show license installed command to check the licenses already installed on the device.
    ICX7150-24P Router# show license installed
    Unit License Name L3 Premium Port Speed Upgrade Speed Ports
    1    2X10G        No         Yes                10G   2
    
  2. Enter the show version command to verify license details. The Current License field displays the license you have currently installed on the device.
    device# show version
    =============================================================
    UNIT 1: SL 1: ICX7150-24P-2X10G 24-port Management Module
    Serial #:CYT3346K035
    Current License: 2X10G  
    P-ASIC 0: type B548, rev 01 Chip BCM56548_A0
    ===========================================================
    
  3. Enter the license install perpetual command, followed by the unit number and the purchased license name.
    device# license install perpetual 1 4x10gr
    
    The example installs a perpetual 4X10GR license on unit 1.
  4. Enter y to accept the End User License Agreement (EULA), or n to cancel.
    Continue?(enter 'y' to continue, 'n' to cancel): y
    
  5. Confirm the license installation with the show license installed command.
    ICX7150-24P Router# show license installed
    Unit License Name L3 Premium Port Speed Upgrade Speed Ports
    1    4X10GR       Yes        Yes                10G   4
    2    2X10G        No         Yes                10G   2
    
    The example shows a 4X10GR license with Premium Layer 3 features is installed on unit 1, and a 2X10G license is installed on unit 2.
  6. Enter the show version command for additional details to verify that the license is installed correctly.
    device# show version
    =============================================================
    UNIT 1: SL 1: ICX7150-24P-2X10G 24-port Management Module
    Serial #:CYT3346K035
    Current License: 4X10GR  
    P-ASIC 0: type B548, rev 01 Chip BCM56548_A0
    =============================================================
    
    NOTE
    If you attempt to update a license that is already installed on the device, an error message is displayed, as shown in the following example.
    device# license install perpetual 1 2x10g
    License package 2x10g is already installed.
    device#

2019年3月3日 星期日

磁碟修復 disk repair

硬碟壞軌與0磁軌故障的檢測與修復-Windows10/8/7常用恢復工具介紹


REf: 

https://www.reneelab.net/windows-fix-disk-track-error.html


修復硬碟指令 chkdsk


REF: http://evil-ms.blogspot.com/2010/05/chkdsk.html


chkdsk c: /r
chkdsk c: /f


如果是系統槽,修復後還是有問題
可以使用 SFC - SystemFileChecker系統檔案檢查程式 來修復系統檔案
C:\>sfc /scannow

補充1:如果出現以下訊息請記得選N,不然修復完還要自己去磁碟管理手動掛載
尤其是C槽,windows 抓不到就麻煩了
無法執行 Chkdsk,因為磁碟區被其他處理程序使用中。
如果您先解下這個磁碟區的話,Chkdsk 可能可以執行。
所有在這個磁碟區上開啟的控制碼都會失效。
您想要強制解下這個磁碟區嗎? (Y/N)

chrome

chrome://history/

2019年1月16日 星期三

操作說明[Google搜尋]Google庫存頁刪除申請

REF:

https://sites.google.com/a/mail.shu.edu.tw/wow/shi-xin-google-zhi-shi-ku/google-sou-suo-gong-ju-lie/cao-zuo-shuo-ming-google-sou-xun-google-ku-cun-ye-shan-chu-shen-qing

操作說明[Google搜尋]Google庫存頁刪除申請

不知道大家有沒有注意到google搜尋的[頁面庫存]功能?
使用這個功能,大部分是類似得獎名單(包含個人隱私資料)公告在網站上,當活動或公告結束後,雖然自行將檔案連結刪除刪除,但google庫存頁仍會保存,導致一些不法人士利用這庫存頁做不法的事,可能是詐騙或騷擾電話,此時可以利用此功能向google提出申請,以防個人資料外洩。
 
申請 [庫存頁刪除連結]網址:
注意:需使用一般的google帳號(非學校提供)