Gérer un compte
Fermé
Kevin1996
-
23 sept. 2021 à 07:01
choubaka Messages postés 39404 Date d'inscription jeudi 4 avril 2002 Statut Modérateur Dernière intervention 21 novembre 2024 - 23 sept. 2021 à 13:12
choubaka Messages postés 39404 Date d'inscription jeudi 4 avril 2002 Statut Modérateur Dernière intervention 21 novembre 2024 - 23 sept. 2021 à 13:12
A voir également:
- Gérer un compte
- Créer un compte gmail - Guide
- Créer un compte google - Guide
- Créer un compte instagram sur google - Guide
- Supprimer compte instagram - Guide
- Créer un compte hotmail - Guide
3 réponses
choubaka
Messages postés
39404
Date d'inscription
jeudi 4 avril 2002
Statut
Modérateur
Dernière intervention
21 novembre 2024
2 102
23 sept. 2021 à 13:12
23 sept. 2021 à 13:12
Je ne peux que te rediriger vers cette doc de microsoft... concernant Invoke-WebRequest
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/invoke-webrequest?view=powershell-7.1
regarde surtout ce qui concerne les credentials..
https://docs.microsoft.com/en-us/dotnet/api/system.management.automation.pscredential?view=powershellsdk-7.0.0
Teste d'abord sur un seul site ensuite, tu pourras gérer la liste de choix.
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/invoke-webrequest?view=powershell-7.1
regarde surtout ce qui concerne les credentials..
https://docs.microsoft.com/en-us/dotnet/api/system.management.automation.pscredential?view=powershellsdk-7.0.0
Teste d'abord sur un seul site ensuite, tu pourras gérer la liste de choix.
choubaka
Messages postés
39404
Date d'inscription
jeudi 4 avril 2002
Statut
Modérateur
Dernière intervention
21 novembre 2024
2 102
23 sept. 2021 à 07:40
23 sept. 2021 à 07:40
Bonjour
à quoi seront liés ces comptes prévus ? En fonction de l'utlisateur connecté ? D'un choix au début du script ?
à quoi seront liés ces comptes prévus ? En fonction de l'utlisateur connecté ? D'un choix au début du script ?
Clear-Host
function get-menu{
Write-Host "+----------------------------------------------------------+"-ForegroundColor Green
Write-Host "+ NOS COMPTS D'ADMINISTRATION Copyright (C) esis 2021+"-ForegroundColor Green -BackgroundColor DarkCyan
Write-Host "+----------------------------------------------------------+"-ForegroundColor Green
Write-Host " "
}
do{
get-menu
Write-Host "+-------------------+" -ForegroundColor Cyan
Write-Host "+ RESTONS CONNECTES +" -ForegroundColor Cyan
Write-Host "+-------------------+" -ForegroundColor Cyan
Write-Host " "
Write-Host "===== My MENU =======" -ForegroundColor Cyan -BackgroundColor DarkRed
Write-Host "| |" -ForegroundColor Red
Write-Host "| 1) Facebook |" -ForegroundColor Red
Write-Host "| 2) Instagram |" -ForegroundColor Red
Write-Host "| 3) Gmail |" -ForegroundColor Red
Write-Host "| 4) Whatapp |" -ForegroundColor Red
Write-Host "| |" -ForegroundColor Red
Write-Host "=====================" -ForegroundColor Red
Write-Host " "
Write-Host "1) Gerer comptes" -ForegroundColor Yellow -BackgroundColor DarkRed
Write-Host "2) Quitter " -ForegroundColor Yellow -BackgroundColor DarkRed
Write-Host " "
Write-Host " veuillez faire un choix : " -ForegroundColor Black -BackgroundColor DarkRed -NoNewline
switch ($choix =Read-Host)
{
"1" {Write-Host "1) facebook" -ForegroundColor Green
Write-Host "2) instagram" -ForegroundColor Green
Write-Host "3) gmail" -ForegroundColor Green
Write-Host "4) whatsapp" -ForegroundColor Green
Write-Host "5) quitter" -ForegroundColor Green
write-host "veuillez faire un choix :" -ForegroundColor Red -NoNewline
switch ($choi =Read-Host)
{
"1" {
start ('https://login.facebook.com/login.php')
$username = "*************"
$PWD = "*********"
}
"2"{
start www.instagram.com
}
"3"{
start www.Gmail.com
}
"4" {exit}
}
pause
}
"2" {exit}
default {
Write-Warning "choix n'est pas valide"
}
}
pause
Clear-Host
}while ($true)
function get-menu{
Write-Host "+----------------------------------------------------------+"-ForegroundColor Green
Write-Host "+ NOS COMPTS D'ADMINISTRATION Copyright (C) esis 2021+"-ForegroundColor Green -BackgroundColor DarkCyan
Write-Host "+----------------------------------------------------------+"-ForegroundColor Green
Write-Host " "
}
do{
get-menu
Write-Host "+-------------------+" -ForegroundColor Cyan
Write-Host "+ RESTONS CONNECTES +" -ForegroundColor Cyan
Write-Host "+-------------------+" -ForegroundColor Cyan
Write-Host " "
Write-Host "===== My MENU =======" -ForegroundColor Cyan -BackgroundColor DarkRed
Write-Host "| |" -ForegroundColor Red
Write-Host "| 1) Facebook |" -ForegroundColor Red
Write-Host "| 2) Instagram |" -ForegroundColor Red
Write-Host "| 3) Gmail |" -ForegroundColor Red
Write-Host "| 4) Whatapp |" -ForegroundColor Red
Write-Host "| |" -ForegroundColor Red
Write-Host "=====================" -ForegroundColor Red
Write-Host " "
Write-Host "1) Gerer comptes" -ForegroundColor Yellow -BackgroundColor DarkRed
Write-Host "2) Quitter " -ForegroundColor Yellow -BackgroundColor DarkRed
Write-Host " "
Write-Host " veuillez faire un choix : " -ForegroundColor Black -BackgroundColor DarkRed -NoNewline
switch ($choix =Read-Host)
{
"1" {Write-Host "1) facebook" -ForegroundColor Green
Write-Host "2) instagram" -ForegroundColor Green
Write-Host "3) gmail" -ForegroundColor Green
Write-Host "4) whatsapp" -ForegroundColor Green
Write-Host "5) quitter" -ForegroundColor Green
write-host "veuillez faire un choix :" -ForegroundColor Red -NoNewline
switch ($choi =Read-Host)
{
"1" {
start ('https://login.facebook.com/login.php')
$username = "*************"
$PWD = "*********"
}
"2"{
start www.instagram.com
}
"3"{
start www.Gmail.com
}
"4" {exit}
}
pause
}
"2" {exit}
default {
Write-Warning "choix n'est pas valide"
}
}
pause
Clear-Host
}while ($true)