標籤

BAT (38) shell (34) Virtual Machine (33) Xubuntu (29) acfs (25) PHP (24) CentOS (21) Virtul Box (20) 編輯器 (17) 資料庫 (15) lubuntu (13) windows (13) CPP (12) ubuntu (12) chrome (11) laravel (10) Docker (9) Python (9) 5A88 (7) VMware (6) 資料結構 (6) Javascript (5) Node (5) Proxmox VE (5) 公告系統 (5) 程式積木 (5) Android Studio (4) ANN (3) OB2D2016x64 (3) Xoops (3) clonezilla (3) samba (3) 公文 (3) 其他 (3) 硬體 (3) API (2) Android (2) AppInvent2 (2) Html (2) Hyper-V (2) Nas (2) botnet (2) mbot (2) swift (2) wordpress (2) 樣板 (2) 防火牆 (2) AD的應用 (1) Ansible (1) Arduino (1) CSS (1) GitLab (1) HA Proxy (1) LegoEV3 (1) PowerShell (1) Scratch (1) VM (1) XenServer (1) kotlin (1) linuxmint (1) lxc (1)

2020年7月29日 星期三

在Windows 7 x64 使用PowerShell與相關操作歷程

一、在Windows 7 x64 使用PowerShell,有兩種方法:
1.在命令提示字元畫面使用PowerShell
2.從程式集->附屬應用程式->Windows PowerShell

二、相關操作歷程
1.查詢版本指令 $PSversionTable
2.取得物件型別 .GetType()
3.存取物件屬性
4.使用物件方法
5.列印 echo
細節經過:

一、在Windows 7 x64 使用PowerShell,有兩種方法:

1.在命令提示字元畫面使用PowerShell

    (1)以系統管理員執行命令提示字元
    (2)在命令提示字元,輸入PowerShell

2.從程式集->附屬應用程式->Windows PowerShell->以系統管理員身分執行


二、相關操作歷程

1.查詢版本指令 $PSversionTable

2.取得物件型別 .GetType()

例如:
(1234).GetType()
"Hello".GetType()
(1,2,3,4).GetType()

3.存取物件屬性

"Hello".length
"Hello ".length
"Hello World".length
$fruit = "apple","banana","orange"
$fruit[0]
$fruit[1]
$fruit[2]
$User = @{}
$User.Name = "Mark"
$User.Name

4.使用物件方法

"Hello World!!".Contains("Hell")
"apple,banana,orange".ToUpper()

5.列印 echo

$ProcessCount = (Get-Process).Count
echo $ProcessCount


資料來源:
1.Win7怎麼開啟Windows PowerShell視窗?
2.如何查詢PowerShell版本
3.[個人筆記] powerShell筆記與常用指令
4.書籍:PowerShell 350個活用範例:Windows自動化技術大全
5.[PowerShell] 設定 IIS - 建立 Application Pool、WebSite

沒有留言:

張貼留言

在 Windows 10 x64 1909版,使用BAT快速安裝公文系統與人事服務網(自然人憑證)版

相關內容移往 https://skjhcreator.blogspot.com/2021/02/windows-10-x64-1909bat.html