admin

帅气的我简直无法用语言描述!
PowerShell脚本 随机密码生成器(ps随机密码生成器)(随机密码生成Python代码)快来看

PowerShell脚本 随机密码生成器(ps随机密码生成器)(随机密码生成Python代码)快来看

 #本脚本会在 $存盘目录 下生成3个文件(小写加数字密码.txt,大小写加数字密码.txt,小写加数字加特殊符号密码.txt) #每个文件中含有 $生成密码总个数 个密码。 #这个脚本根据大文件作...
1年前
2960
powershell网络蜘蛛解决乱码问题(powershell网络测试)速看

powershell网络蜘蛛解决乱码问题(powershell网络测试)速看

 function Read-HtmlPage { param ([Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true)][...
1年前
2800
PowerShell管道入门必看篇(管道例子大全)(powershell 管道符)奔走相告

PowerShell管道入门必看篇(管道例子大全)(powershell 管道符)奔走相告

 PowerShell的一个重中之重的功能就是管道(pipeline),本文从浅入深,一步一步详解管道的使用方法和例子,来看看有没有你所不知道的吧,如果全知道,恭喜你已经很厉害啦——适用于所有Pow...
1年前
2630
PowerShell管理Win Server 2008 R2(powershell管理员模式)硬核推荐

PowerShell管理Win Server 2008 R2(powershell管理员模式)硬核推荐

 Windows PowerShell是一种专门为系统管理而设计的命令行界面和脚本语言。Windows PowerShell构建在Microsoft .NET Framework之上,可帮助IT专业...
1年前
2500
Powershell目录文件夹管理权限的继承和指定方法(windowspowershell在哪个目录下)这样也行?

Powershell目录文件夹管理权限的继承和指定方法(windowspowershell在哪个目录下)这样也行?

 # create folder $Path='c:\PermissionNoInheritance' $null=New-Item -Path $Path -ItemType Directory ...
1年前
2590
powershell玩转sqlite数据库详细介绍(powershell教程视频)干货分享

powershell玩转sqlite数据库详细介绍(powershell教程视频)干货分享

 脚本经常需要处理文本,有时候是行列整齐文本。那么powershell脚本处理行列文本有几种方法呢?一种是excel,另外的一些是?access?sqlite? sqlite是一个很小巧的,很方便嵌...
1年前
2770
powershell玩转SQL SERVER所有版本的方法(powershell sed)奔走相告

powershell玩转SQL SERVER所有版本的方法(powershell sed)奔走相告

 get-command * -module sqlps Decode-SqlName Encode-SqlName SQLSERVER: Add-SqlAvailabilityDatabase A...
1年前
3080
PowerShell添加本地账户脚本分享(powershell帮助文档下载)怎么可以错过

PowerShell添加本地账户脚本分享(powershell帮助文档下载)怎么可以错过

$nt=[adsi]"WinNT://localhost" $user=$nt.create("user","test") $user.setpassword("password") $user.se...
1年前
2560
Powershell比较两个文件夹的不同(powershell compress-archive分卷)万万没想到

Powershell比较两个文件夹的不同(powershell compress-archive分卷)万万没想到

$list1=Get-ChildItem c:\Windows\system32 | Sort-Object -Property Name $list2=Get-ChildItem \\server1...
1年前
2840
Powershell检查网站响应并计算执行时间例子(查询powershell执行策略状态的命令)深度揭秘

Powershell检查网站响应并计算执行时间例子(查询powershell执行策略状态的命令)深度揭秘

$url='http://www.powershell.com' # track execution time: $timeTaken=Measure-Command -Expression { ...
1年前
2920