quick-post
Powershell Password Encryption and Decryption
Encrypte and Decrypt credential:
1 | #Create encrypt key |
Encrypt and Decrypt password:
1 | $Password = "Password123" |
Get AWS IAM credentials report script
Quick powershell script to generate and save AWS IAM credentials report to csv format on a local location.
1 | Import-Module AWSPowerShell |
How to verify google search with route53
Just recently got this site on google search, totally forgot about it when I created the site.
The process is quite easy. Follow the instructions on this link should cover the task.
Might take from 10 minutes to 5 hours for the TXT record to populate, so be patient!
How to find SCOM DB server
If Microsoft SQL mp is not available on your SCOM or the SCOM DB SQL Server is not discovered.
On SCOM management server regedit, navigate to
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft Operations Manager\3.0\Setup\DatabaseServerName
winhttp proxy command
Command to set windows server httpwin proxy setting.
1 | netsh winhttp set proxy proxy-server="http=<proxy>:<port>;https=<proxy>:<port>" bypass-list="<local>;<url>" |
Powershell script to grab winhttp value
1 | $ProxyConfig = netsh winhttp show proxy |