Wie kann ich mit Powershell ein HTML Formular absenden?
<!DOCTYPE html>
<html>
<head>
<title>Formular</title>
</head>
<body>
<h1>Formular</h1>
<form action="index.php" method="POST" enctype="multipart/form-data">
<input type="text" name="name" id="name">
<input type="text" name="number" id="number">
<input type="submit" value="Hochladen" name="submit">
</form>
</body>
</html>