
PowerShell
心想才事成
这个作者很懒,什么都没留下…
展开
-
Get-GUIDandDeclare
Get-GUIDandDeclare把 _GUID_b5d30521_b5b3_4f9d_9748_5e3e1636e0bf 转换成 GUID 数据,顺便生成声明:用法:Get-GUIDandDeclare _GUID_b5d30521_b5b3_4f9d_9748_5e3e1636e0bfName Value----原创 2016-12-20 19:58:46 · 459 阅读 · 0 评论 -
返回的文件名不带扩展名
PS C:\WINDOWS\winsxs> dir *.xml | select basenameBaseNamemigration返回的是对象(文件、或目录)。PS C:\WINDOWS\winsxs> dir *.xml | select basename | gmTypeName:Selected.System.IO.FileInfoName MemberType Defin原创 2015-09-22 19:59:18 · 1139 阅读 · 0 评论 -
ConvertTo-ShortId
function ConvertTo-ShortId ($Ids){ #define PROCESSOR_ARCHITECTURE_INTEL 0 #define PROCESSOR_ARCHITECTURE_MIPS 1 #define PROCESSOR_ARCHITECTURE_ALPHA 2原创 2015-09-21 20:57:16 · 715 阅读 · 0 评论 -
Get-ManifestInfo
function Get-ManifestInfo{ [CmdletBinding(SupportsShouldProcess = $true)] param ( [Parameter(Mandatory = $true, ValueFromPipeline = $true, Pos原创 2015-09-21 20:59:44 · 478 阅读 · 0 评论 -
PowerShell 调用系统 DLL 中的函数,如何使用返回参数中的值
$signature = @"[DllImport("user32.dll")]public static extern Int32 GetWindowText(IntPtr hWnd, System.Text.StringBuilder lpString, Int32 nMaxCount);"@Function Find-Window{ Param( $WindowsHandle )原创 2015-10-07 13:15:08 · 3262 阅读 · 0 评论 -
把不同目录下的文件移动到同一个目录下
dir C:\Users\tmx\Downloads\大灰狼老师出品的零基础汇编\* -Directory| % { dir "$_\*.swf" -Filter "ass*.swf" }| % { $_.moveto("C:\Users\tmx\Downloads\大灰狼老师出品的零基础汇编\" + $_.pschildName) }原创 2015-11-07 14:16:53 · 915 阅读 · 0 评论 -
拆分组件名
<#$fileName = "amd64_microsoft-windows-d..ellman_software_csp_31bf3856ad364e35_6.3.9600.17415_none_2d03b66a58a22052"Split-FileName $fileName#>function Split-FileName( $fileName ){ $t = $fileNa原创 2015-09-17 19:48:59 · 414 阅读 · 0 评论 -
从 CBS.log 返回组件名
From CBS.log Return Component Namefunction Get-ComponentNameFromCBS { param( [System.String] $line, [System.String] $path ) $line -match "comp: (.*?), Version = (.*?), pA = (.*?) .*?, C原创 2015-09-16 21:56:07 · 907 阅读 · 0 评论 -
关闭 WMI Explorer 的弹出窗口
关闭 WMI Explorer 的弹出窗口前两天下载了 WMI Explorer,想试用一下。 但是,直接就弹出一个激活的窗口。 如何能保用呢?原创 2015-10-06 19:53:39 · 1706 阅读 · 3 评论 -
命令支持管道
命令支持管道支持管道,需要为参数加 [Parameter(ValueFromPipeline)] 特性。Function Test-Something { [Alias("ts")] [CmdletBinding(SupportsShouldProcess)] param( [Parameter(ValueFromPipeline)] $What原创 2015-09-17 20:38:20 · 609 阅读 · 0 评论 -
隐藏弹出窗口,并启用父窗口
隐藏弹出窗口,并启用父窗口$signature = @"[DllImport("user32.dll")] public static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);[DllImport("user32.dll")] public static extern bool SetWi原创 2015-10-04 22:27:27 · 1153 阅读 · 0 评论 -
组件的文件跟组件清单中的验证信息不匹配
组件的文件跟组件清单中的验证信息不匹配在 HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\Configuration 下新建 DisableFileHashVerification dword 1 Set-RegistryValue "HKLM:\SOFTWARE\Microsof原创 2015-09-12 20:19:18 · 8501 阅读 · 0 评论 -
大概知道 ParameterSet 是什么意思了
大概知道 ParameterSet 是什么意思了下面的代码是从网上复制过来的。function Test-ParameterSet{ [CmdletBinding(DefaultParameterSetName = 'NonCredential')] param ( $id, [Parameter(ParameterSetName = 'Loc转载 2015-06-13 18:14:52 · 4427 阅读 · 0 评论 -
空字符串也是假
PS C:\WINDOWS\system32> $name = ""PS C:\WINDOWS\system32> if($name){"$name"}PS C:\WINDOWS\system32> $name = " "PS C:\WINDOWS\system32> if($name){"$name"}PS C:\WINDOWS\system32> $name = $trueP原创 2015-09-23 13:05:48 · 1312 阅读 · 0 评论 -
在没有安装 ADK 的系统 上运行 DISM cmdlet
Dism cmdlet 要比 Dism 命令使用方便,但唯一不足的是,好像只能安装 msu 和 cab 文件,而不能安装 mum 文件,也可能是我没有能够正确使用吧。 一、从安装 ADK 系统上复制文件,具体目录: C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64原创 2015-10-27 20:59:28 · 1943 阅读 · 0 评论 -
PowerShell 与 JavaScript 的时间起点
PowerShell 与 JavaScript 的时间起点PowerShell 的时间起点是 1601年1月1日JavaScript 的时间起点是 1970年1月1日JavaScript 中的 new Date().getTime() 得到的数为经过的毫秒数PowerShell 中的 ToFileTime() 得到的数为经过的时间数,单位为 100 纳秒,是 Coord原创 2016-12-30 23:08:48 · 505 阅读 · 0 评论 -
合并安装文件源
合并安装文件源function New-AllFilesLink{ [CmdletBinding()] param ( [Parameter(Mandatory = $true)] $Source, $Type ) switch ($Type) { "winsxs" { $winsxs = Get-ChildItem原创 2016-12-25 20:55:51 · 605 阅读 · 0 评论 -
文件描述居然在版本信息下
文件描述居然在版本信息下 $f=dir C:\ServicingStack-10\wcp.dll $f 目录: C:\ServicingStack-10Mode LastWriteTime Length Name---- ------------- ------ -----a----原创 2016-08-26 20:52:24 · 805 阅读 · 0 评论 -
Psreadline 历史记录
Psreadline 历史记录C:\Users\XXX\AppData\Roaming\PSReadline原创 2016-08-09 21:52:46 · 1258 阅读 · 0 评论 -
判断注册表属性是否存在
判断注册表属性是否存在在《Windows PowerShell 3.0 First Steps》中,有一个判断注册表属性是否存在的示例,在 95-96 页。 假设有一个注册表 HKCU:\Software\sample 键,现在需要判断在其下中否存在属性 bogus。 判断属性值不能使用 Test-Path,必须使用下面的方法:if((Get-ItemProperty HKCU:\Softwar原创 2016-04-13 20:27:05 · 3402 阅读 · 0 评论 -
用 Data 定义变量
用 Data 定义变量Data a{ 'aaaaaa'}$a.GetType()StringData Strings{ ConvertFrom-StringData @' MSG_TARGET_IMAGE = Target image: '{0}' ERR_FILE_NO_EXISTS = The file '{0}' does not exists'@}原创 2016-06-16 14:51:21 · 2101 阅读 · 0 评论 -
递归复制文件
递归复制文件把当前目录下所有 usb 的驱动程序复制到 C:\Temp\offline\Windows\System32\drivers (dir usb*.sys -Recurse | select Directory | ? {$_ -like '*16384*'} ).Directory.name | group | select name | % { copy "$($_.name)\*原创 2016-06-13 22:00:44 · 890 阅读 · 0 评论 -
Microsoft.DHCP.PowerShell.Admin.psm1
Microsoft DHCP PowerShell Admin 模块转载 2014-08-30 11:46:41 · 1751 阅读 · 0 评论 -
正确认识 Source 参数
正确认识 Source 参数Enable-WindowsOptionalFeatureEnables a feature in a Windows image.语法 Enable-WindowsOptionalFeature [-All] [-LimitAccess] [-LogLevel <LogLevel>] [-LogPath <String>] [-NoRestart] [-Packa原创 2016-04-06 21:31:40 · 1875 阅读 · 0 评论 -
GUID 类型
GUID 类型GUIDglobally unique identifier(全球唯一标识符) 它通过一种复杂的算法生成,保证世界上任何两台计算机都不会生成重复的 GUID 值。GUID主要用于在拥有多个节点、多台计算机的网络或系统中,分配必须具有唯一性的标识符。在 Windows 平台上,GUID应用非常广泛,比如:注册表、类及接口标识、数据库、甚至自动生成的机器名、目原创 2016-02-24 15:22:41 · 7522 阅读 · 0 评论 -
PowerShell Studio 2016
PowerShell Studio 2016参考: 关闭 WMI Explorer 的弹出窗口原创 2016-03-18 21:18:16 · 3472 阅读 · 5 评论 -
PowerShell 脚本在 Studio 中乱码
PoweShell 脚本乱码原创 2015-10-06 19:25:25 · 1434 阅读 · 0 评论 -
用 PowerShell 读写注册表
用 PowerShell 读写注册表原创 2015-06-02 21:59:01 · 3288 阅读 · 0 评论 -
system 运行 cmd
system 运行 cmdC:\SysinternalsSuite\psexec.exe -i -s -d %windir%\system32\cmd.exe原创 2015-01-10 16:10:48 · 1066 阅读 · 0 评论 -
IE11 已经删除 execScript
IE11 已经删除 execScript原先我从 Powershell 中执行浏览器中的 JavaScript,使用 window.execScript,已经调试好的程序,今天怎么执行不起来。总是提示:拒绝访问。 后来,发现是由于 IE 从 10 升级 11 造成的。再回来 IE10 的系统上运行正常。微软讲,window.execScript 用 Eval 替换,但是,原创 2014-12-26 16:18:22 · 3444 阅读 · 0 评论 -
split 的删除空白选项
.Split("",[StringSplitOptions]::RemoveEmptyEntries).Count原创 2014-02-19 16:42:38 · 4083 阅读 · 0 评论 -
自动化 confirm 窗口
自动化 confirm 窗口 $win.execScript("window.confirm(str)=function{return true;};", "javascript")不能太远。原创 2014-02-18 15:35:46 · 1835 阅读 · 0 评论 -
处理管道中的多个参数
处理管道中的多个参数通常管道中传来的参数是一个。如果有多个参数,处理起来就有点麻烦。我们知道,$_ 表示的是每一条数据,那么,$_[0], $_[1],...就分别代表这条数据的每一项。这样,我们只要把数据按数组的形式传递给管道就可以了。当然,为了后序处理的方便,也可以先取出每一项的值:$1, $2, $3 = $_原创 2014-02-27 11:01:52 · 2282 阅读 · 0 评论 -
使用函数的多个返回值
使用函数的多个返回值原创 2014-02-14 09:22:11 · 3245 阅读 · 1 评论 -
Powershell 返回打开浏览器的 URL
Powershell 返回打开浏览器的 URL(New-Object -comObject Shell.Application).Windows() `| where {($_.FullName -ne $null) -and ($_.FullName.toLower().EndsWith("iexplore.exe")) } `| foreach { $_.locatio原创 2014-01-05 16:18:05 · 2740 阅读 · 0 评论 -
禁止中华浮动广告
禁止中华浮动广告cd "$env:USERPROFILE/desktop"#>$ie = new-object -com "InternetExplorer.Application"$ie.navigate("http://military.china.com/zh_cn/")$ie.visible = $true原创 2014-02-12 22:33:42 · 917 阅读 · 0 评论 -
用 PS 下载 FTP 服务器的文件
用 PS 下载 FTP 服务器的文件这是一个下载 symantec 离线包的程序,分成三个部分:1、看一下服务器上到底有哪些文件2、找到最新的一个3、下载$url = "ftp://ftp.symantec.com/public/english_us_canada/antivirus_definitions/norton_antivirus"$req =原创 2014-01-26 09:08:00 · 1660 阅读 · 0 评论 -
用 PS 操作 IE
用 PS 操作 IE一、抑制警告窗口 $win.execScript("window.alert=function(){}", "javascript")二、调用 execScript 时出错使用“2”个参数调用“execScript”时发生异常:“由于出现错误 80020101 而导致此项操作无法完成。”获得焦点,好像更有利于窗口原创 2014-01-24 15:53:51 · 1129 阅读 · 0 评论 -
用 PS 调整服务器时间
Powershell 有一个命令用来调整计算机的时间, Set-Date -Adjust,但是,只能调整本地时间,不能调整远程的计算机时间。原创 2013-09-14 19:22:03 · 985 阅读 · 0 评论 -
第三章 用 PowerShell 进行远程管理(remoting)
PowerShell 远程管理翻译 2013-09-15 21:04:31 · 2469 阅读 · 0 评论