我想找到一種方法在我的環境中的Windows服務器上託管一個網站。我想有一個基本的網頁,可以接受來自網頁的輸入值,然後我將這個值輸入到我的PowerShell腳本中。我的powershell腳本可以完成大部分工作,但我不知道如何從用戶那裏收集數據,然後讓數據顯示在我的powershell腳本中。 powershell腳本將運行在服務器端(不在用戶面前),然後通過電子郵件發送它收集的數據。如果可能的話,我希望有一個網頁。我試圖做到這一點,但也無法真正解決這個問題。啓動powershell腳本的HTML網頁
<!DOCTYPE html>
<html>
<head>
<title> Self Service</title>
</head>
<body>
<h1>Welcome to the Self Service</h1>
<p>Below you can enter your userID .</p>
<form action="ThankYou.html" method="post">
UserID: <input type="text" name="text"><br>
<input type="submit" value="Submit">
</form>
<input type="button" value="Launch Installer" onclick=
</body>
</html>
'{<!DOCTYPE HTML>
歡迎的自助服務
下面你可以輸入你的用戶ID。
<形式行動=在 「thankyou.html」 方法= 「POST」> 用戶名:}' – doobis
噢woops洛爾溫柔與我。 – doobis
PowerShell Pipeworks是使用PowerShell構建網站的框架。 http://powershellpipeworks.com/ –