#rsh

Powershell 常见问题

WARNING:Thenamesofsomeimportedcommandsfromthemodule'todo'includeunapprovedverbsthatmightmakethemlessdiscoverable.Tofindthecommandswithunapprovedverbs,runtheImpo...
代码星球 ·2021-02-08

get the default proxy by Powershell

https://stackoverflow.com/questions/571429/powershell-web-requests-and-proxies$proxyAddr=(get-itemproperty'HKCU:SoftwareMicrosoftWindowsCurrentVersionInternetSe...
代码星球 ·2021-02-08

通过powershell操作eventlog

~Desktop>(Get-CommandWrite-EventLog).ParametersKeyValue--------WarningActionSystem.Management.Automation.ParameterMetadataRawDataSystem.Management.Automation...

powershell如何查看以及设置环境变量

https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_environment_variables?view=powershell-6Get-ChildItemenv:NameValue------...

powershell的stable和preview版本

在看https://github.com/PowerShell/PowerShell/releases的时候发现,已经发布了6.2.0的preview版本的情况下,还会继续发布6.1.3。 在ReadMe中,stable是6.1.3的版本。preview是6.2.0的版本。 ...

powershell脚本的格式化

1.安装visualstudiocode2.安装powershellextension3.打开脚本文件4.F1,然后输入format,找到formatdocument的选项但是这个用起来有点不太理想,傻乎乎的。  通过导入powershellmodule进行操作,module提供了函数Downloa...
代码星球 ·2021-02-08

PowerShell Gallery

https://docs.microsoft.com/en-us/powershell/gallery/getting-startedhttps://www.powershellgallery.com/packages?q=PowerShell-BeautifierNameInstallationPolicySourc...
代码星球 ·2021-02-08

通过cmd调用Powershell脚本

一共需要3个文件,把这3个文件放在一个路径下UTF8NoBOM.bat  这个文件是为了调用ps1pwsh-file"%cd%UTF8NoBOM.ps1"  UTF8NoBOM.ps1  这个文件是为了导入自定义的module,使用自定义module中定义的P...

Win7下Powershell 由2.0 升级为 5.1

今天在构建脚本的时候老是提示  Windows7默认的Powershell是2.0,查看版本下载https://www.microsoft.com/en-us/download/details.aspx?id=54616 解压,运行Win7AndW2K8R2-KB3191566-x64.m...
代码星球 ·2021-02-01

powershell -enc参数无法解码base64编码payload的解决方案

powershell的-enc参数允许传入一个base64编码过的powershell脚本字符串作为参数来执行该powershell脚本,该方法常被用于绕过杀毒软件的主动防御机制。今天下午在做一个后门程序时,通过在线base64编码网站编码的字符串竟然没法被powershell的-enc参数解析,解析时全是乱码,通过查...

通过powershell实现基础认证钓鱼获得密码

本文来自https://www.secpulse.com/archives/4131.html$cred=$host.ui.promptforcredential('FailedAuthentication','',[Environment]::UserDomainName+""+[Environment]::User...

powershell中使用Get-FileHash计算文件的hash值

今天在公司一台windows服务器上、需要对两个文件进行比对,笔者首先就想到了可以使用md5校验但是公司服务器上又不可以随意安装软件,于是笔者想到了可以试试windows自带的powershell中的Get-FileHash 使用方法如下:Get-FileHash-Algorithmmd5"C:QQ52013...

Powershell编程基础-004-for语句的使用

For循环在PowerShell中也称为For语句。同其他编程语言类似当指定条件的值为True时,此循环以代码块的形式执行语句,另,For后面接(;;)代表恒为真! 实例1:用于执行指定次数的语句块,如下,重要的话说三遍!for($x=1;$x-le3;$x++){Write-Host"Myblogurlis...

powershell中使用Send-MailMessage发送邮件

在powershell中我们可以使用Send-MailMessage发送邮件,一般都是有这个命令的笔者的总结是鉴于公司的环境的,大家在借鉴时,需要根据自己的实际情况进行修改 1、你笔者测试的格式如下(对于一封邮件来说,至少是需要有Subject的,也即是主题)、另smtp服务器是必须要指定的:Send-Mai...

powershell编程实例-001-生成指定大小的null/zero文件或随机文件

NULL文件,也有的称为zero文件,即全是二进制/十六进制的0文件在powershell中可以按如下方法生成指定大小的zero文件:只需要修改大小即可,格式如3MB,或者2GB$tempFile=".QQ5201351zero.bin"$fs=New-ObjectSystem.IO.FileStream($tempF...
首页上一页12345...下一页尾页