Infinity Free .Great test environment that cost nothing. Unlimited hosting, completely free, no ads, any domain.
https://www.infinityfree.com
Welcome to my little corner of the internet, where I've gathered all the nifty IT stuff that I find super interesting and useful. You will see my System Administrator notes, tips, and tools that I use based on my experience. These resources help me tackle tech issues with ease and boost my productivity. I truly hope you find these materials as valuable as I do. And hey, thanks for dropping by my little IT sanctuary. Alexander Reydman
Infinity Free .Great test environment that cost nothing. Unlimited hosting, completely free, no ads, any domain.
https://www.infinityfree.com
In my case, in a mixed environment, I can't add an alias via Exchange online, and we don't have an exchange on promises.
AD Sync pushes the attributes from AD to 365 so... if you no longer have an on-prem Exchange server, that's fine... use Active Directory's attribute editor like you did before Exchange started allowing these aliases added directly in the EAC. Jump into your domain controller, open ADUC and open the user. Click the Attribute Editor and add your aliases there.
Email address type update failed
Error:
By Malwarebytes lab
Threat actors are known for impersonating popular brands in order to trick users. In a recent malvertising campaign, we observed a malicious Google ad for KeePass, the open-source password manager which was extremely deceiving. We previously reported on how brand impersonations are a common occurrence these days due to a feature known as tracking templates, but this attack used an additional layer of deception.
The malicious actors registered a copycat internationalized domain name that uses Punycode, a special character encoding, to masquerade as the real KeePass site. The difference between the two sites is visually so subtle it will undoubtedly fool many people.
We have reported this incident to Google but would like to warn users that the ad is still currently running.
A detailed article by Malwarebytes here: https://www.malwarebytes.com/blog/threat-intelligence/2023/10/clever-malvertising-attack-uses-punycode-to-look-like-legitimate-website
Well known issue, that you can solve easily by running simple command in powershell:
Get-Mailbox -Filter {ArchiveStatus -Eq "None" -AND RecipientTypeDetails -eq "UserMailbox"} | Enable-Mailbox -Archive
Done :)
Please notice , to be able to do so you have to Connect to Exchange Online PowerShell.
This is as well useful option to Enable auto-expanding archiving
Windows 10 and 11
If the list of local users is not displayed on the computer logon screen, check the settings of the following local Group Policy options (use the gpedit.msc
):
Disabled
(Computer Configuration -> Windows Settings -> Security Settings -> Local Policies -> Security Options);Enabled
(Computer Configuration -> Administrative Templates -> System -> Logon)Disabled/Not Configured
(in the same GPO section)
Type this command at the prompt:
wmic path softwareLicensingService get OA3xOriginalProductKey
Type this command at the PowerShell:
powershell "(Get-WmiObject -query 'select * from SoftwareLicensingService').OA3xOriginalProductKey"
Type regedit
into the Windows 10 desktop search, and select the appropriate item in the results. Navigate to this key:
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform
the BackupProductKeyDefault key will reveal a valid Windows key ( Windows 10)
Commands that I use at least once a week.
Perform SFC Scan and Repair Windows Image
-This process will perform scan for any corrupted system files or
integrity violation and will attempt to repair it along with the Windows
Image.
1. Open command prompt with administrator access
2. Type each command below and wait until scan is completed.
SFC /scannow
DISM /Online /Cleanup-Image /CheckHealth
DISM /Online /Cleanup-Image /ScanHealth
DISM /Online /Cleanup-Image /RestoreHealth
Please see other article about Optimal Order for Running DISM and SFC
Ninite.com is a free and user-friendly service that simplifies the process of installing and updating commonly used software on Windows com...