The process is surprisingly simple. Amazon simply gets you to fill in forms which tailor a whole bunch of skills to your needs. There are loads of suggestions from countdowns and school schedules to activities for kids and games that can be tailored.
[mai mult...]How to use Apple Invites to plan your next event
Apple’s new Invites app makes event planning easier by allowing you to create, customize, and share invitations directly from your iPhone or web browser. Whether you’re organizing a party, a work event, or a casual get-together, Apple Invites offers a seamless way to manage RSVPs and keep guests updated.
[mai mult...]How to fix : your Computer’s trusted Platform Module has malfunctioned Windows 11 Error
Option 1: Prepare the TPM
In some cases, preparing TPM fixes this error in Windows 11. To do so, follow the steps below.
- Launch the Run dialogue box by pressing the Windows key + R simultaneously. After that, type “tpm.msc” in the Run input field, then click the OK button.

- In the Trusted Platform Module (TPM) Management on Local Computer window, click Prepare the TPM… on the Action panel.

- After doing all that, follow the prompt and restart your computer. Hopefully, that resolves the issue.Otherwise, check out the other solutions below.
Option 2: Update or Reinstall the TPM Driver
A corrupt or outdated TPM driver sometimes causes this error in Windows 11. If that’s the case, updating or reinstalling the driver should fix the issue. The sub-sections below will demonstrate how to update or reinstall the TPM driver in Windows 11.
Method 1: Update TPM Driver in Windows 11
- Right-click the Start button on the Windows 11 taskbar. Then, select Device Manager from the displayed options.

- Following that, double-click Security devices in the Device Manager to expand it.

- Afterward, right-click Trusted Platform Module 2.0 under Security devices, then select Update driver from the displayed options.

- Now, click Search automatically for drivers. Hence, Windows will start searching the internet for the latest TPM driver for your PC and automatically install it – see the second screenshot below.


- After you’ve successfully updated the TPM driver, reboot your PC. Hopefully, the issue will be resolved.
Method 2: Reinstall TPM Driver in Windows 11
- Replicate steps 1 and 2 in the previous sub-section above. Then, right-click Trusted Platform Module 2.0 under Security devices and select Uninstall device from the displayed options.

- Following that, click the Uninstall button in the prompt that appears.

- After doing all that, restart your PC. Thus, upon restart, Windows will automatically reinstall the TMP driver and potentially fix the error.
Option 3: Disable ADAL
Several individuals reported that disabling ADAL (Azure Active Directory Authentication Library) often fixes this error. To do that, follow the procedures below.
- On the Windows 11 taskbar, right-click the Start button and select Run from the options that appear.

- After that, type “regedit” in the Run input field and press the enter key. Subsequently, a User Account Control prompt will appear, asking for permission to authorize the application to make changes to your computer – click Yes to continue.

- When the Registry Editor opens, navigate to the following location using the folders on the left pane.
Computer\HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Common\Identity

- Now, right-click any free area on the right pane, hover your mouse on New, and select DWORD (32-bit) Value.

- Following that, rename the new key as “EnableADAL”

- Afterward, double-click the EnableADAL key to edit it. Then, ensure the Value data is set to “0” and click the OK button.

- Finally, restart your PC, and the issue should be fixed. If this procedure doesn’t fix the error, move on to the last solution below.
Option 4: Clear TPM
Another viable solution to fix this error on your Windows 11 computer is to clear the TPM (Trust Platform Module). However, before doing that, ensure to back up all of your important files.
That being said, observe the following procedures to clear the TPM in Windows 11.
- Click the Start button on the Windows 11 taskbar. Then, input “windows security” in the search field and select the Windows Security app from the search result.

- On the Windows Security window, select Device security from the homepage.

- Now, click the Security processor details link under Security processor.

- Following that, in the Status category, click the Security processor troubleshooting link.

- Afterward, click the Select button in the Clear TPM category. Then, choose a reason you want to clear TPM from the list of options that appear.

- After doing that, click the Clear TPM button.

- Consequently, a prompt will appear listing a couple of things that could happen if you clear TPM – click Clear and restart from the prompt.

How to fix Windows 11 Widgets if not working
Solution 1: Re-enable Widgets
The easiest and fastest way to fix this problem is to disable and re-enable Widgets on your Windows 11 PC. To do that, follow the steps below.
- Right-click a free area on your Windows 11 taskbar and select Taskbar settings
- Following that, turn off and turn on the Widgets toggle on the Settings window’s right pane. After doing that, check if the problem has been fixed.If it hasn’t been fixed, try the other solutions below.

Solution 2: Restart Windows Widgets and Windows Explorer Processes
Another way to fix this problem is to restart the Windows Widgets and Windows Explorer processes on your Windows 11 PC. Follow the procedures below to accomplish that.
- Right-click your Windows 11 Start menu button and select Task Manager from the displayed options. Alternatively, you can also use the Ctrl + Shift + Esc keyboard shortcut to open Task Manager.

- Under the Background processes section in the Processes tab in Task Manager, right-click Windows Widgets and select End task.

- After doing that, right-click Windows Explorer under the Windows processes section and select Restart.

- After doing all that, check if your Windows 11 widgets are working again. If they are working, cheers!However, if they still aren’t working, check out the last solution of this guide below.
Solution 3: update Graphics Driver
In some instances, an outdated graphics driver can cause the widgets on your Windows 11 PC not to work. If that’s the case, updating the graphics driver on your PC should resolve the issue.
The following steps demonstrate how to update the graphics driver in Windows 11.
- On your Windows 11 taskbar, right-click the Start menu and select Device Manager from the options that appear

- Following that, double-click Display adapters on the Device Manager window to expand it

- Under Display adapters, right-click your PC’s graphics driver and select Update driver

- After that, click Search automatically for drivers on the Update Drivers window

- Consequently, Windows will start searching online for the latest graphics driver and automatically install it on your PC. Hence, ensure your Windows 11 PC is connected to the internet during this process.

- After updating your computer’s graphics driver, reboot your PC. Optimistically, the problem will be solved, and the widgets will start working again.
How to fix a Tombstoned Domain Controller
Step 1: Remove the DNS Server Role from the DC
This must be performed first. Otherwise, the DC demotion task (Step 2) fails.
#Open PowerShell as administrator Uninstall-WindowsFeature -Name DNS
Restart the server to complete the removal of the DNS role.
Step 2: Remove the Global Catalog Role from the DC
If the server is badly broken, you must remove the Global Catalog role from the DC. Otherwise, the DC demotion will also fail.
- Open Active Directory Sites and Services via Server Manager (link opens in a new browser tab).
- Then, navigate to the DC’s site and expand it, then expand Servers and click the server name. On the details blade, right-click NTDS Settings, and select Properties.

- After that, clear the Global Catalog check box, select Yes to the warning message, and finally, select OK.

Step 3: Demote the Server as a Domain Controller
#1. Save the password to use as local Administrator password. At the cred prompt, enter Administrator as the username and then, the password you want to use as the server's local Administrator password post its demotion as a DC $password = Get-Credential #2. Demote the Server as a DC Uninstall-ADDSDomainController -LocalAdministratorPassword $password.password -Confirm:$false -NoRebootOnCompletion -ForceRemoval -SkipPreChecks
See the results of the commands below:


Restart the server to complete the demotion.
Step 4: Perform Metadata Cleanup from the FSMO Role Holder
After demoting the DC, before re-proting it, you must perform a metadata cleanup of the DC using ntdsutil.
Follow the steps below to complete this task.
- Determine the FSMO role holder by running the command below from any Domain Controller.
netdom query fsmo
- Sign into the DC that holds the FSMO roles and open the command prompt as administrator. Then, run the following ntdsutil commands in the order provided.
#1. Type ntdsutil and press enter. Then, on the ntdsutil prompt, type metadata cleanup and press enter ntdsutil: metadata cleanup #2. On the metadata cleanup: prompt, execute the followin commands metadata cleanup: connections metadata cleanup: connect to server <domain_fsmo-role-holder> metadata cleanup: q #3. Then, on the metadata cleanup: prompt, type select operation target, then press enter key. metadata cleanup: select operation target #4. On the select operation target: prompt, run the following commands in order: select operation target: list domains select operation target: select domain <enter number for the domain where the failed DC resides> select operation target: list sites select operation target: select site <enter the site number of the failed DC> select operation target: list servers in site select operation target: select server <enter number of the server> select operation target: q #5. On the metadata cleanup: prompt, execute remove selected server metadata cleanup: remove selected server Then, on the Server Remove Confirmation Dialog, confirm that the DC you want to remove is displayed, then select Yes. #6. Quit metadata cleanup and ntdsutil by executing the q command in both prompts

- Log on to the FSMO role DC and force replication by running the command below from a command prompt opened as administrator.
repadmin /syncall <domain_fsmo-role-holder> /Aped
Quit the repadmin command by pressing any key.
- Then, monitor the progress of the replication by running the command below. Replace the text in bold with the Distinguished Name of the server you’re cleaning its metadata.
repadmin /showobjmeta * "<enter the Distinguished Name of the server here>"

For the avoidance of doubt, the above command must only return parts of the result that says “Directory object not found.” If it rertuns a table, you must wait until the command no longer returns a table.
Step 5: Reinstall the DNS Server Role on the Server
In Step 1, we removed the DNS Server role. Before promoting it to a DC, you must reinstall this role with the following steps:
- Sign in to the server as local administrator – enter .\administrator in the username field – and use the password you specified in Step 3 when you demoted the server as a DC.
- Execute the command below to reinstall the DNS Server role, including all sub-features and management tools, and restart the server if required.
#Open PowerShell as administrator Install-WindowsFeature -Name DNS -IncludeAllSubFeature -IncludeManagementTools -Restart #see the screenshots below for the progress and result of the command


How to enable God Mode in Windows 11 or Windows 10
How to enable Windows Recall
Recall can track down any words, photos, or links you’ve forgotten, lost, or accidentally closed, as these can be retrieved with a simple search through the tool.
[mai mult...]How to set up OpenClaw AI on AWS
OpenClaw AI is an open-source, self-hosted AI assistant designed to execute real tasks, integrate with tools, and give you full control over your data and workflows. Running OpenClaw on AWS allows you to keep ownership of your infrastructure while benefiting from scalability, security, and reliability.
[mai mult...]How to customize the Control Center in macOS Tahoe 26
The Control Center has been a part of macOS since the release of Big Sur in 2020, allowing easy access to important settings such as Wi-Fi, volume and the display brightness. Since then, it has only benefited from minor tweaks but, with the release of macOS Tahoe, that has changed.
[mai mult...]