0
A
回答
0
感謝Frank白給我最初的線索:)
繼承人的完整回答我的問題。
using Microsoft.Win32;
//this will create the subkey or if it already exists will just get the location. there is //no getsubkey in the registryclass
RegistryKey rkRegOutlookPreferences = Registry.CurrentUser.CreateSubKey(@"Software\Microsoft\Office\11.0\Outlook\Preferences");
//this will add in or change a value in that subkey
rkRegOutlookPreferences.SetValue("NewmailDesktopAlerts", "0", RegistryValueKind.DWord);
//there is also getValue; this will return a null if the value doesnt exist
rkRegOutlookPreferences.GetValue("NewmailDesktopAlerts")
//and deleting
rkRegOutlookPreferences.DeleteValue("NewmailDesktopAlerts");
還有更多,但這完成了我的問題的完整答案。再次感謝弗蘭克懷特給我的第一步。
1
HKEY_CURRENT_USER\Software\Microsoft\Office\<version number here>\Outlook\Preferences\NewmailDesktopAlerts
將其改爲零。
相關問題
- 1. 以編程方式禁用Outlook Addin
- 2. Android以編程方式停止Toast通知?
- 3. 以編程方式禁用/啓用通知
- 4. 以編程方式啓用/禁用Outlook Addin
- 5. iOS:禁用推送通知以編程方式下拉托盤
- 6. Android - 以編程方式禁用短信通知
- 7. 如何以編程方式禁用SMS通知?
- 8. 以編程方式禁用新MMS消息的系統通知?
- 9. 通過Outlook 2003通知TFS工作項?
- 10. 以編程方式點擊Android通知
- 11. 以編程方式禁用FirebaseMessagingService
- 12. 以編程方式從通知中心刪除遠程通知
- 13. 以編程方式禁用UIButton
- 14. 如何通過編程方式更改Toast的對齊方式?
- 15. 以編程方式禁用麥克風
- 16. 以編程方式獲取Outlook信息
- 17. 如何以編程方式禁用cookie
- 18. 以編程方式禁用ipv4/ipv6
- 19. 以編程方式啓用/禁用Log4jLogger?
- 20. 如何以編程方式禁用Outlook中的聯繫人編輯?
- 21. 以編程方式禁用UIButton
- 22. 以編程方式運行Outlook搜索
- 23. 以編程方式管理Outlook?
- 24. 以編程方式激活Outlook
- 25. 以編程方式創建Outlook帳戶
- 26. 以編程方式刪除Outlook簽名
- 27. Spring Boot - 以編程方式禁用AutoConfiguration
- 28. 如何以編程方式禁用SparkUI?
- 29. Android以編程方式禁用onScroll()
- 30. UIWebView以編程方式禁用縮放