miércoles, 20 de julio de 2022

meet

 ctrl + alt + j

 ctrl + alt + k aumentar el numero de mosaicos

c activar o desactivar subtitulos

ctrl + d activar/desactivar microfonos

ctrl + e activar/desactivar video

domingo, 17 de julio de 2022

play

 https://viperplay.net/

https://www.extremotv.me/

https://www.rojadirectaenvivo.club/

tele latino app

nodo flix

****************

aislantes termo acusticos

tecnopor, lana de polieste, paneles de espuma, lada de roca y fibra de vidrio


****************

https://tally.so/ FORMULARIOS

SwissTransfer.com

https://www.swisstransfer.com

viernes, 1 de julio de 2022

error en powershell para habilitar comandos y scripts y active directory RSAT

Power Shell

Por tanto, el error es que en el sistema esta deshabilitada la ejecución de scripts o esta «Restringido». Si abrimos el Windows PowerShell como administrador y ejecutamos el comando Get-ExecutionPolicy nos tendría que devolver «Restricted» o lo que es lo mismo «Restringido». Para cambiar esta configuración basta con ejecutar Set-ExecutionPolicy Unrestricted y indicar Si[S]. (yo o tambien O)

ventana

https://learn.microsoft.com/en-us/troubleshoot/windows-server/system-management-components/remote-server-administration-tools

------------

https://learn.microsoft.com/en-us/answers/questions/694247/rsat-not-an-option-w11

algunos comandos

Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State

Get-WindowsCapability -Name Rsat.GroupPolicy.Management.Tools* -Online | Add-WindowsCapability -Online


Al final lo que hice fue instalar la actualizacion de windows 10 luego use

Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State

luego fui a aplicaciones y alli lo encontre e instale

----

Instalación de las herramientas de administración remota del servidor (RSAT)

Realice los siguientes pasos para instalar las herramientas de administración remota del servidor (RSAT) en un servidor que ejecute Windows Server Core.

  1. EscribaStart PowerShellen la ventana delsímbolo del sistemapara iniciarWindows PowerShell.
  2. Escriba Install-WindowsFeature .RSAT y presione Intro para instalar la

*************

como habilitar comandos

https://www.cdmon.com/es/blog/la-ejecucion-de-scripts-esta-deshabilitada-en-este-sistema-te-contamos-como-actuar

 https://www.youtube.com/watch?v=ZKwSWslI1QQ


Use Below PowerShell script to achieve this-

This will allow admin to set proxy for others users session-

Note- This is the sample code I have used based on my requirement however registry path can be changed to achieve different approach.

$Users = Get-WmiObject Win32_UserProfile -Filter 'Special=False' | select SID
foreach($User in $Users)

{
$SID = $User.SID
reg add "HKEY_USERS\$SID\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v AutoConfigURL /t REG_SZ /d "http://xyz/wpad.dat" /f
REG ADD "HKEY_USERS\$SID\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v AutoDetect /t REG_DWORD /d 0 /f
}


@echo off
cls
for /f "tokens=3 delims= " %%a in ('reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /t REG_SZ ^| findstr "REG_SZ"') do set currentValue=%%a
echo %currentValue%
echo
echo Select:
echo [1] I am at work

echo [2] I am at home
:choice
SET /P C=[Please enter a number]?
for %%? in (1) do if /I "%C%=="%%?" goto 1
for %%? in (2) do if /I "%C%=="%%?" goto 2

:1
@echo off
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /t REG_SZ /d 192.168.85.129:3128 /f
goto end

:2
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f
goto end

:end
https://www.shellhacks.com/windows-get-user-sid-cmd-powershell/
https://www.tenforums.com/tutorials/84467-find-security-identifier-sid-user-windows.html#option3

http://profesoremiliobarco.blogspot.com/2012/05/comando-for-para-archivos-bat.html
https://support.moonpoint.com/network/proxy/settings/
https://superuser.com/questions/419696/in-windows-7-how-to-change-proxy-settings-from-command-line