This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Google Apps Script: Auto-Forward Emails to Xero | |
| * Author: Lukas Gibb (Written with help from ChatGPT o1) | |
| * Email: lg@cloudjourneyman.com | |
| * Credit for idea: Reddit User 'zfa' (https://www.reddit.com/user/zfa/) mentioned this idea here: | |
| * https://www.reddit.com/r/GMail/comments/hk4gc1/comment/fwrcghc/ | |
| * | |
| * Purpose: | |
| * Xero (accounting tool) allows PDF invoices to be forwarded manually to create draft invoices. | |
| * Doing this one-by-one can be time consuming and tedious so it would be great to just set up filters |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # set strong cryptography on 64 bit .Net Framework (version 4 and above) | |
| Set-ItemProperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type DWord | |
| # set strong cryptography on 32 bit .Net Framework (version 4 and above) | |
| Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type DWord | |
| # set strong cryptography on 64 bit .Net Framework (version 3.5) | |
| Set-ItemProperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\.NetFramework\v2.0.50727' -Name 'SchUseStrongCrypto' -Value '1' -Type DWord | |
| # set strong cryptography on 32 bit .Net Framework (version 3.5) |