zoukankan      html  css  js  c++  java
  • Powershell创建对象

    .Net类型中的方法功能很强大。可以通过类型的构造函数创建新的对象,也可以将已存在的对象转换成指定的类型。

    通过New-Object创建新对象

    如果使用构造函数创建一个指定类型的实例对象,该类型必须至少包含一个签名相匹配的构造函数。例如可以通过字符和数字创建一个包含指定个数字符的字符串:

    PS C:Powershell> New-Object String(‘*’,100)
    *******************************************************************************
    *********************

    为什么支持上面的方法,原因是String类中包含一个Void .ctor(Char, Int32) 构造函数

    PS C:Powershell> [String].GetConstructors() | foreach {$_.tostring()}
    Void .ctor(Char*)
    Void .ctor(Char*, Int32, Int32)
    Void .ctor(SByte*)
    Void .ctor(SByte*, Int32, Int32)
    Void .ctor(SByte*, Int32, Int32, System.Text.Encoding)
    Void .ctor(Char[], Int32, Int32)
    Void .ctor(Char[])
    Void .ctor(Char, Int32)

    通过类型转换创建对象

    通过类型转换可以替代New-Object

    PS C:Powershell> $date="1999-9-1 10:23:44"
    PS C:Powershell> $date.GetType().fullName
    System.String
    PS C:Powershell> $date
    1999-9-1 10:23:44
    PS C:Powershell> [DateTime]$date="1999-9-1 10:23:44"
    PS C:Powershell> $date.GetType().FullName
    System.DateTime
    PS C:Powershell> $date
    
    1999年9月1日 10:23:44

    如果条件允许,也可以直接将对象转换成数组

    PS C:Powershell> [char[]]"mossfly.com"
    m
    o
    s
    s
    f
    l
    y
    .
    c
    o
    m
    PS C:Powershell> [int[]][char[]]"mossfly.com"
    109
    111
    115
    115
    102
    108
    121
    46
    99
    111
    109

    加载程序集

    自定义一个简单的C#类库编译为Test.dll:

    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Net;
    
    namespace Test
    {
        public class Student
        {
            public string Name { set; get; }
            public int Age { set; get; }
            public Student(string name, int age)
            {
                this.Name = name;
                this.Age = age;
            }
            public override string  ToString()
            {
                return string.Format("Name={0};Age={1}", this.Name,this.Age);
            }
        }
    }

    在Powershell中加载这个dll并使用其中的Student类的构造函数生成一个实例,最后调用ToString()方法。

    PS C:Powershell> ls .Test.dll
    
        目录: C:Powershell
    
    Mode                LastWriteTime     Length Name
    ----                -------------     ------ ----
    -a---         2012/1/13     10:49       4608 Test.dll
    
    PS C:Powershell> $TestDLL=ls .Test.dll
    PS C:Powershell> [reflection.assembly]::LoadFile($TestDLL.FullName)
    
    GAC    Version        Location
    ---    -------        --------
    False  v2.0.50727     C:PowershellTest.dll
    
    PS C:Powershell> $stu=New-Object Test.Student('Mosser',22)
    PS C:Powershell> $stu
    
    Name                                                                        Age
    ----                                                                        ---
    Mosser                                                                       22
    
    PS C:Powershell> $stu.ToString()
    Name=Mosser;Age=22

    使用COM对象

    作为.NET的补充,Powershell可以加载和访问COM对象。

    查看可用的COM对象

    每一个COM对象都有存储在注册表中的唯一标识符,想遍历访问可用的COM对象,可是直接访问注册表。

    Dir REGISTRY::HKEY_CLASSES_ROOTCLSID  -include PROGID -recurse | foreach {$_.GetValue("")}
    DAO.DBEngine.36
    DAO.PrivateDBEngine.36
    DAO.TableDef.36
    DAO.Field.36
    DAO.Index.36
    PS C:Powershell> Dir REGISTRY::HKEY_CLASSES_ROOTCLSID -include PROGID -recurse
    | foreach {$_.GetValue("")} | select -First 10
    DAO.DBEngine.36
    DAO.PrivateDBEngine.36
    DAO.TableDef.36
    DAO.Field.36
    DAO.Index.36
    DAO.Group.36
    DAO.User.36
    DAO.QueryDef.36
    DAO.Relation.36
    file
    ......
    怎样使用COM对象

    一旦得到了COM对象的ProgID,就可以使用New-Object创建COM对象,只需要指定参数为-comObject。

    PS C:Powershell> New-Object -ComObject DAO.Relation.36
    
    Properties     : System.__ComObject
    Name           :
    Table          :
    ForeignTable   :
    Attributes     : 0
    Fields         : System.__ComObject
    PartialReplica :

    COM对象的和.NET对象相似,任然可是使用Get-Member 得到该对象的所有熟悉和方法:

    PS C:Powershell> $DBEng=New-Object -ComObject DAO.PrivateDBEngine.36
    PS C:Powershell> $DBEng | Get-Member -me *method
    
       TypeName: System.__ComObject#{00000021-0000-0010-8000-00aa006d2ea4}
    
    Name                MemberType Definition
    ----                ---------- ----------
    BeginTrans          Method     void BeginTrans ()
    CommitTrans         Method     void CommitTrans (int)
    CompactDatabase     Method     void CompactDatabase (string, string, Variant...
    CreateDatabase      Method     Database CreateDatabase (string, string, Vari...
    CreateWorkspace     Method     Workspace CreateWorkspace (string, string, st...
    FreeLocks           Method     void FreeLocks ()
    Idle                Method     void Idle (Variant)
    ISAMStats           Method     int ISAMStats (int, Variant)
    OpenConnection      Method     Connection OpenConnection (string, Variant, V...
    OpenDatabase        Method     Database OpenDatabase (string, Variant, Varia...
    RegisterDatabase    Method     void RegisterDatabase (string, string, bool, ...
    RepairDatabase      Method     void RepairDatabase (string)
    Rollback            Method     void Rollback ()
    SetDataAccessOption Method     void SetDataAccessOption (short, Variant)
    SetDefaultWorkspace Method     void SetDefaultWorkspace (string, string)
    SetOption           Method     void SetOption (int, Variant)
    _30_CreateWorkspace Method     Workspace _30_CreateWorkspace (string, string...
    
    PS C:Powershell> $DBEng | Get-Member -me *property
    
       TypeName: System.__ComObject#{00000021-0000-0010-8000-00aa006d2ea4}
    
    Name            MemberType Definition
    ----            ---------- ----------
    DefaultPassword Property   string DefaultPassword () {set}
    DefaultType     Property   int DefaultType () {get} {set}
    DefaultUser     Property   string DefaultUser () {set}
    Errors          Property   Errors Errors () {get}
    IniPath         Property   string IniPath () {get} {set}
    LoginTimeout    Property   short LoginTimeout () {get} {set}
    Properties      Property   Properties Properties () {get}
    SystemDB        Property   string SystemDB () {get} {set}
    Version         Property   string Version () {get}
    Workspaces      Property   Workspaces Workspaces () {get}

    常用的COM对象中有WScript.Shell,
    WScript.Network,
    Scripting.FileSystemObject,
    InternetExplorer.Application,
    Word.Application,
    Shell.Application

    下面的例子使用WScript.shell COM对象和它的方法CreateShortcut()做桌面上创建一个Powershell快捷方式:

    PS C:Powershell> $wshell=New-Object -ComObject WScript.shell
    PS C:Powershell> $path=[environment]::GetFolderPath('Desktop')
    PS C:Powershell> $link=$wshell.CreateShortcut("$pathPowershell.lnk")
    PS C:Powershell> $link | Get-Member
    
       TypeName: System.__ComObject#{f935dc23-1cf0-11d0-adb9-00c04fd58a0b}
    
    Name             MemberType Definition
    ----             ---------- ----------
    Load             Method     void Load (string)
    Save             Method     void Save ()
    Arguments        Property   string Arguments () {get} {set}
    Description      Property   string Description () {get} {set}
    FullName         Property   string FullName () {get}
    Hotkey           Property   string Hotkey () {get} {set}
    IconLocation     Property   string IconLocation () {get} {set}
    RelativePath     Property   string RelativePath () {set}
    TargetPath       Property   string TargetPath () {get} {set}
    WindowStyle      Property   int WindowStyle () {get} {set}
    WorkingDirectory Property   string WorkingDirectory () {get} {set}
    
    PS C:Powershell> $link.TargetPath='Powershell.exe'
    PS C:Powershell> $link.Description="启动Powershell"
    PS C:Powershell> $link.WorkingDirectory=$PROFILE
    PS C:Powershell> $link.IconLocation='Powershell.exe'
    PS C:Powershell> $link.Save()
  • 相关阅读:
    thinkphp3.2新部署是错
    淘宝code
    面试感悟----一名3年工作经验的程序员应该具备的技能---转载
    【海量之道】海量之道之SET模型
    看过年人流高峰,浅聊并发之战[架构篇]
    docker启动遇到的问题
    监听数据配置
    Python+requests+unittest+excel实现接口自动化测试框架
    冒泡排序及优化
    jmeter监控的一些插件
  • 原文地址:https://www.cnblogs.com/micro-chen/p/5796476.html
Copyright © 2011-2022 走看看