Skip to content

Instantly share code, notes, and snippets.

View M8anu's full-sized avatar
❄️
Guardo calor en un saco para cuando vuelva a hacer frío

Manuel M8anu

❄️
Guardo calor en un saco para cuando vuelva a hacer frío
View GitHub Profile
@gamersalpha
gamersalpha / gist:786c408ab86cf4b0887be16f462d7f43
Created October 21, 2024 07:30
Information recall WIndows
# Obtenir la version de Windows
$windowsVersion = (Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").ReleaseId
$windowsBuild = (Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").CurrentBuild
# Afficher la version et le build
Write-Host "Version de Windows : $windowsVersion"
Write-Host "Build de Windows : $windowsBuild"
# Vérifier si la fonctionnalité "Recall" est activée
$RecallEnabled = Dism /online /Get-FeatureInfo /FeatureName:Recall | findstr /B /C:"State"
@hofmannsven
hofmannsven / README.md
Last active November 10, 2024 13:48
Git CLI Cheatsheet