2017年9月8日

摘要: 1 New-Item -ItemType File 1.txt -Force #新建文本文件 2 Compress-Archive -Path '1.txt' -DestinationPath '1.zip' -Force #压缩为zip 3 Expand-Archive -Path '1.zip' -DestinationPath '新建文件夹' -Force #解压到新文件夹内 阅读全文
posted @ 2017-09-08 19:51 PowerShell届的小白白 阅读(3015) 评论(0) 推荐(0) 编辑
 
摘要: 1 function DateDiff 2 { 3 param([Parameter(Mandatory=$true)][datetime]$starttime,[datetime]$endtime,[string]$formatdate='D') 4 [long]$firsttime+=[long]((date $starttime).ToOADate()) 5 [long]$las... 阅读全文
posted @ 2017-09-08 19:12 PowerShell届的小白白 阅读(269) 评论(0) 推荐(0) 编辑
 
摘要: 1 [char[]][int[]]$char=65..90 2 $char -join ',' 3 [int[]][char[]]$ascii=$char 4 $ascii -join ',' A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z 65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,... 阅读全文
posted @ 2017-09-08 19:07 PowerShell届的小白白 阅读(1533) 评论(0) 推荐(0) 编辑