1 2 3 4 5 6 7 8 |
Set-Location Registry::HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\run Get-Item -Path Registry::HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\run #Arrancar PowerShell al iniciar sesión del usuario New-ItemProperty -Path . -Name powershell -PropertyType String -Value "powershell.exe" Get-Item -Path Registry::HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\run |