• 2 Posts
  • 10 Comments
Joined 1 year ago
cake
Cake day: April 5th, 2024

help-circle

  • https://en.wikipedia.org/wiki/List_of_airship_accidents

    Apart from the 80% of the entries that are basically “Crashed during bad weather” - my personal highlights:

    … breaks loose from its mooring during a storm and is blown over the English Channel; after sightings in Wales and Ireland and a brief touchdown in Belfast, the airship was blown out over the Atlantic Ocean and is never seen again.

    Zeppelin LZ 8 Deutschland II (brand new) is caught by a wind gust while being walked out of its hangar and damaged beyond repair after it smashes on the roof of the hangar.

    … the airship, weighed down with gold and burgundy paint, reached 600 feet altitude before beginning an unplanned right descending turn, making a “controlled descent” into a garbage dump, impaling the blimp on a pine tree, coming down just a quarter-mile from the site of the Hindenburg’s 1937 demise.

    … suffers an intentional mid-air collision with a radio-controlled airplane.



  • You can already do that:

    Get-AppxPackage "Microsoft.XboxApp" | Remove-AppxPackage
    Get-AppxPackage "Microsoft.XboxIdentityProvider" | Remove-AppxPackage -ErrorAction SilentlyContinue
    Get-AppxPackage "Microsoft.XboxSpeechToTextOverlay" | Remove-AppxPackage
    Get-AppxPackage "Microsoft.XboxGameOverlay" | Remove-AppxPackage
    Get-AppxPackage "Microsoft.XboxGamingOverlay" | Remove-AppxPackage
    Get-AppxPackage "Microsoft.Xbox.TCUI" | Remove-AppxPackage
    Set-ItemProperty -Path "HKCU:\Software\Microsoft\GameBar" -Name "AutoGameModeEnabled" -Type DWord -Value 0
    Set-ItemProperty -Path "HKCU:\System\GameConfigStore" -Name "GameDVR_Enabled" -Type DWord -Value 0
    If (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\GameDVR")) {
    	New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\GameDVR" | Out-Null
    }
    Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\GameDVR" -Name "AllowGameDVR" -Type DWord -Value 0
    

    You’re welcome