COM

Programming/Windows PowerShell 2023. 1. 24. 23:29

ㅇ COM (=Component Object Model)
ㅁ 개발 언어 및 개발 Tool에 상관 없는 호환 가능한 Component

Get-ProgID
$shell = New-Object -com Shell.Application
$Shell | Get-Member
$shell.Explorer("C:\")
$a = $Shell.ControlPanelItem("desk.cpl")
$a
$shell.ShellExecute("cmd.exe")
$wshell = New-Object -com WScript.Shell
$wshell | get-member
$wshell.Popup("hello world")
$firewall = New-Object -com hNetCfg.FwMgr
$firewall.LocalPolicy.CurrentProfile.FirewallEnabled = $true
Posted by aapsemiordoenus
,