Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- echo Batch pour forcer le parametrage du proxy - MB. Technology Inc 2013 -
- rem requête de l'IP
- @SET /P adresse=[Entrez l'adresse IP du poste]
- pushd "\\chemin\UNC\vers\Sysinternals\"
- rem extraction du SID de l'utilisateur connecté au poste distant
- rem premiere étape, trouver le samaccountname (%samAN%) à partir de l'IP via wmic
- for /f %%a in ('wmic /Node:%adresse% ComputerSystem Get UserName^|find /i "mdl"') do (set samAN=%%a)
- rem seconde étape, récuperer l'USID avec psgetsid.exe (%USID%)
- for /f %%b in ('Psgetsid.exe /accepteula \\%adresse% %samAN%^|find /i "S-1"') do (set USID=%%b)
- rem modification de la base de registre distante
- rem démarrage du service "Registre à distance", passage en auto
- sc \\%adresse% start RemoteRegistry&&sc \\%adresse% config RemoteRegistry start= auto
- reg add "\\%adresse%\HKU\%USID%\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /t REG_SZ /d http:adresse.du.proxy:port /f
- reg add "\\%adresse%\HKU\%USID%\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 00000001 /f
- popd
- pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement