搜尋此網誌

2019年12月18日 星期三

windows桌面下方工作列上word、excel、powerpoint,檔案總管...等的「最近」文件無法列出Jump list,不正常(已修復))

在windows桌面下方快速工作列上,word的「最近」文件無法列出(Jump List),但其他的例: excel, PowerPoint、ie、檔案總管....都有可能發生不正常,要如何修復呢?

Ex:不正常如下圖:(按mouse右鍵)
正常如下圖:

解決方式:
  1. 開啟檔案總管, 然後在上方位址列輸入
  2. %APPDATA%\Microsoft\Windows\Recent\AutomaticDestinations
    這個路徑是隱藏的,所以直接copy/paste至檔案總管即可找到
  3. 有兩種方式解決
    1. 最簡單的方法~~~全刪:如果想一切重來,將上述資料匣中的檔案全部刪除即可,但要注意如此會將所有有「最近」文件的資訊全刪,如果原只有「檔案總管」不正常,全刪雖然不會影響什麼,但其它Excel、powerpoint、IE...等的「最近」list也會一併清除。
    2. 壞哪一個就修(刪)哪一個檔,例如word壞,我們只刪word相關的檔,如此不會影響其它程式,例如Word壞,所以找出相對應的檔刪除即可。如何找出對應呢?看看下方的對應表,下方只是列出一些,找不到就問google吧!
  4. 刪掉檔案就會正常,不用重開機。


PATH%AppData%\Microsoft\Windows\Recent\AutomaticDestinations
28c8b86deab549a1.automaticDestinations-ms = IE8 Pinned and Recent
a7bd71699cd38d1c.automaticDestinations-ms = Word 2010 Pinned and Recent
adecfb853d77462a.automaticDestinations-ms = Word 2007 Pinned and Recent
a8c43ef36da523b1.automaticDestinations-ms = Word 2003 Pinned and Recent
1b4dd67f29cb1962.automaticDestinations-ms = Windows Explorer Pinned and Recent
918e0ecb43d17e23.automaticDestinations-ms = Notepad Pinned and Recent or
9b9cdc69c1c24e2b.automaticDestinations-ms = Notepad Pinned and Recent
d7528034b5bd6f28.automaticDestinations-ms = Windows Live Mail Pinned and Recent
c7a4093872176c74.automaticDestinations-ms = Paint Shop Pro Pinned and Recent
b91050d8b077a4e8.automaticDestinations-ms = MediaCenter
f5ac5390b9115fdb.automaticDestinations-ms = PowerPoint 2007
23646679aaccfae0.automaticDestinations-ms = Adobe Reader 9
aff2ffdd0862ff5c.automaticDestinations-ms = Visual Studio 2012
fb3b0dbfee58fac8.automaticDestinations-ms = Word 2013 (and Office 365) Pinned and Recent
9839aec31243a928.automaticDestinations-ms = Excel 2013 (and Office 365) Pinned and Recent
9839aec31243a928.automaticDestinations-ms = Excel 2013 Pinned and Recent
d00655d2aa12ff6d.automaticDestinations-ms = Powerpoint 2013Office 365 Pinned and Recent
9c7cc110ff56d1bd.automaticDestinations-ms = Powerpoint 2010 Pinned and Recent
  • Word 2016: fb3b0dbfee58fac8
  • Excel 2016: b8ab77100df80ab2
  • PowerPoint 2016: d00655d2aa12ff6d
  • Paint: 12dc1ea8e34b5a6

參考資訊:




2019年10月28日 星期一

利用PowerShell指令找出windows AD上被鎖的帳戶,Use PowerShell to Find Locked-Out User Accounts


  1. 在domain control(DC) run powershell
  2. Import-Module activedirectory
  3. Search-ADAccount –LockedOut   (列出被鎖的帳戶)
  4. Search-ADAccount -LockedOut | Unlock-ADAccount -Confirm  (解開被鎖的帳戶)
    Confirm這個參數一定要加,不然會一次全解開,連guest也解開,如此太不安全了
  5. 關閉powershell

2019年9月11日 星期三

exchange 2016通訊錄之設定與更新,使用指令方式產生通訊錄

升級到exchange 2016後,全面臨到通訊錄要如何產生的問題,以前的通訊錄是由AD中的欄位產生的,升版後也要如法泡製啊~~~

通訊錄的產生方式有兩種:

  1. 使用exchange Web管理介面產生,問題是其提供之AD欄位太少,無法滿足我公司通訊錄分類,所以不好用。
  2. 使用指示產生,當然解決了上述問題,但使用者AD欄位內容更改後,通訊錄必不會隨之更改,需要下「Update-AddressList」指定後才會更新,有點傻眼...
好吧!就看看如何下指今吧!

熱人網友已有整理及微軟的文件,可直接參考看看就八九不離十了

Set-AddressList -Identity "AAA Dept." -RecipientFilter {((Alias -ne $null) -and ((Department -eq 'AAA') -or (Title -eq 'Adm Clerk - AAA') -or (CustomAttribute1 -eq 'AAA')))}

Set-AddressList -Identity "BBB" -RecipientFilter {((Alias -ne $null) -and ((Department -eq 'BBB) -or (Title -eq 'Adm Clerk - BBB') -or (CustomAttribute1 -eq 'BBB')))}

CustomAttribute1是在Exchange 系統管理中心---使用者信箱---一般---更多選項當中,它可以有[1-15]個,ad無法加上的屬性,可以在這理自己加上去,再利用指令篩選判斷。

記得設定完後要更新哦!!! 不然還是看不到哦!!!

Update-AddressList -Identity "AAA Dept."
Update-AddressList -Identity "BBB"

2019年8月29日 星期四

windows file name檔案名稱太長,刪不掉

因為file name檔案名稱太長在刪除時發生錯誤,刪不掉...怎麼辦?

使用7-Zip,沒看錯,一個完全可以商用的壓縮軟體,打開7-Zip,他如檔案總管的介面,本來是選檔案或資料夾來壓縮的,但也可以刪除檔案或資料夾,很簡單,選起來,按Del或是Shift-Del。
收工。

2019年8月12日 星期一

Linux samba share的中文檔案名稱在windows顯示為亂碼。設定Samba參數後正常。

Linux samba share的中文檔案名稱在windows顯示為亂碼。設定Samba參數後正常顯示了。

Samba伺服器端語言設定選項有三個 (/etc/samba/smb.conf中預設沒有這三個選項,需自行加入)
display charset = UTF8
dos charset = cp950
unix charset = UTF8
此三選項「等於」後面要接cp950 or UTF8要看您當時的環境來設定

以我的環境為例:
Linux為BIG-5 (由/etc/sysconfig/i18n這個檔可以看出Linux的設定)而Samba Server要分享檔案給繁體中文的 Windows 系統時,則伺服器該如下設定:
display charset = cp950
dos charset = cp950
unix charset = cp950

而如您的Linux作業系統編碼為Unicode,而Samba Server要分享檔案給繁體中文的 Windows 系統時,則伺服器該如下設定:
display charset = UTF8
dos charset = cp950
unix charset = UTF8

記得設定完成請執行testparm檢查看看參數檔有沒有問題
最後重起service
/etc/init.d/smb restart

參考資訊
https://www.cnblogs.com/linuxbo/p/4289912.html

2019年8月7日 星期三

設定Word開啟合併列印文字檔,預設的編碼格式,不會出現轉換編碼對話框Disable Word 2010 File Conversion dialog

Word在合併列印時(mail merge),資料文字檔為Big5編碼,在開啟合併列印檔時,Word會判斷成別的編碼格式,而造成亂碼! 如果選取Window(Default),才會正常。
如下圖(來源亂馬客https://rainmakerho.github.io/)

如何解呢? 當然問Google了,國內外熱心網友已解,只是Keyword對了才找的到,方法就是改Registry
to the following key:
HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Word\Options
added the DWORD 
DefaultCPG 值是10進位的950 ,值很重要,950是BIG-5碼,不同時數字為不同的編碼,在我的case,TEXT都是BIG-5,所以設定950,但這也是雙面刃,改了Reg,就表示固定死了,不會出現對話框,沒有機會手動改,如果是別的編碼檔案,就會用DefaultCPG設定的編碼去開。所以DefaultCPG 值設定950,如果開UTF8編碼的檔案,會變成亂碼哦!

所以除非自己很清楚自己的text檔狀況,否則別加入DefaultCPG的設定哦!

據網友回報這個設定可以使用在Word2003、Word2007、Word2010、Word2013,其他版本請知道的網友補充。謝謝!!!



參考資料:

[Office]設定Word開啟合併列印文字檔,預設的編碼格式| 亂馬客- 點部落
使用Word 開啟純文字檔,不要出現檔案轉檔視窗 - 我亦非我- I am not me

2019年7月10日 星期三

outlook favorites outlook我的最愛有時會消失不見


https://social.technet.microsoft.com/Forums/office/en-US/4cdf8f7a-c674-430d-8602-c27ea9a182de/outlook-2010-favorites-disappear?forum=outlook


I managed to get them back by right-clicking on the 'Mail' shortcut in the nav pane, and clicking 'Open in New Window' Will see if it happens again, and if the same fix keeps working. Cheers
-------------------------------------------------------
 To Microsoft - I have experienced this issue for years, and like some others, have many accounts that make outlook ONLY practical to use if i can navigate within favorites, scrolling through 100 folders to check between 2 inboxes is ridiculous. I eventually did find that a full computer restart(not outlook restart) brought the folders back 90% of the time. Which of course requires me to close every single work project and window i am working on my four monitors. Interesting enough after i setup an exchange account this got worse, so i found this thread. Office 2013 around the corner and no fix, what kind of message does that send users about investing in 2013 with same issues, i really had faith in my favorite tech company that any day this was going to be fixed for 2010.. what do i say to my apple friends? Also spent 3.5 hours yesterday on tech support for exchange, 2.5 was on hold.
     To users - I have spent today researching options, and found this as the best process to take for a solid start. (creating new profile is not the answer and a waste of time it seems many vouch for including my situation).
(Skip to step 5 to try and quickly bring back favorites now)
    1. Disable all addons not in use
    2. Clean up contacts/calendars (for less possible sync issues)
    3. install sp 1 32/64bit (google easily).
    4. Restart your comp, open outlook only, set all your favorites folders accordingly, close outlook and give it a minute to properly close and save configuration, then restart again.(my safegaurd not fact)
   5. Click a shortcut such as calendar or contacts, and then click back to mail.  
   6. Right-click on the 'Mail' shortcut in the nav pane, and clicking 'Open in New Window' 
   7. Start-> Run; outlook.exe /resetnavpane
   8. Press File the Exit Outlook first
find your Outlook.xml file here : C:\Users\(your username)\AppData\Roaming\Microsoft\Outlook
rename "outlook.xml" to "outlook.old"
Restart Outlook
------------------------------------------
I have been directed to test KB2687608.  It lists in the notes, "After you add many folders to the Favorites list in Outlook 2010, some folders are not displayed in the list. Then, after you restart Outlook, some folders are still not displayed."
http://support.microsoft.com/kb/2687608
I have installed and restarted Outlook 2010 over 30 times now with no issue.  I am about to install on a few users' workstations for additional testing.  If this solves anyone else's issue, I would like to know.  Thanks.


Alex Gibbs

2019年5月20日 星期一

品科技提供的一套完整且免費的研討會報到系統~~~用Google Sheet搭配APP | 做出掃瞄QR code報到系統

常開研討會的人都有體會,報到常花很多時間找名單簽到,工作人員忙進忙出,尤其是報到人數多時,一個亂字了得,如何可以快速的完成報到手續,主辦單位又可隨時知悉報到人員情況,那只有~~~掃QR code才快呀~~~

但是這些系統常需要錢錢才能用,有沒有免費又完整的報到系統呢? 答案是YES~~~感謝品科技提供出一套完整可用的掃瞄QR code報到系統,造福了大家呢~~~

流程簡述:

  1. 完成報名人員名單
  2. 以email方式發給將出席者之QR code
  3. 報到當天服務人員利用自己的手機掃出席者之QR code即完成報到手續
以上只是簡述,品科技還提供了當天臨時報名或忘了帶QR code的解決方式,所以我說它是一個完整的報到系統~~~

請參考品科技的詳細說明~~~https://www.pintech.com.tw/blog.php?id=30

2019年2月20日 星期三

改變exchange信箱滿時之提醒內容exchange Customizing the quota e-mails

New-SystemMessage
Ndr 和配額郵件的支援語言

Customizing the quota e-mailszh-CHT\WarningMailboxU... 請刪除信箱中不需要的郵件並清空 [刪除的郵件] 資料夾來縮減信箱大小。zh-CHT\WarningPublicFo... 請降低您的公用資料夾大小,刪除任何不需要的項目。zh-CHT\WarningMailbox 請降低您的信箱大小。刪除信箱中任何不需要的項目,並清空 [刪除的郵件] 資料夾。zh-CHT\WarningPublicFo... 請降低您的公用資料夾大小,刪除任何不需要的項目。zh-CHT\ProhibitSendMai... 您的信箱已無法傳送郵件。請降低您的信箱大小。刪除信箱中任何不需要的項目,並清空 [刪除的郵件...zh-CHT\ProhibitPostPub... 使用者已無法張貼項目至此資料夾。請降低您的公用資料夾大小,刪除任何不需要的項目。zh-CHT\ProhibitSendRec... 您的信箱已無法傳送或接收郵件。請降低您的信箱大小,刪除信箱中任何不需要的項目,並清空 [刪除...zh-CHT\WarningMailboxM... 請刪除項目,或將此資料夾中的項目移到其他資料夾,以減少此資料夾中的郵件數目。zh-CHT\ProhibitReceive... 除非此資料夾中的郵件總數少於允許的數目,否則無法新增郵件至此資料夾。如果使用規則傳遞郵件至...zh-CHT\WarningFolderHi... 請移除您不需要的資料夾,或將資料夾移到資料夾階層中的其他位置,以減少子資料夾的數目。zh-CHT\ProhibitReceive... 除非子資料夾數少於允許的數目,否則無法將資料夾新增至資料夾階層中的此位置。請移除您不需要的...zh-CHT\WarningMailboxM... 請刪除項目,或將此資料夾中的項目移到其他資料夾,以減少此資料夾中的郵件數目。zh-CHT\WarningFolderHi... 請移除您不需要的資料夾,或將資料夾移到資料夾階層中的其他位置,以減少子資料夾的數目。zh-CHT\WarningFolderHi... 請移除不要的資料夾,或是將資料夾移至資料夾階層中的其他位置,以減少資料夾階層數。zh-CHT\ProhibitReceive... 除非資料夾階層數少於允許的數目,否則無法在資料夾階層中的這個位置新增資料夾。請移除不要的資...zh-CHT\WarningFolderHi... 請移除不要的資料夾,或是將資料夾移至資料夾階層中的其他位置,以減少資料夾階層數。zh-CHT\WarningFoldersC... 請降低資料夾階層大小,移除您不需要的資料夾。zh-CHT\ProhibitReceive... 在資料夾階層大小小於所允許的數量前,無法新增資料夾。請移除您不需要的資料夾,降低資料夾階層...

升級至Exchange 2016和outlook 2010連線很慢,另外Web介面的Exchange 系統管理中心反應也很慢.Outlook slow after migrating to Exchange 2016..

Outlook slow after migrating to Exchange 2016

由exchange 2010升級至 exchange 2016後

  • 發現用outlook 2010 online mode連上exchange 2016超級慢,cache mode有好一點,但也是慢。
  • 另外使用Web介面的Exchange 系統管理中心也是後慢,硬體是新的,Ram很大,如此的表現真的很怪...
  • 我用google大神匯總了熱心人士PO文的幫忙下,終於...慢的問題似乎解決了,3大方向如下:
    • 因為exchange server放在VMware上,所以網路設定需要tuning,可調vmware或PC端,我是調整PC端regedit 「TcpAckFrequency」,如果沒調它outlook attach file or reply large email會很慢。
    • exchange 2016是使用最新的MAPI over HTTP protocol,但它似乎和outlook 2010不太合,所以我disable MAPI over HTTP,讓outlook 2010使用原有的RPC/HTTP方式連線,如果沒調它outlook反應很慢或是沒有回應。
      參考資料:Outlook Slow and Unresponsive with MAPI over HTTP to Exchange 2016
    • Disable Exchange server IPv6,如果沒調它exchange web管理介面反應很慢
以下是解決的方式,分別設定Client PC及Exchange Server
Client:
在執行outlook的電腦改一下regedit
參考資料:http://support.microsoft.com/kb/2020559/en-us
  1. Start Registry Editor (Regedit.exe).
  2. Locate and then click the following registry subkey:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces
    the interfaces will be listed underneath by automatically generated GUIDs like {064A622F-850B-4C97-96B3-0F0E99162E56}
  3. Click each of the interface GUIDs and perform the following steps:
    a.  On the Edit menu, point to New, and then click DWORD value.
    b.  Name the new value TcpAckFrequency, and assign it a value of 1.
  4. Expand HKEY_CURRENT_USER > Software > Microsoft > Exchange.
  5. Right-click Exchange, and then click New > DWORD. 
  6. A new DWORD entry appears in the right pane.
  7. Right-click the new DWORD entry, and then click Rename.
  8. Type MapiHttpDisabled.
  9. Right-click the MapiHttpDisabled entry, and then click Modify. 
  10. The Edit DWORD Value dialog box appears.
  11. In the Value box, type 00000001, and then click OK.
  12. Exit the Registry Editor.
  13. Restart Windows for this change to take effect.

Exchange server上要將IPv6 disable
To configure IPv6, modify the following registry value based on the following table.

Location:         HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters\
Name:             DisabledComponents
Type:             REG_DWORD
Value:        0xFF (IPv6 disabled)

注意:IPv6的值一定要是0xff 如果是0xfffffff表示是錯的,將它設定成0xff

應不用重開server,如果不放心,重開也OK,但再進到Regedit Check一下值對不對。

參考資料:
Outlook slow connectivity after Exchange 2010-2013 migration

Guidance for configuring IPv6 in Windows for advanced users

slow online mode "browsing"

2019年1月7日 星期一

已解決:excel 2010一開啟檔案就當機,因為KB4461627 excel crash


今天一早使用Excel開啟已存在的檔案都會down機...因為ntdll.dll

重開機沒用
刪profile沒用
run excel /save 沒用
最後發現應是KB4461627的關係,移除後...好了


Microsoft官方回應說uninstall之
以下參考其它網友: