Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Creer AppModelUnlock s'il n'existe pas,requit pour activer le mode developpeur
- $RegistryKeyPath = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock"
- if (-not(Test-Path -Path $RegistryKeyPath)) {
- New-Item -Path $RegistryKeyPath -ItemType Directory -Force
- }
- #Ajouter une valeur de registre pour activer le mode developpeur
- New-ItemProperty -Path $RegistryKeyPath -Name AllowDevelopmentWithoutDevLicense -PropertyType DWORD -Value 1
- #Activer la fonctionalite Sous systeme Windows pour linux
- Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
- #Lancer l'installation du Sous systeme Windows pour linux et créer l'utilisateur par defaut
- $command = @'
- cmd.exe /C start C:\Windows\System32\bash.exe lxrun /install /y
- cmd.exe /C start C:\Windows\System32\bash.exe lxrun /setdefaultuser $env:UserName /y
- '@
- Invoke-Expression -Command:$command
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement