91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Powershell彈出窗口的幾種方式

發布時間:2020-07-10 17:19:01 來源:網絡 閱讀:3835 作者:azrael0328 欄目:系統運維

本來這篇文章應該是上午就寫完的,結果,不得不承認自己有點懶,對最近手頭上做的項目做了些總結,Powershell開發運維,也做了一段時間了,今天就來說說那些簡單的GUI的編程運維,首先從彈出窗口說起吧。

彈出窗口就自己在寫PS GUI代碼是經常用到的有3種方式,wscript方式,Forms方式,VB方式,先說說Wscript方式,這種方式最簡單,也最簡陋,只需要兩行代碼就可以簡單做出彈出窗口。


Wscript方式:

function Read-MessageBoxDialog

{

$PopUpWin = new-object -comobject wscript.shell

$PopUpWin.popup("Hello World")

}

Read-MessageBoxDialog

Powershell彈出窗口的幾種方式


Forms方式,相對于Wscript方式來說,這種方式寫的代碼比較多但是呈現的樣式比較親切

function Read-MessageBoxDialog

{

param ([string]$Message,

[string]$WindowTitle,

[System.Windows.Forms.MessageBoxButtons]$Buttons = [System.Windows.Forms.MessageBoxButtons]::OK,

[System.Windows.Forms.MessageBoxIcon]$Icon = [System.Windows.Forms.MessageBoxIcon]::None)

Add-Type -AssemblyName System.Windows.Forms

return [System.Windows.Forms.MessageBox]::Show($Message, $WindowTitle, $Buttons, $Icon)

}

Read-MessageBoxDialog -Message "Hello World" -WindowTitle "CustomTitleHere" -Buttons OK -Icon Information

Powershell彈出窗口的幾種方式


最后一種方式就是VB方式,這種方式是在PS中調用VB的方式來進行彈出窗口,樣式與Forms基本類似

function Read-MessageBoxDialog

{

param ([string]$Message,[string]$WindowTitle)

Add-Type -AssemblyName Microsoft.VisualBasic

return [Microsoft.VisualBasic.Interaction]::MsgBox($Message,'Information',$WindowTitle)

}

Read-MessageBoxDialog -Message "Hello World" -WindowTitle "CustomTitleHere"

Powershell彈出窗口的幾種方式


最后可以看出VB的樣式與Forms樣式一樣,但是代碼要比Forms的少很多,如果只是提示窗口,建議用VB形式,如果想讓提示窗口顯示為Information形式,并且OK與Cancel按鈕同時存在就將Forms方式中的Buttons屬性設置為 OKCancel

function Read-MessageBoxDialog

{

param ([string]$Message,

[string]$WindowTitle,

[System.Windows.Forms.MessageBoxButtons]$Buttons = [System.Windows.Forms.MessageBoxButtons]::OK,

[System.Windows.Forms.MessageBoxIcon]$Icon = [System.Windows.Forms.MessageBoxIcon]::None)

Add-Type -AssemblyName System.Windows.Forms

return [System.Windows.Forms.MessageBox]::Show($Message, $WindowTitle, $Buttons, $Icon)

}

Read-MessageBoxDialog -Message "Hello World" -WindowTitle "CustomTitleHere" -Buttons OKCancel -Icon Information

Powershell彈出窗口的幾種方式







向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

秦安县| 南郑县| 邯郸市| 革吉县| 奈曼旗| 修武县| 信阳市| 铜鼓县| 绥中县| 青海省| 墨竹工卡县| 安陆市| 葫芦岛市| 白河县| 于都县| 时尚| 遵义市| 偏关县| 铜陵市| 富平县| 化德县| 尤溪县| 札达县| 宁南县| 阿瓦提县| 鞍山市| 定远县| 建阳市| 荣昌县| 南川市| 安阳县| 遂平县| 额尔古纳市| 中卫市| 贡觉县| 自治县| 株洲县| 太谷县| 贵州省| 德安县| 眉山市|