• Home
  • Linux
  • Docker
  • Windows
    • PS
    • C#
    • Exchange Server
  • Other
    • Perl
    • IPV6
    • MacOS
  • DB
    • MSSQL
    • MariaDB
    • PG

Home

POST запрос на C#

Details
Written by: Senka
Category: C#
Created: 11 June 2013
Hits: 1346

private static string POST(string Url, string Data)

{

    System.Net.WebRequest req = System.Net.WebRequest.Create(Url);

    req.Method = "POST";

    req.Timeout = 60000;

    req.ContentType = "application/x-www-form-urlencoded";

 

    UTF8Encoding utf8 = new UTF8Encoding();

    byte[] sentData = utf8.GetBytes(Data);

    //byte[] sentData = Encoding.GetEncoding(1251).GetBytes(Data);

    //sentData = Encoding.Convert(1251, "utf-8", sentData);

 

    req.ContentLength = sentData.Length;

    System.IO.Stream sendStream = req.GetRequestStream();

    sendStream.Write(sentData, 0, sentData.Length);

    sendStream.Close();

    System.Net.WebResponse res = req.GetResponse();

    System.IO.Stream ReceiveStream = res.GetResponseStream();

    System.IO.StreamReader sr = new System.IO.StreamReader(ReceiveStream, Encoding.UTF8);

    //Кодировка указывается в зависимости от кодировки ответа сервера

    Char[] read = new Char[256];

    int count = sr.Read(read, 0, 256);

    string Out = String.Empty;

    while (count > 0)

    {

        String str = new String(read, 0, count);

        Out += str;

        count = sr.Read(read, 0, 256);

    }

    return Out;

}

Пароль никогда не устаревает

Details
Written by: Senka
Category: Power Shell
Created: 11 June 2013
Hits: 1222

Get-ADUser -Filter * -property * | Select SamAccountName,Name,CanonicalName,EmailAddress,PasswordLastSet, WhenCreated,PasswordExpired,PasswordNeverExpires,ProfilePath,Department, Title,Manager,@{Name="Disabled"; Exp={$_.useraccountcontrol -band 2}}|?{$_.Disabled -eq 0 -and $_.PasswordNeverExpires -eq 'True'}| export-csv user_password_never_expire.csv -encoding Default

Инвентаризация серверов

Details
Written by: Senka
Category: Power Shell
Created: 11 June 2013
Hits: 1360

$computers = Get-ADComputer -filter {OperatingSystem -like '*server*'} -Properties * | Select Name,OperatingSystem,OperatingSystemVersion,OperatingSystemServicePack, PrimaryGroup,IPv4Address,IPv6Address,CanonicalName,WhenCreated, LastlogonTimestamp,PasswordLastSet,@{Name="Disabled"; Exp={$_.useraccountcontrol -band 2}}| ?{$_.Disabled -eq 0}

Read more …

Активные пользователи в AD

Details
Written by: Senka
Category: Power Shell
Created: 11 June 2013
Hits: 1196

$date = (Get-Date).AddDays(-90)

Get-ADUser -Filter {lastlogontimestamp -gt $date} -property * | Select SamAccountName,Name, EmailAddress,CanonicalName,Manager,lastlogontimestamp,@{Name="Disabled"; Exp={$_.useraccountcontrol -band 2}}| ?{$_.Disabled -eq 0} | export-csv active_users.csv -Delimiter ";" -NoTypeInformation -Encoding Default

 

Активность POP/SMTP почтовых ящиков

Details
Written by: Senka
Category: Exchange Server
Created: 11 June 2013
Hits: 1244

$mailboxs = Get-Mailbox -server Mail

'Name;PrimarySmtpAddress;Received;Sent' > mbald.csv

foreach ($mailbox in $mailboxs)

{

  $received = Get-TransportServer | Get-MessageTrackingLog -ResultSize unlimited -Start (Get-Date).AddDays(-7) -End (Get-Date) -EventId "RECEIVE" -Recipients $mailbox.PrimarySmtpAddress | Measure-Object

  $sent = Get-TransportServer | Get-MessageTrackingLog -ResultSize unlimited -Start (Get-Date).AddDays(-1) -End (Get-Date) -EventId "RECEIVE" -Sender $mailbox.PrimarySmtpAddress | Measure-Object

  '"' + $mailbox.name + '";"' + $mailbox.PrimarySmtpAddress + '";"'+ $received.count + '";"'+ $sent.count + '"' >> mbald.csv

}

  1. Список пользователей в группе
  2. Инвентаризация ПО в компании
  3. Тестируем скорость открытия файлов из шары
  4. Создание контактов в Exchange

Subcategories

Power Shell Article Count:  53

C# Article Count:  10

Perl Article Count:  1

Exchange Server Article Count:  15

Other Article Count:  24

MSSQL Article Count:  17

Windows Article Count:  25

MariaDB Article Count:  3

Linux Article Count:  8

Docker Article Count:  2

pg Article Count:  1

Page 30 of 32

  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32

Login Form

  • Forgot your password?
  • Forgot your username?

Statistics

  • Users 2
  • Articles 175
  • Articles View Hits 154293