<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>VM-V数字化工作空间站点 - Windows Server</title>
    <link>http://vm-v.com/forum-65-1.html</link>
    <description>Latest 20 threads of Windows Server</description>
    <copyright>Copyright(C) VM-V数字化工作空间站点</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Mon, 25 May 2026 03:24:30 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://vm-v.com/static/image/common/logo_88_31.gif</url>
      <title>VM-V数字化工作空间站点</title>
      <link>http://vm-v.com/</link>
    </image>
    <item>
      <title>探索PowerShell（十五） 引号与转义字符（转载）</title>
      <link>http://vm-v.com/thread-490-1-1.html</link>
      <description><![CDATA[在PowerShell中，单引号与双引号有着不同的功能和作用。引号的使用规则往往跟变量的代换，以及特殊字符有关


基础用法 

总结说来： 

单引号任何情况下都只表示引号内自身的字符。也就是说，单引号内的内容不会进行变量的代换与字符的转义。而在双引号中，则允许进行 ...]]></description>
      <category>Windows Server</category>
      <author>王小新</author>
      <pubDate>Wed, 23 Mar 2016 06:06:01 +0000</pubDate>
    </item>
    <item>
      <title>探索PowerShell（十四） 使用WMI对象的方法（转载）</title>
      <link>http://vm-v.com/thread-489-1-1.html</link>
      <description><![CDATA[上一篇文章中介绍了WMI的基础内容，主要讲了WMI的属性值的查看，文中还提到，WMI不仅具有属性，还具有方法。这一节就来具体讲一下如何调用WMI对象方法


上一篇文章中介绍了WMI的基础内容，主要讲了WMI的属性值的查看，文中还提到，WMI不仅具有属性，还具有方法。这一节 ...]]></description>
      <category>Windows Server</category>
      <author>王小新</author>
      <pubDate>Wed, 23 Mar 2016 06:01:20 +0000</pubDate>
    </item>
    <item>
      <title>探索PowerShell（十三） WMI对象介绍(转载)</title>
      <link>http://vm-v.com/thread-488-1-1.html</link>
      <description><![CDATA[探索PowerShell（十三） WMI对象介绍作者： 字体：[增加 减小] 类型：转载 时间：2012-12-05我要评论
我记得在xp时代，经常使用的工具有一个叫做WMI Administrative Tools，是微软官方提供的用来查看、编辑WMI对象的，只是现在好似不支持新的系统了


我记得在xp时代， ...]]></description>
      <category>Windows Server</category>
      <author>王小新</author>
      <pubDate>Wed, 23 Mar 2016 05:55:39 +0000</pubDate>
    </item>
    <item>
      <title>探索PowerShell（十二） 筛选器 Filters(转载)</title>
      <link>http://vm-v.com/thread-487-1-1.html</link>
      <description><![CDATA[筛选器是函数的一种特殊形式


筛选器是函数的一种特殊形式。 

定义筛选器： 

Filter(关键字) 筛选器名 (参数) {代码} 

与定义函数不同的是，函数使用\&quot;$input\&quot;变量来从管道符中获取信息，而筛选器使用的是变量\&quot;$_\&quot;。在对数据的处理方面，函数与筛选器也有着不同，在 ...]]></description>
      <category>Windows Server</category>
      <author>王小新</author>
      <pubDate>Wed, 23 Mar 2016 05:40:36 +0000</pubDate>
    </item>
    <item>
      <title>探索PowerShell（十一）函数介绍（转载）</title>
      <link>http://vm-v.com/thread-486-1-1.html</link>
      <description><![CDATA[通常，代码块就是指函数，调用函数，就是执行不同的代码块，以便实现各种功能


一个脚本的功能可能有很多，但是并非都是通过一段代码来完成的。在一个出色的脚本中，实现各个功能代码的独立性，可以保证这个脚本具有高可用性和易维护性，并且当我们改进或删减功能时只 ...]]></description>
      <category>Windows Server</category>
      <author>王小新</author>
      <pubDate>Wed, 23 Mar 2016 05:19:41 +0000</pubDate>
    </item>
    <item>
      <title>探索PowerShell(十) 循环语句介绍 （转载）</title>
      <link>http://vm-v.com/thread-484-1-1.html</link>
      <description><![CDATA[本节所要讨论的内容的实质更多的偏向于程序设计方面，所以在此不做过多详细讲解，只针对PowerShell中的应用进行具体讲解


PowerShell作为可编程性语言，拥有以下循环语句。 

注：本节所要讨论的内容的实质更多的偏向于程序设计方面，所以在此不做过多详细讲解，只针对 ...]]></description>
      <category>Windows Server</category>
      <author>王小新</author>
      <pubDate>Wed, 23 Mar 2016 03:06:07 +0000</pubDate>
    </item>
    <item>
      <title>探索PowerShell(九) 条件控制、逻辑(转载)</title>
      <link>http://vm-v.com/thread-483-1-1.html</link>
      <description><![CDATA[PowerShell作为一个动态脚本语言，同样具有条件判断、逻辑控制的能力。诸如if、elseif、else以及switch都是被PowerShell所支持的

逻辑判断 

先来简单介绍最基本的逻辑判断： 

• -eq 判断是否等于(equal) 
• -lt 判断时候小于(less than) 
• -gt 判断是否大于(gre ...]]></description>
      <category>Windows Server</category>
      <author>王小新</author>
      <pubDate>Wed, 23 Mar 2016 02:31:22 +0000</pubDate>
    </item>
    <item>
      <title>探索PowerShell (八) 数组、哈希表(附:复制粘贴技巧)（转载）</title>
      <link>http://vm-v.com/thread-481-1-1.html</link>
      <description><![CDATA[我们经常在程序设计中用到的数组，同样在脚本中很常用。本节就详细介绍一下数组，以及哈希表在PowerShell中的使用


我们经常在程序设计中用到的数组，同样在脚本中很常用。本节就详细介绍一下数组，以及哈希表在PowerShell中的使用。数组在PowerShell中，声明一个变量 ...]]></description>
      <category>Windows Server</category>
      <author>王小新</author>
      <pubDate>Tue, 22 Mar 2016 05:17:17 +0000</pubDate>
    </item>
    <item>
      <title>探索PowerShell(七) PowerShell变量（转载）</title>
      <link>http://vm-v.com/thread-480-1-1.html</link>
      <description><![CDATA[在程序设计中，变量是最基本的概念，它是我们表示数据的在存储时的代号。在PowerShell中，变量通常供我们在脚本中使用，它可以是数字、字符、字符串，甚至是对象


变量在程序设计中，变量是最基本的概念，它是我们表示数据的在存储时的代号。在PowerShell中，变量通常 ...]]></description>
      <category>Windows Server</category>
      <author>王小新</author>
      <pubDate>Tue, 22 Mar 2016 02:46:07 +0000</pubDate>
    </item>
    <item>
      <title>探索PowerShell(六) 脚本基础简要(转载)</title>
      <link>http://vm-v.com/thread-479-1-1.html</link>
      <description><![CDATA[在后续的教程中，我将主要介绍PowerShell的脚本是如何编写的。这一节，先做一个概览和大体的介绍，今天是假日，就先不写太多，明天开始逐条讲解


PowerShell脚本基础知识概览：常量、变量、数组、哈希 

各种字符串操作 

使用常量和变量 

各种运算符和表达式 

创建 ...]]></description>
      <category>Windows Server</category>
      <author>王小新</author>
      <pubDate>Tue, 22 Mar 2016 02:35:19 +0000</pubDate>
    </item>
    <item>
      <title>探索PowerShell(五) PowerShell基础知识（转载）</title>
      <link>http://vm-v.com/thread-461-1-1.html</link>
      <description><![CDATA[在PowerShell中，我们可以轻松的与数据、对象进行交互，为了简化我们访问外部数据，PowerShell允许我们像操作驱动器、文件一样对数据、对象等进行操作


在PowerShell中，我们可以轻松的与数据、对象进行交互，为了简化我们访问外部数据，PowerShell允许我们像操作驱动 ...]]></description>
      <category>Windows Server</category>
      <author>王小新</author>
      <pubDate>Mon, 14 Mar 2016 08:23:47 +0000</pubDate>
    </item>
    <item>
      <title>探索PowerShell (四) PowerShell的对象、格式与参数（转载）</title>
      <link>http://vm-v.com/thread-460-1-1.html</link>
      <description><![CDATA[本节将要给大家介绍一下PowerShell下的对象，基本格式以及参数。依然属于PowerShell的基础


今天贴博文晚了，感谢各位能继续关注！本节将要给大家介绍一下PowerShell下的对象，基本格式以及参数。依然属于PowerShell的基础。PowerShell中的对象在本教程开篇我们说过，P ...]]></description>
      <category>Windows Server</category>
      <author>王小新</author>
      <pubDate>Mon, 14 Mar 2016 07:13:12 +0000</pubDate>
    </item>
    <item>
      <title>探索PowerShell (三) PowerShell下使用Aliases（转载）</title>
      <link>http://vm-v.com/thread-459-1-1.html</link>
      <description><![CDATA[这一节就来介绍PowerShell下的Aliases。在PowerShell中，为了习惯于使用，可以使用别名代替命令


不知道各位有没有接触过linux，我才疏学浅，对alias的认识是从linux上来的。Linux常用的Bash命令也是有上百个，虽然一般情况下命令都非常简短，不过很多时候需要大量的却 ...]]></description>
      <category>Windows Server</category>
      <author>王小新</author>
      <pubDate>Mon, 14 Mar 2016 07:09:19 +0000</pubDate>
    </item>
    <item>
      <title>探索PowerShell (二) PowerShell的基本操作（转载）</title>
      <link>http://vm-v.com/thread-458-1-1.html</link>
      <description><![CDATA[这里介绍下如何打开powershell控制台，在 程序&gt;附件&gt;windows powershell中即可，主要是界面不再是dos窗口，据说功能也增加了很多


PowerShell控制台打开PowerShell，显示如下界面：命令提示符前缀为：PS C:%users\\MaRui&gt; PS的意思为正在运行PowerShell中，而C:则是我的 ...]]></description>
      <category>Windows Server</category>
      <author>王小新</author>
      <pubDate>Mon, 14 Mar 2016 07:06:16 +0000</pubDate>
    </item>
    <item>
      <title>探索PowerShell(一) 初识 PowerShell（转载）</title>
      <link>http://vm-v.com/thread-457-1-1.html</link>
      <description><![CDATA[PowerShell是一个由微软的提供的全新shell程序，使用了全新的命令提示和脚本环境


Windows PowerShell 是一个新的……好吧，我相信你在看本文之前已经把这句话看过N遍了……PowerShell是一个由微软的提供的全新shell程序，使用了全新的命令提示和脚本环境。使用PowerSh ...]]></description>
      <category>Windows Server</category>
      <author>王小新</author>
      <pubDate>Mon, 14 Mar 2016 05:56:49 +0000</pubDate>
    </item>
  </channel>
</rss>