惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
Schneier on Security
Schneier on Security
B
Blog RSS Feed
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
A
About on SuperTechFans
Recorded Future
Recorded Future
Recent Announcements
Recent Announcements
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
Hugging Face - Blog
Hugging Face - Blog
The GitHub Blog
The GitHub Blog
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MyScale Blog
MyScale Blog
V2EX - 技术
V2EX - 技术
N
Netflix TechBlog - Medium
F
Fortinet All Blogs
V
Visual Studio Blog
Martin Fowler
Martin Fowler
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
The Exploit Database - CXSecurity.com
F
Full Disclosure
Scott Helme
Scott Helme
H
Heimdal Security Blog
博客园 - 叶小钗
Google DeepMind News
Google DeepMind News
Cyberwarzone
Cyberwarzone
Application and Cybersecurity Blog
Application and Cybersecurity Blog
V
Vulnerabilities – Threatpost
Blog — PlanetScale
Blog — PlanetScale
Security Latest
Security Latest
WordPress大学
WordPress大学
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Troy Hunt's Blog
S
SegmentFault 最新的问题
Forbes - Security
Forbes - Security
Jina AI
Jina AI
S
Securelist
小众软件
小众软件
Simon Willison's Weblog
Simon Willison's Weblog
J
Java Code Geeks
AWS News Blog
AWS News Blog
N
News and Events Feed by Topic
博客园 - 三生石上(FineUI控件)
量子位

博客园 - Jerry Qian

.net新技术书箱推荐 .net 操作excel的xml形式 wcf 一堂如何提高代码质量的培训课(转) powershell parse powershell basic powershell spirit .net国际化 怎样在存储过程及Sql语句之间选择 转 MSBuild 简解 10-29 为什么linq以select开头 loadruuner 角本录制 test infopath 转log4net 配置 Service Broker 资料 sharepoint 安装 转 计算机端口介绍
powershell type
Jerry Qian · 2010-01-08 · via 博客园 - Jerry Qian

powershell type system is .net type system.but powershell can catch .net ,wmi,com type .

This diagram shows the architecture of the PowerShell type adaptation system.
For each kind of data that PowerShell works with, there is a corresponding adapter. An instance
of a particular data object is subsequently wrapped in an instance of the associated
type adapter. This type adapter instance acts as an intermediary between the object and PowerShell,
proxying all accesses

.NET Adapter This is the basic adapter for all .NET types. This adapter directly maps the
properties on the .NET object and adds several new ones that start with a
PS prefix.
COM Object Adapter This adapter provides access to COM objects. Supported objects include
the Windows Script Host classes and scriptable applications such as
Microsoft Word or Internet Explorer.
WMI Adapter This adapts objects returned from a WMI provider.
ADO Adapter This adapter allows you to treat the columns in ADO data tables as though
they were properties.
Custom Object Adapter This adapter manages objects for which there is no actual underlying
object, only synthetic properties.
ADSI Object Adapter This adapts objects returned from the Active Directory Service Interfaces.