2017-06-13 90 views
-2

我必須使PowerShell的圖形界面顯示域中的PC列表,但我不知道如何在事件按鈕中設置腳本。該腳本是p1_compare.ps1。實際上,名單爲.csv文件,因爲我不知道如何讓他們來顯示和設置在界面運行腳本的Powershell按鈕事件

+1

許多教程都可用,例如使用WinForms:https://technet.microsoft.com/en-us/library/ff730941.aspx或WPF:https://foxdeploy.com/2015/04/10/部分-I-creating-powershell-guis-in-minutes-using-visual-studio-a-new-hope/ – Manu

+0

是的,但它並沒有幫助我理解我需要的一切 – charlo

+0

在關於WinForms的第一個鏈接中:'$ OKButton.Add_Click({$ x = $ objTextBox.Text; $ objForm.Close()})'你的腳本必須放在'$ OKButton.Add_Click({你的腳本在}}之間' – Manu

回答

0

我以另一種方式做了得到的結果按命令按鈕 時,例如:

$Button.Add_Click({ 
     Get-DiskInfo | Out-GridView 
})